:root {
    --primary-color: #5C6293;
    --primary-light: #7a81b5;
    --secondary-color: #82CDD9;
    --secondary-light: #a4e1eb;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fc;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 105%; /* Escala la tipografía base un 5% más grande que el original */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    letter-spacing: -0.015em;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 4rem;
    line-height: 1.15;
}

.highlight {
    color: var(--secondary-color);
    font-style: italic;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(130, 205, 217, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px; /* Redondo para lujo sutil */
    font-weight: 600;
    font-family: 'Montserrat', sans-serif; /* Asegura que los <button> usen Montserrat */
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(92, 98, 147, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(130, 205, 217, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Layout */
.section {
    padding: 8rem 0; /* Más respiro visual */
}

.bg-light {
    background-color: var(--bg-light);
}

/* Header */
.header {
    background: rgba(92, 98, 147, 0.85); /* var(--primary-color) semi-transparente */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.progress-container {
    width: 100%;
    height: 4px;
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
}

.progress-bar {
    height: 100%;
    background: var(--secondary-color);
    width: 0%;
    transition: width 0.1s ease-out;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5% 0;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,249,252,1) 100%);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(92, 98, 147, 0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 85%;
    margin: 0 auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(92, 98, 147, 0.12);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('../media/clinic-interior.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(40, 44, 71, 0.75); /* Dark blue overlay */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.editorial-title {
    font-size: 3.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .editorial-title {
        font-size: 2.2rem;
    }
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.features-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* Program Section */
.section-header {
    margin-bottom: 4rem;
}

/* Bento Grid Layout para Metodología */
.methodology-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: rgba(130, 205, 217, 0.15);
    color: var(--secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bento-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.bento-tags {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.bento-tags span {
    background: rgba(92, 98, 147, 0.08);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 1: Medicina - Spans 2 columns */
.bento-card:nth-child(1) {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(130,205,217,0.05) 0%, rgba(255,255,255,1) 100%);
}

/* 2: Nutrición - Spans 1 column */
.bento-card:nth-child(2) {
    grid-column: span 1;
}

/* 3: Psicología - Spans 1 column */
.bento-card:nth-child(3) {
    grid-column: span 1;
}

/* 4: Complementarias - Spans 2 columns */
.bento-card:nth-child(4) {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(92,98,147,0.03) 100%);
}

@media (max-width: 992px) {
    .methodology-bento {
        grid-template-columns: 1fr;
    }
    .bento-card:nth-child(1),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4) {
        grid-column: span 1;
    }
}

.protocols-tab-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 2.5rem;
}

.protocols-tab-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-right: 1px solid #eee;
    padding-right: 2rem;
}

.tab-btn {
    text-align: left;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn span {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0.6;
}

.tab-btn:hover {
    background: rgba(130, 205, 217, 0.1);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(92, 98, 147, 0.3);
}

.tab-btn.active span {
    color: var(--white);
    opacity: 1;
}

.protocols-tab-panels {
    padding-left: 1rem;
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.panel-header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    background: rgba(130, 205, 217, 0.15);
    padding: 1rem;
    border-radius: 50%;
}

.panel-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.protocol-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.protocol-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.protocol-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.protocol-features i {
    color: var(--secondary-color);
    margin-top: 4px;
    font-size: 0.95rem;
}

.protocolos-footer {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(92, 98, 147, 0.1);
}

.faq-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-header h3 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.faq-header i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content {
    padding: 0 2rem 2rem 2rem;
}

.faq-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.contact-form {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    width: 100%;
    padding: 1.25rem 1.5rem 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: transparent;
    transition: var(--transition);
}

.form-floating label {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    pointer-events: none;
    transform-origin: 0 0;
}

.form-floating textarea.form-control {
    padding-top: 1.5rem;
}

.form-floating textarea + label {
    top: 1.5rem;
    transform: none;
}

/* Floating Label Animation */
.form-floating .form-control:focus,
.form-floating .form-control:not(:placeholder-shown) {
    border-color: var(--secondary-color);
    outline: none;
    background-color: var(--white);
}

.form-floating .form-control:focus {
    box-shadow: 0 0 0 4px rgba(130, 205, 217, 0.1);
}

.form-floating .form-control:focus + label,
.form-floating .form-control:not(:placeholder-shown) + label {
    transform: translateY(-1.25rem) scale(0.85);
    color: var(--secondary-color);
}

.form-floating textarea.form-control:focus + label,
.form-floating textarea.form-control:not(:placeholder-shown) + label {
    transform: translateY(-1rem) scale(0.85);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Floating WhatsApp */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-tooltip {
    background: var(--white);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float {
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.4);
    color: #FFF;
    animation: none;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: left;
        padding-top: 120px;
    }
    
    .hero-content p {
        margin: 0 0 2rem 0;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
        padding: 100px 0 0; /* Remover padding lateral para que la imagen ocupe el ancho completo */
        gap: 2rem;
    }
    
    .hero-image {
        order: -1; /* Mover la imagen arriba */
        width: 100%;
    }
    
    .hero-image img {
        border-radius: 0; /* Quitar bordes para efecto full-width */
        box-shadow: none;
    }
    
    .hero-content {
        order: 1;
        padding: 0 5%; /* Añadir el padding lateral solo al contenido */
    }

    .protocols-tab-layout {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .protocols-tab-menu {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        white-space: normal;
        gap: 0.5rem;
    }
    
    .tab-btn {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
        justify-content: center;
        flex-direction: column;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .tab-btn span {
        margin-bottom: 5px;
    }
    
    .protocols-tab-panels {
        padding-left: 0;
        min-height: auto;
    }

    .protocolos-footer {
        margin-top: 2rem;
    }

    html {
        font-size: 95%; /* Reduce ligeramente el texto base en móviles para evitar desbordes */
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--white); /* ¡Aquí está la magia de las 3 rayitas blancas! */
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        padding-bottom: 2.5rem;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--white);
        text-decoration: none;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* --- Efectos Profesionales (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Retrasos para efecto cascada en las tarjetas */
.cards-grid .card:nth-child(1).reveal.active { transition-delay: 0.2s; }
.cards-grid .card:nth-child(2).reveal.active { transition-delay: 0.4s; }
.cards-grid .card:nth-child(3).reveal.active { transition-delay: 0.6s; }

/* Methodology Section */
/* (El CSS de methodology-grid viejo ha sido eliminado) */

/* Optimizaciones Críticas para Móviles (iOS y general) */
@media (max-width: 768px) {
    .section {
        padding: 4.5rem 0; /* Padding mucho más razonable en pantallas pequeñas */
    }
    
    .parallax-section {
        background-attachment: scroll; /* iOS Safari falla con parallax 'fixed' */
        min-height: 350px;
        height: 45vh;
    }
    
    .parallax-content p {
        font-size: 1rem !important;
    }
    
    .bento-card {
        padding: 2rem 1.5rem; /* Menos espacio en las tarjetas bento para móvil */
    }
    
    .contact-form {
        padding: 1.5rem; /* Formulario más compacto en móvil */
    }
}


/* --- Team Section (Carousel) --- */
.carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    /* Padding para no cortar las sombras de las tarjetas */
    padding: 20px;
    margin: -20px;
}

.carousel-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: absolute;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.team-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.team-member {
    background: var(--white);
    border-radius: 4px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    text-align: center;
    transition: var(--transition);
    /* Ancho matemáticamente bloqueado al tamaño original */
    flex: 0 0 320px;
    max-width: 320px;
    min-width: 0;
    /* Altura estandarizada estricta */
    height: 580px;
}

.team-member.active {
    display: block;
    animation: fadeInCard 0.4s ease forwards;
}

.member-info {
    display: block;
}

.member-credentials {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
    padding: 0;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .team-member {
        flex: 0 0 calc((100% - 2rem) / 2); /* 2 tarjetas */
        max-width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .team-member {
        flex: 0 0 100%; /* 1 tarjeta */
        max-width: 100%;
        height: auto; /* Permite crecer si el texto ocupa más líneas */
        min-height: 580px;
    }
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Centra ligeramente hacia arriba para priorizar rostros */
}

.member-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 4rem;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.member-role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-credentials {
    list-style: none;
    text-align: left;
}

.member-credentials li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.member-credentials i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 0.8rem;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1); /* Slower, more elegant ease-out */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
