:root {
    --bg-pure-white: #FFFFFF;
    --text-primary: #111111;
    color: #000000;
    --text-legal: #888888;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.7);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --radius-pill: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: #F3F4F6;
    /* Fondo gris neutro para PC */
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- CONTENEDOR INTEGRAL RESPONSIVE --- */
.app-container {
    position: relative;
    width: 100%;
    height: 100dvh;
    background-color: var(--bg-pure-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* --- MOTOR DE AURORA CSS NATIVO (Orbes Fluidos) --- */
.aurora-css-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, #FFFFFF 30%, #F5F7FA 100%);
    pointer-events: none;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(61px);
    opacity: 0.6;
    will-change: transform;
}

/* Tu paleta y medidas exactas actualizadas */
.orb-blue {
    width: 400px;
    height: 490px;
    background-color: #6588ff;
    top: -150px;
    left: -160px;
    animation: floatBlue 20s infinite alternate ease-in-out;
}

.orb-purple {
    width: 400px;
    height: 400px;
    background-color: #ffd97399;
    top: 150px;
    right: -194px;
    animation: floatPurple 25s infinite alternate ease-in-out;
}

.orb-amber {
    width: 300px;
    height: 300px;
    background-color: #FFB100;
    top: 150px;
    left: 20%;
    animation: floatAmber 18s infinite alternate ease-in-out;
}

/* Animaciones matemáticas orgánicas con Translate (Aceleradas por GPU) */
@keyframes floatBlue {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(80px, 60px) scale(1.2);
    }

    100% {
        transform: translate(-40px, 120px) scale(0.9);
    }
}

@keyframes floatPurple {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    50% {
        transform: translate(-100px, 80px) scale(0.85);
    }

    100% {
        transform: translate(50px, -40px) scale(1.15);
    }
}

@keyframes floatAmber {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    33% {
        transform: translate(-30px, -80px) scale(1.1);
    }

    100% {
        transform: translate(60px, 40px) scale(1);
    }
}

/* --- PANEL DE CONTENIDO GLASSMORPHISM --- */
.glass-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 90dvh;
    /* Evita que desborde el viewport en móvil */
    background: rgb(255 255 255 / 21%);
    backdrop-filter: blur(30px) saturate(220%);
    -webkit-backdrop-filter: blur(40px) saturate(220%);
    border-top: 1px solid var(--glass-border);
    border-radius: 40px 40px 0 0;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    /* Importante para ocultar elementos desbordados durante transiciones */
}

/* --- MECÁNICA DE TRANSICIÓN ESTILO APP (SPA) --- */
.spa-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 32px;
    /* Gap estándar optimizado */
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.5s;
}

/* El gap de 92px original para el onboarding */
#step-1 {
    gap: 92px;
}

/* Estado activo disparado por JS */
.spa-step.step-active {
    height: auto;
    max-height: calc(90dvh - 80px);
    /* Permite que el contenido haga scroll dentro del panel */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 16px));
    /* Espacio al final del scroll adaptado a la barra de inicio de iOS (iPhone 16/17) */
}

/* Personalización del scrollbar tipo Material 3 */
.spa-step::-webkit-scrollbar {
    width: 6px;
}

.spa-step::-webkit-scrollbar-track {
    background: transparent;
}

.spa-step::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.spa-step::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 66px;
}

.logo-img {
    width: 80px;
}

.onboarding-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.app-title {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.app-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 20px;
}

.cta-actions {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-primary {
    width: 100%;
    background-color: var(--text-primary);
    color: var(--bg-pure-white);
    border: none;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), background-color 0.2s ease;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: #222222;
}

.btn-primary:active {
    transform: scale(0.97);
}

/* Botón de regreso minimalista translúcido */
.btn-secondary {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    border: none;
    padding: 15px 32px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.legal-text {
    font-size: 11px;
    color: var(--text-legal);
    line-height: 1.4;
}

/* --- TARJETA DE INFORMACIÓN (M3 ELEVATED CARD / GLASS EFFECT) --- */
.info-card {
    background: #FFFFFF;
    /* Fondo blanco sólido sin degradado */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    /* Radio de esquina extra grande M3 */
    padding: 28px 20px;
    width: 100%;
    max-width: 440px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    /* Sombra suave */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- ADAPTACIÓN A PANEL SÓLIDO BLANCO (ESTILO APP NATIVA) --- */
.glass-panel.panel-white {
    background: #ffffffcc !important;
    /* backdrop-filter: none !important; */

    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.05) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    border-top: none !important;
    backdrop-filter: blur(70px) saturate(220%);
}

/* En la pantalla blanca, la tarjeta interna se vuelve invisible y se adapta al contenedor */
.panel-white .info-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 100% !important;
}

/* Adapta la altura de scroll al 100dvh en móvil */
.panel-white .spa-step.step-active {
    max-height: calc(100dvh - 80px) !important;
}

/* Adaptación de separador y carrusel al padding del contenedor en móvil (24px) */
.panel-white .card-separator {
    width: calc(100% + 48px) !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    margin-top: 24px;
    margin-bottom: 24px;
}

.panel-white .carousel-track {
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}


.card-title {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.card-description {
    color: var(--text-muted);
    font-size: 16x;
    font-weight: 500;
    line-height: 1.5;
}

.card-list-subtitle {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    width: 100%;
}

.card-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.card-list-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.card-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    flex-shrink: 0;
}

.card-list-text {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
}

/* Separador de tarjeta */
.card-separator {
    width: calc(100% + 40px);
    /* Se extiende hasta los bordes laterales del padding */
    margin-left: -20px;
    margin-right: -20px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    margin-bottom: 12px;
}

/* --- SECCIÓN Y CONTENEDOR DEL CAROUSEL --- */
.section-title {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    text-align: left;
    margin-top: 8px;
    margin-bottom: 4px;
}

.carousel-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Sangría negativa para permitir scroll de borde a borde dentro de la tarjeta blanca */
    margin-left: -20px;
    margin-right: -20px;
    padding: 8px 20px 16px 20px;
    scrollbar-width: none;
    /* Oculta scrollbar en Firefox */
    -webkit-overflow-scrolling: touch;
}

/* Oculta scrollbar en Chrome, Safari y Opera */
.carousel-track::-webkit-scrollbar {
    display: none;
}

.coach-card {
    position: relative;
    width: 260px;
    height: 340px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    scroll-snap-align: center;
    flex-shrink: 0;

}

.coach-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.coach-info-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
}

.coach-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.coach-name {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.coach-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.coach-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    width: 100%;
}

.coach-availability {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 8px #4CAF50;
    animation: pulseAvailability 2s infinite;
}

@keyframes pulseAvailability {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.status-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-coach-action {
    background-color: #FFFFFF;
    color: #111111;
    border: none;
    padding: 10px 18px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-coach-action:hover {
    background-color: #F3F4F6;
}

.btn-coach-action:active {
    transform: scale(0.95);
}

/* Indicadores de Carrusel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: -4px;
}

.carousel-indicators .dot {
    width: 6px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.carousel-indicators .dot.active {
    width: 16px;
    background-color: var(--text-primary);
    border-radius: 3px;
}

/* --- SECCIÓN DE TESTIMONIOS (M3 STYLE SPEECH BUBBLES) --- */
.testimonials-carousel-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonials-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin-left: -20px;
    margin-right: -20px;
    padding: 12px 20px 16px 20px;
    scrollbar-width: none;
    /* Oculta scrollbar en Firefox */
    -webkit-overflow-scrolling: touch;
}

.testimonials-carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 270px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card {
    position: relative;
    background-color: #F8F9FA;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Rabillo del bocadillo (Speech bubble tail) */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 24px;
    width: 14px;
    height: 14px;
    background-color: #F8F9FA;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
    z-index: 1;
}

.testimonial-quote {
    color: var(--text-primary);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #0B57D0;
    /* Estrellas azules premium M3 */
}

.star-icon {
    flex-shrink: 0;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 8px;
}

/* Avatares monográficos de Material 3 */
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.avatar-blue {
    background-color: #0B57D0;
}

.avatar-teal {
    background-color: #008778;
}

.avatar-purple {
    background-color: #6750A4;
}

.avatar-orange {
    background-color: #E28700;
}

.avatar-green {
    background-color: #388E3C;
}

.avatar-pink {
    background-color: #C2185B;
}

.user-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.user-name {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.user-date {
    color: var(--text-legal);
    font-size: 11px;
    font-weight: 500;
    margin-top: 2px;
}

/* Indicadores de Testimonios */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: -4px;
}

.testimonials-indicators .dot {
    width: 6px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.testimonials-indicators .dot.active {
    width: 16px;
    background-color: var(--text-primary);
    border-radius: 3px;
}

/* --- SECCIÓN DE AVISO Y DISCLAIMER (MATERIAL 3 SUPPORT DESIGN) --- */
.disclaimer-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
    text-align: left;
    width: 100%;
}

.disclaimer-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.disclaimer-title {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.1px;
    margin: 0;
}

.disclaimer-text {
    color: #000000;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

/* Material 3 Warning Tonal Container */
.disclaimer-alert-box {
    background-color: rgba(186, 26, 26, 0.05);
    /* border: 1px solid rgba(186, 26, 26, 0.12); */
    border-radius: 6;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 4px 0;
}

.alert-icon {
    color: #BA1A1A;
    /* Color de error de Material 3 */
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-text {
    color: #410002;
    /* Color de texto sobre contenedor de error M3 */
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* --- SECCIÓN CTA FINAL --- */
.cta-final-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 12px;
}

.cta-gradient-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.6px;
    text-align: center;
    /* Degradado enriquecido con los colores de la aurora (azul, violeta y destello ámbar) */
    background: linear-gradient(90deg, #4285F4, #4d84ff, #000000, #4285F4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding: 0 8px;
    animation: textGradientMove 15s linear infinite;
}

@keyframes textGradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- SECCIÓN DE ACORDEÓN PREGUNTAS FRECUENTES (M3 ACCORDION) --- */
.faq-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.faq-item {
    background-color: #F8F9FA;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    /* Radio de esquina medio M3 */
    overflow: hidden;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    width: 100%;
    BOX-SHADOW: 0 0 20PX -6PX #18181821;
}

.faq-item.active {
    background-color: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-header {
    background: none;
    border: none;
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    gap: 12px;
}

.faq-question {
    color: var(--text-primary);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-chevron {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.faq-item.active .faq-body {
    max-height: 300px;
    /* Altura máxima suficiente para que se despliegue sin problemas */
    opacity: 1;
}

.faq-content {
    overflow: hidden;
    min-height: 0;
    color: #555555;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    padding: 0 16px 16px 16px;
}

/* --- INTERFAZ ADAPTATIVA PARA LAPTOPS / DESKTOP (VISTA WEB COMPLETA) --- */
@media (min-width: 769px) {
    body {
        overflow-y: auto !important;
        /* Permite scroll vertical en el navegador */
    }

    .app-container {
        height: auto !important;
        min-height: 100vh;
        overflow-y: visible !important;
        padding: 40px 0;
        justify-content: center;
        align-items: center;
    }

    /* Animación de apertura: de 500px (onboarding) a 1100px (web) */
    .glass-panel {
        width: 90%;
        max-width: 500px;
        border: 1px solid var(--glass-border);
        border-radius: 32px;
        padding: 56px 48px;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
        transition: max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease, padding 0.5s ease;
    }

    /* Panel blanco se expande a formato Web Dashboard */
    .glass-panel.panel-white {
        max-width: 1100px !important;
        height: auto !important;
        max-height: none !important;
        border-radius: 32px !important;
        padding: 60px 80px !important;
    }

    .app-title {
        font-size: 34px;
    }

    .cta-actions {
        max-width: 100%;
        margin-top: 32px;
    }

    /* Desactivar scroll interno de SPA en PC, usar scroll general de la web */
    .spa-step.step-active,
    .panel-white .spa-step.step-active {
        max-height: none !important;
        overflow-y: visible !important;
        height: auto !important;
    }

    /* Ajustar el separador de tarjetas al nuevo padding de 80px de PC */
    .panel-white .card-separator {
        width: calc(100% + 160px) !important;
        margin-left: -80px !important;
        margin-right: -80px !important;
        margin-top: 36px;
        margin-bottom: 36px;
    }

    /* FUSIÓN DE COMPONENTES A GRID WEB (EVITA CAROUSELS EN PC) */

    /* 1. Lista de sensaciones "También se mueve" a 3 columnas */
    .panel-white .card-list {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
        width: 100% !important;
    }

    /* 2. Carrusel de Coaches se convierte en una cuadrícula de 3 columnas */
    .panel-white .carousel-track {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
        overflow-x: visible !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 8px 0 !important;
        width: 100% !important;
        scroll-snap-type: none !important;
    }

    .panel-white .carousel-track .coach-card {
        width: 100% !important;
        scroll-snap-align: none !important;
    }

    .panel-white .carousel-indicators {
        display: none !important;
        /* Oculta indicadores en PC */
    }

    /* 3. Carrusel de Testimonios se convierte en una cuadrícula de 3 columnas (3x2) */
    .panel-white .testimonials-carousel-track {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
        overflow-x: visible !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 0 16px 0 !important;
        width: 100% !important;
        scroll-snap-type: none !important;
    }

    .panel-white .testimonials-carousel-track .testimonial-item {
        width: 100% !important;
        scroll-snap-align: none !important;
    }

    .panel-white .testimonials-indicators {
        display: none !important;
        /* Oculta indicadores en PC */
    }

    /* 4. Acordeón de FAQs se organiza en 2 columnas paralelas */
    .panel-white .faq-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        margin-top: 20px !important;
    }
}