/* ===== VARIABLES - PALETA MODO FITNESS ===== */
:root {
    /* Colores del Logo Modo Fitness - Más Negro */
    --primary: #FC8007;
    /* Naranja del logo */
    --primary-dark: #E67300;
    /* Naranja oscuro */
    --primary-light: #FFAA4D;
    /* Naranja claro */
    --secondary: #000000;
    /* Negro puro */
    --secondary-light: #1A1A1A;
    /* Negro suave */
    --accent: #FC8007;
    /* Naranja como acento */
    --success: #FC8007;
    /* Naranja para CTAs */
    --white: #FFFFFF;
    --light: #0A0A0A;
    /* Fondo oscuro */
    --gray-100: #1A1A1A;
    --gray-200: #2D2D2D;
    --gray-400: #4A4A4A;
    --gray-500: #6B6B6B;
    --gray-600: #8A8A8A;
    --gray-700: #A0A0A0;
    --gray-800: #C0C0C0;
    --gray-900: #E0E0E0;

    /* Text Colors for Dark Backgrounds */
    --text-on-dark: #F3F4F6;
    --text-muted-dark: #9CA3AF;

    /* Gradientes - Más Negro */
    --gradient-primary: linear-gradient(135deg, #FC8007 0%, #E67300 100%);
    --gradient-cta: linear-gradient(135deg, #FC8007 0%, #D46A00 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #0A0A0A 50%, #000000 100%);
    --gradient-text: linear-gradient(135deg, #FC8007 0%, #FFAA4D 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);

    /* Sombras */
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(252, 128, 7, 0.5);
    --shadow-cta: 0 10px 40px rgba(252, 128, 7, 0.4);

    /* Tipografía */
    --font-family: 'Kanit', sans-serif;
    --font-body: 'Kanit', sans-serif;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --transition-base: 0.3s ease;
    --z-fixed: 300;
    --z-modal: 400;

    /* Text Colors for Light Backgrounds (Cards) */
    --text-dark-title: #111827;
    --text-dark-body: #4b5563;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    background: #000000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PROMO BANNER - URGENCY ===== */
.promo-banner {
    background: linear-gradient(90deg, #E67300, #FC8007, #E67300);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 0.55rem 0;
        overflow: hidden;
    }

    .promo-content {
        gap: 0.4rem;
        padding: 0 0.5rem;
        justify-content: center;
    }

    .promo-fire {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .promo-text-wrapper {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .promo-hot {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        white-space: nowrap;
    }

    .promo-text {
        font-size: 0.7rem;
        margin: 0;
    }

    .promo-text strong {
        font-size: 0.7rem;
    }

    .highlight {
        font-size: 0.75rem;
        padding: 0.1rem 0.4rem;
    }

    .promo-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        top: 42px;
    }
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-fire {
    font-size: 1.5rem;
    animation: bounce 0.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.promo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-hot {
    background: #000;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    animation: pulse 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.promo-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.promo-text .highlight {
    background: #fff200;
    color: #000;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 800;
}

.promo-btn {
    background: var(--white);
    color: #ff4757;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.pulse-btn {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 20%;
    left: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 40%;
    right: 5%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    z-index: 600;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

@media (max-width: 768px) {
    .header {
        top: 40px;
    }
}

.header.scrolled {
    top: 0;
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: 'Kanit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-highlight {
    font-family: 'Kanit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    font-style: italic;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-top: -5px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link-btn {
    background: var(--gradient-cta);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulseBtn 2s infinite;
}

.nav-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta);
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--secondary);
        padding: 5rem 2rem;
        transition: 0.4s ease;
        z-index: 1000;
        /* Increaserd to stay above header (600) so the close button works */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 700;
        background: rgba(0, 0, 0, 0.5);
        padding: 0.5rem;
        border-radius: 4px;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 1000;
        background: var(--primary);
        color: var(--white);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: calc(90px + 2rem) 0 5rem;
    overflow: hidden;
}

/* Live Viewers */
.live-viewers {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    z-index: 10;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: livePulse 1s infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Hero Badges */
.hero-badges-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 128, 7, 0.15);
    color: var(--primary) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(252, 128, 7, 0.3);
}

.hero-badge-hot {
    background: var(--primary);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 1s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Hero Title - Match Logo */
.hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Visibility Fixes */
.hero-description {
    font-size: 1.05rem;
    color: #e5e7eb;
    /* Visible light Gray */
    margin-bottom: 1.25rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatars-stack {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: -10px;
    border: 2px solid var(--secondary);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--secondary-light);
    color: var(--primary);
}

.proof-text {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.proof-stars {
    color: #ffc107;
    margin-bottom: 0.25rem;
}

.proof-stars span {
    color: var(--gray-400);
    margin-left: 0.25rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-300);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
}

.trust-badge i {
    color: var(--success);
}

/* Buttons */
.hero-buttons {
    margin-bottom: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.btn-lg {
    padding: 1rem 2rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xxl {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-cta {
    background: var(--gradient-cta);
    color: var(--white);
    box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.shake-btn {
    animation: shake 5s infinite;
}

@keyframes shake {

    0%,
    90%,
    100% {
        transform: translateX(0);
    }

    92%,
    96% {
        transform: translateX(-5px);
    }

    94%,
    98% {
        transform: translateX(5px);
    }
}

/* Urgency Box */
.urgency-box {
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.urgency-box i {
    color: #ff4757;
    font-size: 1.5rem;
}

.urgency-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.urgency-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #ff4757, #ff6b81);
    border-radius: 3px;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--gray-700);
}

/* Hero Media */
.hero-media {
    position: relative;
    align-self: start;
    margin-top: 3rem;
}

.video-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-badge-live {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff4757;
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 5;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1s infinite;
}

.video-container video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 26, 46, 0.9) 100%);
    pointer-events: none;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #ffffff !important;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    animation: floatCard 3s ease-in-out infinite;
    z-index: 10;
    color: #000000 !important;
}

.floating-card i {
    color: var(--success);
}

.floating-card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 30%;
    right: -20px;
    animation-delay: 1.5s;
}

.floating-card-2 i {
    color: #ffc107;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.sponsor-card {
    position: absolute;
    bottom: -25px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.sponsor-card:hover {
    transform: translateY(-3px);
}

.sponsor-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sponsor-text {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.85rem;
}

.sponsor-info i {
    color: var(--primary);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--light);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

@media (max-width: 991px) {
    .hero {
        padding-top: calc(112px + 1rem);
        padding-bottom: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-badges-row {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 340px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    .urgency-box {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero {
        padding-top: 100px;
        /* Reduced from default calculation */
        padding-bottom: 2rem;
    }

    .hero-media {
        order: -1;
        margin-bottom: 1rem;
        /* Reduced margin */
        margin-top: 0;
    }

    .floating-card {
        display: none;
    }

    .sponsor-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1rem auto 0;
        justify-content: center;
    }

    .live-viewers {
        top: 65px;
        /* Moved up significantly */
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        width: max-content;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

/* ===== RESULTS SECTION ===== */
.results-section {
    padding: 3rem 0;
    background: var(--white);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.result-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.result-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 4rem 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(252, 128, 7, 0.15);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1rem;
    color: var(--gray-600);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-check {
    width: 40px;
    height: 40px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-check i {
    color: white;
    font-size: 1.25rem;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.benefit-value {
    display: inline-block;
    background: rgba(252, 128, 7, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Benefits Total */
.benefits-total {
    background: var(--gradient-hero);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.total-value {
    margin-bottom: 1.5rem;
}

.old-price {
    color: var(--gray-400);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.new-price {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.guarantee-text {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee-text i {
    color: var(--success);
}

/* ===== CTA URGENCY BANNER ===== */
.cta-urgency-banner {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    padding: 2.5rem 0;
}

.cta-urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-timer {
    text-align: center;
}

.timer-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 60px;
}

.countdown-item span {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.countdown-item small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

/* ===== COURSES ===== */
.courses {
    padding: 4rem 0;
    background: var(--white);
}

.location-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.location-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-base);
}

.location-tab:hover {
    background: var(--gray-200);
}

.location-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .courses-grid {
        /* Pone 2 columnas en lugar de 1 */
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        /* Reduce gap slightly */
    }

    .location-tabs {
        gap: 0.4rem;
    }

    .location-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* Make text smaller on mobile cards to fit */
    .course-title {
        font-size: 0.95rem;
        /* Smaller title */
    }

    .course-description {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .course-link {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Adapt cards to image content */
/* Adapt cards to image content */
.course-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Make it square to fit most content */
    height: auto;
    overflow: hidden;
    background: #000;
    /* Dark background to blend with posters */
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* SHOW FULL IMAGE */
    object-position: center;
    transition: 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #ff4757;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}

.course-discount {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #00ff88;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
}

.course-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 0.75rem;
}

.course-description {
    font-size: 0.85rem;
    color: #000000 !important;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.course-footer {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.course-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    background: var(--gradient-cta);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: var(--transition-base);
}

.course-link:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-cta);
}

.courses-pagination {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-base);
}

.page-btn:hover {
    background: var(--gray-200);
}

.page-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 4rem 0;
    background: var(--gradient-hero);
}

.testimonials-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

/* Google Reviews Styling */
.testimonial-card {
    flex: 0 0 320px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    scroll-snap-align: start;
    border: 1px solid var(--gray-200);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.google-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.google-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.google-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark-title);
    margin-bottom: 0.1rem;
}

.google-info span {
    font-size: 0.8rem;
    color: var(--text-dark-body);
}

.google-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 2px;
}

.google-logo {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 24px;
    height: 24px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-dark-body);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 4rem 0;
    background: var(--light);
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--text-dark-title);
    font-size: 0.95rem;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 150px;
}

.faq-answer p {
    color: var(--text-dark-body);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.final-urgency {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    color: #ff6b81;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-text {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.final-cta-buttons {
    margin-bottom: 1.5rem;
}

.final-cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.final-cta-guarantee span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #e5e7eb;
    font-size: 0.85rem;
}

.final-cta-guarantee i {
    color: var(--success);
}

.final-regret {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 550px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-base);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    z-index: 10;
}

.modal-header {
    background: var(--gradient-primary);
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 299;
    /* Below WhatsApp button */
}

.sticky-cta-mobile .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }

    main {
        padding-bottom: 90px;
        padding-top: 120px;
    }

    /* Adjust final CTA section for mobile */
    .final-cta {
        padding: 3rem 0;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }

    .final-cta-text {
        font-size: 1rem;
    }

    .final-cta-guarantee {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===== NOTIFICATION POPUP ===== */
.notification-popup {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: #ffffff !important;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 200;
    transform: translateX(-120%);
    transition: 0.5s ease;
}

.notification-popup.show {
    transform: translateX(0);
}

.notification-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.notification-text strong {
    display: block;
    color: #000000 !important;
    font-size: 0.85rem;
}

.notification-text span {
    font-size: 0.75rem;
    color: #4b5563 !important;
}

@media (max-width: 768px) {
    .notification-popup {
        bottom: 150px;
        /* Raised to avoid WhatsApp button and Sticky CTA */
        left: 10px;
        right: auto;
        /* Don't stretch full width */
        width: auto;
        max-width: 85%;
        /* Prevent it from hitting the right edge too hard */
    }

    /* Course Card Mobile Optimizations */
    .course-link {
        font-size: 0.65rem !important;
        /* Smaller text for "INSCRIBIRME" */
        padding: 0.6rem 0.2rem !important;
        white-space: nowrap;
        /* Try to keep one line if possible */
    }

    .course-urgency {
        font-size: 0.65rem !important;
        flex-wrap: wrap;
        /* Allow wrapping if needed */
        line-height: 1.2;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    padding: 3rem 0 1.5rem;
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.footer-description {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.footer-list li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-list a:hover {
    color: var(--primary);
}

.footer-mexico {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary-light);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    transition: var(--transition-base);
}

.footer-mexico:hover {
    background: var(--gray-800);
}

.footer-mexico img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.footer-mexico span {
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--secondary-light);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-mexico {
        justify-content: center;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-list {
        align-items: center;
    }
}

/* Hide scrollbars */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

/* ===== PREMIUM ANIMATIONS & DETAILS ===== */

/* 1. Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Premium Grain Overlay */
.premium-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 3. Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-shine:hover::after {
    left: 100%;
    transition: 0.7s ease-in-out;
}

/* 4. Enhanced Card Premium Hover */
.course-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(252, 128, 7, 0.25);
    border-color: var(--primary);
    z-index: 10;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 95px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* =========================================
   CORRECCIONES RESPONSIVE (MOBILE FIXES)
   ========================================= */

/* 1. PREVENCIÓN DE DESBORDE HORIZONTAL (El espacio blanco a la derecha) */
html,
body {
    overflow-x: hidden;
    /* Corta cualquier elemento que se salga del ancho */
    width: 100%;
    position: relative;
}

/* 2. AJUSTE DE CABECERA Y BANNER (El menú tapado) */
@media (max-width: 768px) {

    /* Ajustamos el banner para que sea compacto pero legible */
    .promo-banner {
        position: fixed;
        height: auto;
        min-height: 50px;
        /* Aseguramos altura mínima */
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
    }

    .promo-content {
        width: 100%;
        /* Asegura que el contenido no empuje el ancho */
        padding: 0 10px;
    }

    /* Movemos el header más abajo para que no lo tape el banner */
    .header {
        top: 60px;
        /* Aumentado de 40px a 60px para dar espacio al banner de 2 líneas */
        height: 60px;
        /* Altura consistente */
    }

    /* Ajuste del menú desplegable para que empiece justo debajo del header */
    .nav-menu {
        padding-top: 2rem;
        /* Menos padding interno */
        top: 60px;
        /* Sincronizado con la altura del header */
        height: calc(100vh - 60px);
    }

    /* Ajustamos el padding del cuerpo para que el contenido no quede oculto bajo el header fijo */
    body {
        padding-top: 120px;
        /* 60px banner + 60px header */
    }

    /* Corrección del Hero para móviles */
    .hero {
        padding-top: 2rem;
        /* Ya tenemos padding en el body, reducimos aquí */
        min-height: auto;
        /* Quitamos altura forzada */
        padding-bottom: 3rem;
    }
}

/* 3. CORRECCIÓN DE TARJETAS (Mismo tamaño y alineación) - ACTUALIZADO */
@media (max-width: 768px) {

    /* Contenedor de las tarjetas de resultados */
    .results-section .container {
        padding: 0 10px;
        /* Reducimos padding lateral */
        overflow: hidden;
        /* Cortamos cualquier fuga de contenido */
    }

    .results-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columnas estrictas */
        gap: 10px;
        /* Espacio más pequeño */
        padding: 0;
        align-items: stretch;
        /* CLAVE: Estira las tarjetas */
    }

    /* Estilo de la tarjeta individual */
    .result-card {
        width: 100%;
        height: 100%;
        /* Ocupa toda la altura disponible */
        min-height: 180px;
        /* Altura mínima para uniformidad */

        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centra el contenido verticalmente */
        align-items: center;

        padding: 1rem 0.5rem;
        /* Padding interno reducido */
        margin: 0;
        overflow: hidden;
        /* Aseguramos que el contenido largo no rompa */
    }

    /* Textos dentro de las cards */
    .result-value {
        font-size: 1.1rem;
        /* Reducido drásticamente para que quepa */
        line-height: 1.2;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        /* Si la palabra es muy larga, la corta */
        hyphens: auto;
    }

    .result-icon {
        font-size: 1.75rem;
        /* Icono un poco más pequeño */
        margin-bottom: 0.5rem;
    }

    .result-label {
        font-size: 0.8rem;
        /* Texto descriptivo más compacto */
        line-height: 1.2;
        padding: 0 2px;
    }
}

/* 4. SECCIÓN DE BENEFICIOS (Limpieza visual) */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        /* 1 sola columna para beneficios */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .benefit-card {
        margin-bottom: 0;
        /* El gap de la grilla se encarga del espacio */
        height: auto;
        /* Aquí dejamos altura automática */
    }
}

/* 5. CORRECCIONES DE TIPOGRAFÍA Y ESPACIADO GENERAL */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
        /* Estandarizamos el padding lateral */
    }

    .hero-title {
        font-size: 2.2rem;
        /* Títulos más controlados */
        line-height: 1.1;
    }

    /* Corrección botón flotante de WhatsApp para que no se corte */
    .whatsapp-float {
        right: 15px;
        bottom: 85px;
        /* Un poco más arriba para no chocar con CTA sticky */
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* El CTA sticky inferior */
    .sticky-cta-mobile {
        z-index: 1000;
        /* Aseguramos que esté por encima de todo */
        padding-bottom: env(safe-area-inset-bottom);
        /* Soporte para iPhone sin botón */
    }
}

/* =========================================
   CORRECCIÓN ESTÉTICA MENÚ HAMBURGUESA
   ========================================= */

@media (max-width: 768px) {

    /* 1. Sincronizar altura para centrado perfecto */
    .nav {
        height: 60px;
        /* Igual que el header para que flexbox centre bien el ícono */
    }

    /* 2. Limpieza del botón hamburguesa */
    .nav-toggle {
        background: transparent !important;
        /* Quitamos el fondo "mancha" oscura */
        padding: 0;
        /* Quitamos padding innecesario */
        font-size: 2rem;
        /* Hacemos el ícono un poco más grande y fácil de tocar */
        color: var(--white);
        /* Aseguramos que sea blanco puro */
        border: none;
        display: flex;
        /* Para centrar el ícono SVG/fuente perfectamente */
        align-items: center;
        justify-content: center;
        width: 44px;
        /* Área táctil mínima recomendada (UX) */
        height: 44px;
        margin-right: -10px;
        /* Compensación visual para alinear a la derecha */
    }

    /* Efecto al tocar el botón */
    .nav-toggle:active {
        transform: scale(0.95);
        opacity: 0.8;
    }

    /* 3. Limpieza de fondo (Opcional pero recomendado) */
    /* Ocultamos las formas naranjas flotantes en móvil para que el header se vea limpio */
    .animated-bg {
        display: none;
    }
}

/* =========================================
   CORRECCIONES FINALES (MENU Y BADGE)
   ========================================= */

@media (max-width: 991px) {

    /* 1. ARREGLO DEL MENÚ HAMBURGUESA */
    /* Forzamos que sea transparente en tablets y móviles */
    .nav-toggle {
        background: transparent !important;
        /* Quita el cuadro negro */
        padding: 0 !important;
        /* Quita el relleno extra */
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        margin-right: -10px;
        /* Ajuste fino a la derecha */
    }

    .nav-toggle i {
        font-size: 2rem;
        /* Icono grande y limpio */
        color: var(--white);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        /* Sombra suave para contraste */
    }

    /* 2. ARREGLO DEL CARTEL "PERSONAS VIENDO ESTO" */
    /* Dejamos de flotarlo sobre la imagen para que no tape la cara */
    .live-viewers {
        position: relative !important;
        /* Ya no flota encima de todo */
        top: auto !important;
        /* Reseteamos la posición top */
        left: auto !important;
        /* Reseteamos la izquierda */
        transform: none !important;
        /* Quitamos el centrado absoluto */

        display: inline-flex;
        /* Se ajusta al contenido */
        margin: 0 auto 1.5rem auto;
        /* Centrado y empuja el título hacia abajo */

        background: rgba(255, 255, 255, 0.15);
        /* Fondo un poco más visible */
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Aseguramos que el contenedor padre permita centrarlo */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
