.plan-badge-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -28px;
    margin-bottom: -10px;
    z-index: 5;
}

.plan-badge-wrapper .plan-tag {
    position: static;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(30, 231, 255, 0.13);
    border: 1.5px solid #fff;
}

@media (max-width: 768px) {
    .plan-badge-wrapper {
        top: -20px;
        margin-bottom: -6px;
    }

    .plan-badge-wrapper .plan-tag {
        font-size: 0.92rem;
        padding: 8px 18px;
    }
}

/* ===========================================================
   GLOBAL RESET & VARIABLES
=========================================================== */
:root {
    --primary-color: #1ee7ff;
    /* Cyan del sitio */
    --primary-hover: #1acce0;
    --text-color: #ffffff;
    --bg-color: #000000;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: 20px;
    --font-main: 'Montserrat', sans-serif;
    --card-light-bg: #ffffff;
    --card-light-text: #000000;
    --card-accent-bg: #1ee7ff;
    --card-accent-text: #000000;
}

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

body {
    background: var(--bg-color);
    font-family: var(--font-main);
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
    /* Enable vertical scroll */
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

/* ===========================================================
   NAVBAR
=========================================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.logo-img {
    height: 90px;
    width: auto;
    margin-top: 0 !important;
    /* Override style.css */
}

.navbar-logo img {
    margin-top: 0 !important;
    /* Double ensure override */
}

.landing-nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

.nav-btn {
    padding: 12px 35px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    /* Texto ajustado */
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: scale(1.05);
    background: var(--primary-color);
    color: #000;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo-img {
        height: 60px;
    }

    .nav-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* ===========================================================
   HERO WRAPPER (FULL SCREEN)
=========================================================== */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Force full viewport height */
    overflow: hidden;
}

/* ===========================================================
   HERO SLIDER (BACKGROUND)
=========================================================== */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    /* Por encima de todos los slides */
    background:
        radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    transform: translateX(100%);
    /* Espera a la derecha */
    transition: transform 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    transform: translateX(0);
    /* En el centro */
    z-index: 2;
}

.slide.exit {
    transform: translateX(-100%);
    /* Sale a la izquierda */
    z-index: 1;
}

/* Clase utilitaria para mover slides a la derecha sin animación */
.slide.reset {
    transition: none !important;
    transform: translateX(100%);
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================================
   MAIN CONTENT GRID
=========================================================== */
.main-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    /* Fill the wrapper */
    display: grid;
    grid-template-rows: 1fr auto;
    /* Hero Text arriba, Cards abajo */
    padding: 100px 50px 40px 50px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Hero Text Section */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
}

.hero-tag {
    background: var(--primary-color);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 15px 40px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: var(--primary-color);
    color: #000;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* Bottom Cards Section */
.bottom-cards {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    /* Centro un poco más ancho */
    gap: 20px;
    align-items: end;
}

.card {
    padding: 30px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
}

/* Card 1: Light (Plan Mensual) */
.card-light {
    background: var(--card-light-bg);
    color: var(--card-light-text);
}

.card-light .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-avatars {
    display: flex;
}

.card-avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.card-avatars img:first-child {
    margin-left: 0;
}

.card-light h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 10px;
}

.card-light p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
    line-height: 1.4;
}

/* Card 2: Glass (Plan Anual) */
.card-glass {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    min-height: 240px;
    /* Un poco más alta */
}

.card-glass .arrow-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.2rem;
    opacity: 0.7;
}

.card-glass h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.card-glass .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Card 3: Accent (Promo/Action) */
.card-accent {
    background: var(--card-accent-bg);
    color: var(--card-accent-text);
}

.card-accent .top-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #000;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.card-accent h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: auto;
    /* Push to bottom */
    line-height: 1;
}

.card-accent p {
    font-size: 0.95rem;
    margin-top: 10px;
    font-weight: 500;
}


/* ===========================================================
   LOGIN MODAL
=========================================================== */
#loginModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#loginModal.active {
    opacity: 1;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.modal-welcome {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    margin-top: 5px;
}

#loginModal.active .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    z-index: 2;
    font-size: 1.1rem;
}

.toggle-password:hover {
    color: #fff;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-main);
    outline: none;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

.login-submit-btn {
    width: auto;
    min-width: 200px;
    /* Para que no quede muy pequeño */
    padding: 15px 40px;
    background: var(--primary-color);
    color: #000;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s;
}

.login-submit-btn:hover {
    transform: scale(1.05);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.5rem;
}

/* ===========================================================
   RESPONSIVE
=========================================================== */
@media (max-width: 1024px) {
    .main-container {
        padding: 80px 30px 30px;
        grid-template-rows: 1fr auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .bottom-cards {
        grid-template-columns: 1fr 1fr;
    }

    .card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    /* Hero Wrapper: Allow content to flow on mobile */
    .hero-wrapper {
        height: auto;
        min-height: 100dvh;
        overflow: visible;
    }

    .main-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 80px 10px 20px;
        /* Reduced from 20px */
        gap: 20px;
        height: auto;
        min-height: 100dvh;
    }

    /* Hero Content: Ocupa el espacio disponible arriba */
    .hero-content {
        flex: 1;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding-top: 40px;
        /* Add some space for navbar */
    }

    .hero-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 3.8rem;
        line-height: 1;
        margin-bottom: 15px;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 20px;
        display: block;
        /* Show full text */
        max-width: 90%;
    }

    .hero-cta-group {
        gap: 15px;
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 1rem;
        width: 80%;
        /* Wider buttons */
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Bottom Cards: Stacked for better visibility */
    .bottom-cards {
        display: flex;
        flex-direction: column;
        gap: 15px;
        flex-shrink: 0;
        width: 100%;
    }

    .card {
        padding: 20px;
        min-height: auto;
        border-radius: 20px;
    }

    /* Ajustes específicos para contenido de tarjetas en móvil */
    .card-light h3 {
        font-size: 1.3rem;
        margin-top: 5px;
    }

    .card-light p {
        display: block;
        /* Show text */
        font-size: 0.9rem;
    }

    .card-header {
        margin-bottom: 10px;
    }

    .card-avatars img {
        width: 30px;
        height: 30px;
    }

    .card-glass h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .card-glass .arrow-icon {
        top: 20px;
        right: 20px;
        font-size: 1.1rem;
    }

    .card-glass .card-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 10px;
        font-size: 0.8rem;
    }

    /* Tarjeta 3: Banner horizontal */
    .card:last-child {
        grid-column: auto;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .card:last-child .top-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        margin-right: 0;
    }

    .card:last-child h3 {
        margin-top: 10px;
        font-size: 1.5rem;
    }

    .card:last-child p {
        display: block;
        /* Show text */
        margin-top: 5px;
    }
}

/* === TITULOS Y SUBTITULOS UNIFICADOS === */
.section-title,
.plan-header .section-title,
.wl-header .section-title,
.testimonials-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1ee7ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.section-sub,
.plan-header .section-sub,
.wl-header .section-sub,
.testimonials-header .section-sub {
    font-size: 1.1rem;
    color: #bbb;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width: 768px) {

    .section-title,
    .plan-header .section-title,
    .wl-header .section-title,
    .testimonials-header .section-title {
        font-size: 1.7rem;
    }

    .section-sub,
    .plan-header .section-sub,
    .wl-header .section-sub,
    .testimonials-header .section-sub {
        font-size: 1rem;
    }
}

/* ===========================================================
   SOCIAL CORNER (CENTERED)
=========================================================== */
.social-corner {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    z-index: 100;
}

.social-corner a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-corner a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.social-corner a {
    font-size: 1.5rem;
}


/* ===========================================================
   TRIAL CLASSES SECTION
=========================================================== */
.trial-classes-container {
    width: 100%;
    margin-top: 0;
    padding: 80px 0;
    background-color: #000;
    position: relative;
    z-index: 20;
}

.trial-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

.trial-inner .section-title,
.trial-inner .section-sub {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ========== ICONOS DE MAESTROS (BENEFITS) ========== */
.iconos-maestros {
    margin: 5rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
}

.icono-item {
    flex: 1 1 180px;
    max-width: 218px;
    min-width: 155px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 1.35rem 0.95rem 1.05rem 0.95rem;
    box-shadow: 0 1px 8px #6ad2df18;
    transition: background 0.2s, box-shadow 0.22s;
}

.icono-item i {
    font-size: 2rem;
    color: #6ad2df;
    margin-bottom: 0.45rem;
}

.icono-item h4 {
    font-size: 1.09rem;
    margin-bottom: 0.38rem;
    color: #fff;
    font-weight: 700;
}

.icono-item p {
    font-size: 0.96rem;
    color: #c8c8c8;
}

.icono-item:hover {
    background: rgba(106, 210, 223, 0.12);
    box-shadow: 0 2px 12px #6ad2df2a;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .trial-inner {
        padding: 0 15px;
        /* Forced reduction for mobile */
    }
}

/* VIDEO CARD STYLES (Copied & Adapted) */
.video-card {
    background: linear-gradient(180deg, #121416, #0f1113);
    border: 1px solid rgba(140, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 231, 255, .6);
    border-width: 2px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .45);
}

.video-card .thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.video-card .thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card h4 {
    margin: 1em 1em .2em;
    color: #6ad2df;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
}

.video-card p {
    margin: 0 1em .8em;
    color: #b7c6c8;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}

.video-card .actions {
    display: flex;
    gap: 8px;
    margin: .6em 1em 1em;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-card {
    appearance: none;
    cursor: pointer;
    font-weight: 800;
    font-size: .95rem;
    border-radius: 50px;
    padding: .64rem 1rem;
    transition: transform .12s ease, box-shadow .12s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    letter-spacing: .2px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
    border: none;
}

.btn-card-primary {
    background: #66d8e0;
    color: #052025;
}

.btn-card-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
    filter: brightness(1.03);
}

.btn-card-fav {
    background: transparent;
    color: #44d0d6;
    border: 1px solid #44d0d6;
}

.btn-card-fav:hover {
    border-color: #1ee7ff;
    color: #1ee7ff;
    background: #222;
    transform: translateY(-1px);
}

/* PLAYER STYLES */
.player-wrap {
    background: #121416;
    border: 1px solid rgba(140, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    padding: 16px;
    margin: 0 0 30px 0;
    width: 100%;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.player-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.player-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.player-actions {
    margin-left: auto;
}

.btn-min {
    background: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 6px 16px;
    font-size: .9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-min:hover {
    background: #333;
    color: var(--primary-color);
}

.player-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

/* ===========================================================
   PLANS & NUTRITION SECTION
=========================================================== */
.plans-nutrition-section {
    padding: 60px 0;
    width: 100%;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-header {
    text-align: center;
    margin-bottom: 45px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-header .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 0 30px;
    align-items: center;
    overflow: visible;
}

/* Pricing Card */
.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 70px 40px 40px 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: visible;
}

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

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.plan-tag {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #1ee7ff 60%, #66d8e0 100%);
    color: #000;
    padding: 12px 32px;
    border-radius: 22px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 8px rgba(30, 231, 255, 0.13);
    border: 1.5px solid #fff;
    z-index: 3;
    white-space: nowrap;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
    color: #fff;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    opacity: 0.6;
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    width: 100%;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #ddd;
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.plan-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Nutrition Preview */
.nutrition-preview {
    padding-left: 20px;
}

.nutrition-preview h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nutrition-preview p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recipe-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: scale(1.05);
}

.recipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover img {
    transform: scale(1.1);
}

.recipe-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
}

.recipe-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.recipe-info span {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--primary-color);
}

.recipe-lock {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #1ee7ff;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.recipe-card:hover .recipe-lock {
    background: rgba(30, 231, 255, 0.2);
    transform: scale(1.1);
}

/* Responsive Plans */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .nutrition-preview {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nutrition-preview p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .recipes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .recipe-card {
        aspect-ratio: 16/9;
    }

    .plan-card {
        padding: 70px 15px 30px 15px;
    }

    .amount {
        font-size: 3.5rem;
    }

    .plan-tag,
    .plan-card .plan-tag {
        top: -70px;
        font-size: 0.92rem;
        padding: 8px 18px;
    }
}

/* ===========================================================
   WEIGHT LOSS NUTRITION PLAN SECTION
=========================================================== */
.weight-loss-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(to bottom, #0a0a0a, #000000);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wl-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.wl-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wl-header .section-title {
    font-size: 2.8rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1ee7ff, #66d8e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wl-header .section-sub {
    font-size: 1.1rem;
    color: #bbb;
    max-width: 800px;
    line-height: 1.6;
}

.wl-plan-card {
    background: linear-gradient(135deg, rgba(30, 231, 255, 0.05), rgba(30, 231, 255, 0.02));
    border: 2px solid rgba(30, 231, 255, 0.3);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.wl-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(30, 231, 255, 0.5), transparent);
}

.wl-badge {
    display: none;
}

.wl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.wl-subtitle {
    font-size: 1.05rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.wl-left h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
}

.wl-description {
    font-size: 1.05rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.wl-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.wl-feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #1ee7ff;
    transition: all 0.3s ease;
}

.wl-feature-item:hover {
    background: rgba(30, 231, 255, 0.1);
    transform: translateX(5px);
}

.wl-feature-item i {
    font-size: 1.5rem;
    color: #1ee7ff;
    flex-shrink: 0;
    margin-top: 5px;
}

.wl-feature-item h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.wl-feature-item p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.wl-pricing {
    margin-bottom: 30px;
}

.wl-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.wl-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1ee7ff;
}

.wl-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.wl-period {
    font-size: 1rem;
    color: #999;
    font-weight: 600;
}

.wl-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wl-highlight-box {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #1ee7ff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(30, 231, 255, 0.15);
}

.wl-highlight-box h4 {
    font-size: 1.6rem;
    color: #1ee7ff;
    margin-bottom: 20px;
    font-weight: 800;
}

.wl-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wl-benefits li {
    font-size: 1rem;
    color: #ddd;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease;
}

.wl-benefits li:hover {
    color: #1ee7ff;
    transform: translateX(5px);
}

.wl-cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wl-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 40px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.wl-btn-whatsapp:hover {
    transform: scale(1.05);
    background: #25d366;
    color: #fff;
}

.wl-btn-whatsapp:active {
    transform: scale(0.98);
}

.wl-btn-whatsapp i {
    font-size: 1.2rem;
}

.wl-disclaimer {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

/* Responsive Weight Loss Section */
@media (max-width: 1024px) {
    .wl-container {
        padding: 0 30px;
    }

    .wl-plan-card {
        padding: 40px 30px;
    }

    .wl-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wl-left h3 {
        font-size: 1.8rem;
    }

    .wl-header .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .weight-loss-section {
        padding: 40px 0;
    }

    .wl-container {
        padding: 0 10px;
    }

    .wl-plan-card {
        padding: 25px 15px;
    }

    .wl-content {
        gap: 25px;
    }

    .wl-left h3 {
        font-size: 1.4rem;
    }

    .wl-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .wl-amount {
        font-size: 2.5rem;
    }

    .wl-features {
        gap: 12px;
        margin-bottom: 25px;
    }

    .wl-feature-item {
        padding: 12px 15px;
        gap: 12px;
        border-radius: 12px;
    }

    .wl-feature-item h4 {
        font-size: 1rem;
    }

    .wl-feature-item p {
        font-size: 0.85rem;
    }

    .wl-pricing {
        margin-bottom: 20px;
    }

    .wl-currency {
        font-size: 1.4rem;
    }

    .wl-period {
        font-size: 1rem;
    }

    .wl-highlight-box {
        padding: 20px;
        border-radius: 15px;
    }

    .wl-highlight-box h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .wl-benefits {
        gap: 10px;
        margin-bottom: 20px;
    }

    .wl-benefits li {
        font-size: 0.9rem;
    }

    .wl-cta-container {
        gap: 12px;
    }

    .wl-btn-whatsapp {
        padding: 14px 20px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .wl-btn-whatsapp i {
        font-size: 1.2rem;
    }

    .wl-disclaimer {
        font-size: 0.8rem;
    }

    .wl-header .section-title {
        font-size: 1.8rem;
    }

    .wl-header .section-sub {
        font-size: 1rem;
    }
}

/* ===========================================================
   TESTIMONIALS SLIDER SECTION (INFINITE)
=========================================================== */
.testimonials-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 20px 0;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-sizing: border-box;
}

.testimonials-container {
    max-width: 100vw;
    width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
}

.testimonials-header .section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1ee7ff, #66d8e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header .section-sub {
    font-size: 1.2rem;
    color: #aaa;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    animation: scroll-left 80s linear infinite;
    padding: 20px 0;
    width: fit-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(30, 231, 255, 0.02));
    border: 1px solid rgba(30, 231, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(30, 231, 255, 0.6);
    box-shadow: 0 15px 40px rgba(30, 231, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #000;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-message {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-result {
    font-size: 0.9rem;
    color: #1ee7ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-motivation {
    text-align: center;
    padding: 15px;
    margin: 10px 50px 0 50px;
}

.testimonials-motivation h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
}

.testimonials-motivation p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-start-now {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-start-now:hover {
    transform: scale(1.05);
    background: var(--primary-color);
    color: #000;
}

.btn-start-now:active {
    transform: scale(0.98);
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-header {
        padding: 0 30px;
    }

    .testimonials-motivation {
        margin: 10px 30px 0 30px;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

    .testimonials-header .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-header {
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .testimonials-header .section-title {
        font-size: 1.8rem;
    }

    .testimonials-header .section-sub {
        font-size: 1rem;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-message {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonials-track {
        gap: 15px;
    }

    .testimonials-motivation {
        padding: 10px 10px;
        margin: 8px 20px 0 20px;
    }

    .testimonials-motivation h3 {
        font-size: 1.6rem;
    }

    .testimonials-motivation p {
        font-size: 1rem;
    }

    .btn-start-now {
        padding: 15px 35px;
        font-size: 0.95rem;
    }
}

/* ===========================================================
   NUEVO CÓDIGO (AGREGADO)
=========================================================== */

/* Estilos para el precio en la columna derecha del plan nutricional */
.wl-pricing-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.wl-highlight-box .wl-price {
    justify-content: center;
    margin-bottom: 0;
}

.wl-highlight-box .wl-currency,
.wl-highlight-box .wl-amount,
.wl-highlight-box .wl-period {
    font-size: 1.5rem;
    color: #1ee7ff;
    font-weight: 800;
    margin-right: 4px;
}

.wl-highlight-box .wl-amount {
    font-size: 4rem;
    color: #fff;
    margin-right: 8px;
}

.wl-highlight-box .wl-period {
    font-size: 1rem;
    color: #999;
    font-weight: 600;
    margin-right: 0;
}

/* === UNIFICACIÓN DE ANIMACIONES Y TRAZOS DE CARDS === */
.plan-card,
.wl-plan-card,
.testimonial-card,
.recipe-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(30, 231, 255, 0.02));
    border: 1px solid rgba(30, 231, 255, 0.22);
    /* thinner border */
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(30, 231, 255, 0.06);
    /* softer shadow */
    transition: transform 0.22s cubic-bezier(.4, 0, .2, 1), box-shadow 0.22s cubic-bezier(.4, 0, .2, 1), border-color 0.22s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}

.plan-card:hover,
.wl-plan-card:hover,
.testimonial-card:hover,
.recipe-card:hover {
    transform: translateY(-4px) scale(1.012);
    box-shadow: 0 8px 24px rgba(30, 231, 255, 0.12);
    border-color: #1ee7ff;
    z-index: 2;
}

.plan-card .plan-tag {
    background: linear-gradient(90deg, #1ee7ff 60%, #66d8e0 100%);
    color: #000;
    padding: 10px 28px;
    border-radius: 22px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(30, 231, 255, 0.13);
    border: 1.5px solid #fff;
    z-index: 3;
    white-space: nowrap;
}

/* ===========================================================
   FOOTER
=========================================================== */
.login-footer {
    color: #fff;
    padding: 20px 20px 30px;
    margin-top: 5px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-section h4 {
    font-size: 1.4rem;
    /* Increased from 1.1rem */
    font-weight: 700;
    margin-bottom: 20px;
    color: #1ee7ff;
}

.footer-logo img {
    height: 80px;
    /* Increased from 60px */
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 1.1rem;
    /* Increased from 0.95rem */
    color: #aaa;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    /* Increased from 0.95rem */
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1ee7ff;
}

.footer-socials {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    /* Increased from 42px */
    height: 50px;
    /* Increased from 42px */
    background: rgba(30, 231, 255, 0.1);
    border: 1px solid rgba(30, 231, 255, 0.3);
    border-radius: 50%;
    color: #1ee7ff;
    font-size: 1.4rem;
    /* Increased from 1.2rem */
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: rgba(30, 231, 255, 0.2);
    border-color: #1ee7ff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #888;
    font-size: 1rem;
    /* Increased from 0.9rem */
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-contact a {
    color: #1ee7ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #66d8e0;
}

@media (max-width: 768px) {
    .login-footer {
        padding: 40px 15px 20px;
        margin-top: 60px;
    }

    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr;
        text-align: center;
        /* Center align for mobile */
    }

    .footer-section h4 {
        font-size: 1.3rem;
        /* Adjusted for mobile */
    }

    .footer-logo img {
        height: 70px;
        /* Adjusted for mobile */
        margin: 0 auto 15px;
        /* Center image */
        display: block;
    }

    .footer-socials {
        justify-content: center;
        /* Center socials */
    }

    .footer-bottom {
        font-size: 0.95rem;
        /* Adjusted for mobile */
    }
}

/* CTA Title in Index Hero */
.hero-cta-title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 600px) {
    .hero-cta-title {
        font-size: 1.2rem;
        white-space: normal;
    }

    /* Login Error Message */
    .login-error-msg {
        color: #ff4d4d;
        font-size: 0.9rem;
        margin-top: 15px;
        text-align: center;
        display: none;
        font-weight: 600;
    }
}

/* Login Error Message (Global) */
.login-error-msg {
    color: #ff0000;
    /* Rojo intenso */
    font-size: 0.95rem;
    margin-top: 25px;
    /* Más separado */
    text-align: center;
    display: none;
    font-weight: 600;
}