body {
    background-color: #e9ecef;
    color: #fff;
    font-family: Arial, sans-serif;
}
.profile-card {
    max-width: 450px;
    margin: 0px auto;
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.profile-header {
    background: #000;
    text-align: center;
    padding: 80px 20px 20px 20px;
    width: 100%;
}
.profile-header .profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 15px auto;
    border: 3px solid #fff;
}
.profile-header h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.profile-header p {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 10px;
}
.separator {
    width: 100%;
    border-top: 1px solid #303030;
    margin: 10px 0;
}

.separator2 {
    width: 80%;
    border-top: 1px solid #97979773;
    margin: 10px auto;
    
}
.separator-vertical {
    width: 1px;
    background-color: #303030; /* Color del separador */
    height: 60px; /* Altura del separador */
    align-self: center; /* Centrar verticalmente */
}


.contact-buttons {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding-top: 10px;
}
.btn-custom {
    background: none;
    color: #fff;
    border: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}
.btn-custom:hover {
    color: #ddd;
}
.btn-custom:focus {
    outline: none;
    box-shadow: none;
}
.profile-body {
    background: #f8f9fa;
    color: #585858;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    float: left;
    width: 100%;
    padding: 20px 45px 40px;
    box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
}
.profile-body .info {
    margin-bottom: 15px;
}
.profile-body .info p {
    margin: 30px 0;
    
}
.profile-body .info a {
    text-decoration: none;
    color: #585858;
    
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    color: #000;
    font-size: 1.5rem;
    transition: all 0.3s;
}
.social-icons a:hover {
    color: #555;
}
.margin {
    margin-left: 25px;
    font-size: small;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
}

.cta-container p {
font-weight: bold;
color: #585858;
margin-bottom: 15px;
}

.btn-rounded {
    display: inline-block;
    background-color: #000; /* Fondo oscuro */
    color: #fff; /* Texto blanco */
    padding: 10px 20px;
    border-radius: 50px; /* Bordes redondeados */
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-rounded:hover {
    background-color: #333; 
    transform: scale(1.05); 
}

.btn-rounded-send {
    display: inline-block;
    background-color: #70c250; /* Fondo oscuro */
    color: #fff; /* Texto blanco */
    margin-top: 15px;
    padding: 5px 25px;
    border-radius: 10px; /* Bordes redondeados */
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-rounded-send:hover {
    background-color: #71ad63; 
    transform: scale(1.05); 
}

.action-buttons {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
    margin-top: 20px;
}

.action-buttons .btn {
    display: block;
    width: 100%; 
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download {
    background-color: #e5ff00; 
    color: #4c4c4c;
}

.btn-download:hover {
    background-color: #dee81f; 
    box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
}

.btn-share {
    background-color: #2855a7; 
    color: #fff;
}

.btn-share:hover {
    background-color: #281e7e; /* Verde más oscuro en hover */
    color: #FFF;
    box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
}

/*Modal*/
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    color: #0e0e0e;
}

.options a {
    text-decoration: none;
    color: #2f2f2f;
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 16px;
    padding: 10px;
}

.options a .bi {
    margin-right: 18px;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}
/*Media Queries*/
@media (max-width: 767px) {
        .action-buttons {
            display: none;
        }

}

@media (max-width: 767px) {
    .floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .floating-buttons .btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .btn-download {
        background-color: #e5ff00; 
        color: #4c4c4c;
    }

    .btn-share {
        background-color: #2855a7; 
        color: #fff;
    }
}
@media (min-width: 767px) {
.floating-buttons{
    display: none;
}
.profile-card {
    max-width: 600px;      
    
}
 
}   
