* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    position: relative;
    overflow-x: hidden;
}
@font-face {
    font-family: 'Acumin';
    src: url('../fonts/AcuminPro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.fontAcumin{
    font-family: 'Acumin', sans-serif;
}
.container {
    max-width: 570px;
    width: 100%;
    animation: fadeIn 0.8s ease-in;
    position: relative;
    z-index: 10;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section {
    text-align: center;
    margin-bottom: 70px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image {
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: contain;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.profile-name {
    color: #000000;
    font-size: 28px;
    margin-bottom: 10px;
}

.profile-bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.efectHover{
    border-radius: 100px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.efectHover:hover{
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(190, 0, 0, 0.603);
}
.consultant-link {
    background: #db0000;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: clamp(22px, 4vw, 35px);
    padding: 14px 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    display: flex;
    align-items: center;
    gap: 20px;
}

.consultant-link:nth-child(1) { animation-delay: 0.1s; }
.consultant-link:nth-child(2) { animation-delay: 0.2s; }
.consultant-link:nth-child(3) { animation-delay: 0.3s; }
.consultant-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultant-image-wrapper{
    width: 103px;
    height: 103px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.consultant-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.consultant-link:hover::before {
    left: 100%;
}

.consultant-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-3px) scale(1.02);
    -moz-transform: translateY(-3px) scale(1.02);
    -ms-transform: translateY(-3px) scale(1.02);
    -o-transform: translateY(-3px) scale(1.02);
}

.consultant-link:active {
    transform: translateY(-1px) scale(0.98);
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #000;
    font-size: 24px;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .consultant-link{
        padding: 12px 20px;
        justify-content: start;
    }
}
