/* --- VARIABLES --- */
:root {
    --yellow: #FFD700;
    --pink: #D65DB1;
    --blue-bg: #6CBCEB;
    --blue-text: #4A90E2;
    --dark: #333;
    --grey-light: #F9F9F9;
    --font-head: 'Libre Baskerville', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--dark); overflow-x: hidden; background-color: #fff; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; color: #333; }
p { line-height: 1.7; color: #555; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.text-pink { color: var(--pink); }
.text-white { color: white; }

/* 1. SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* 2. SCROLL ANIMATION CLASSES */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. BUTTON PRESS EFFECT */
.btn-pink:active, .btn-yellow-lg:active, .btn-nav-yellow:active {
    transform: scale(0.96) translateY(2px); 
}

/* BUTTON STYLES */
.btn-pink {
    background: var(--pink); color: white; padding: 10px 14px;
    border: none; border-radius: 2px; cursor: pointer;
    font-weight: 600; font-size: 1rem; transition: 0.3s;
    font-family: "Montserrat";
}
.btn-pink:hover { background: #c44da0; transform: translateY(-1px); }

.btn-yellow-lg {
    background: #FFD600; color: #FFF; padding: 10px 14px;
    border: none;  font-weight: 600; font-size: 1rem; cursor: pointer;
    margin-top: 60px;
    width: 215px;
    height: 40px;
    font-family: "Montserrat";
}

/* --- NAVBAR  --- */
.navbar {
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: transparent;
    padding-top: 20px;
}

.nav-inner {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    width: 100%;
}

.nav-left { display: flex; align-items: center; gap: 40px; }
.logo { font-size: 1.8rem; font-weight: 700; font-family: var(--font-head); white-space: nowrap; }

.nav-links { display: flex; gap: 42px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: #333; transition: 0.3s; white-space: nowrap; }
.nav-links a:hover { color: var(--pink); }

.nav-right { display: flex; gap: 15px; align-items: center; }
.btn-nav-yellow {
    background: var(--yellow); color: #333; padding: 8px 20px;
    font-size: 0.8rem; font-weight: 600; border-radius: 4px;
    white-space: nowrap;
}

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: #333; }

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex; align-items: center;
    padding-top: 80px; 
    background: #F9F9F9; 
    overflow: hidden;
}

.hero-yellow-bg {
    position: absolute;
    top: 0; right: 0;
    width: 30%; height: 100%;
    background: var(--yellow);
    border-top-left-radius: 50px;
    z-index: 0;
}
.circle-white-lg {
    width: 400px; height: 400px;
    border: 28px solid rgba(255,255,255,0.3);
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 190px; right: -160px;
    z-index: 1;
}

.circle-white-lg-2 {
    width: 400px; height: 400px;
    border: 28px solid rgba(255,255,255,0.3);
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 250px; right: 1600px;
    z-index: 1;

}

.circle-bg-pink {
    width: 185px; height: 185px;
    border: 28px solid rgba(255,255,255,0.3);
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 210px; right: 1650px;
    z-index: 1;
}

.circle-bg-pink-2 {
    width: 308px; height: 308px;
    border: 28px solid rgba(255,255,255,0.3);
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 80px; right: -190px;
    z-index: 1;
}


.hero-container { display: flex; width: 100%; align-items: center; }

.hero-content { flex: 1; padding-right: 50px; }
.hero-content h1 { font-size: 3.7rem; line-height: 1.2; margin-bottom: 20px; color: #333333; }
.hero-desc { font-size: 1.2rem; margin-bottom: 30px; width: 550px; color: #333333; }

.hero-visual { flex: 0.8; display: flex; justify-content: flex-end; position: relative; z-index: 2; }

.spots {
    display: none;
}

/* --- COUNTDOWN BOX --- */
.countdown-box {
    background: rgba(255, 255, 255, 0.3);
    padding: 30px 5px;
    border-radius: 50px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    min-width: 629px;
    height: 321px;
    position: relative;
    margin-bottom: 30%;
    backdrop-filter: blur(67px);
}
.offer-text { margin-bottom: 50px; font-size: 1.125rem; color: #666; letter-spacing: 1px; }

.timer { display: flex; justify-content: space-between; padding: 0 40px; gap: 20px; }
.time-unit { display: flex; flex-direction: column; align-items: center; }
.label-blue { font-size: 1.125rem; color: var(--blue-text); letter-spacing: 6px; font-weight: 500; margin-bottom: 70px; }
.number { font-size: 3rem; font-weight: 500; color: #222; line-height: 1; }


/* --- STATS SECTION --- */
.stats { background: var(--pink); padding: 140px 0; text-align: center; position: relative; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }

.stat-card {
    background: white; padding: 20px 20px; border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-direction: column; align-items: center; justify-content: center;
    min-height: 220px;
}

.icon-box { font-size: 2rem; margin-bottom: 20px; -webkit-text-stroke: 1px; }
.icon-blue { color: transparent; -webkit-text-stroke: 1.5px #6CBCEB; }
.icon-yellow { color: transparent; -webkit-text-stroke: 1.5px #FFD700; }
.icon-pink { color: transparent; -webkit-text-stroke: 1.5px #D65DB1; }
.icon-green { color: transparent; -webkit-text-stroke: 1.5px #7ED321; }

.stat-card h3 { font-size: 2.5rem; margin-bottom: 40px; font-weight: 500; font-family: var(--font-body); }
.stat-card p { font-size: 1.125rem; color: #666; font-weight: 400; }

/* --- BLUE SECTION --- */
.blue-section { background: var(--blue-bg); padding: 100px 0; position: relative; overflow: hidden; }
.circle-faint-blue {
    width: 600px; height: 600px;
    border: 28px solid rgba(255,255,255,0.1); border-radius: 50%;
    position: absolute; top: 10%; right: -350px;
}
.circle-faint-blue-2 {
    width: 308px; height: 308px;
    border: 28px solid rgb(255, 255, 255);
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 45%; right: 92%;
    z-index: 1;
}

.split-layout { display: flex; align-items: center; gap: 80px; }
.text-content h2 { font-size: 2rem; margin-bottom: 15px; margin-top: 30px; font-weight: 500; color: white; width: 491px; height: 51px; }
.text-content p { font-size: 1rem; opacity: 0.9; margin-bottom: 80px; color: white; font-weight: 500; width: 388px; height: 130px; }


.image-content { position: relative; }
.image-circle-frame {
    width: 380px; height: 380px;
    border: 28px solid rgb(255, 255, 255);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden;
}
.image-circle-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.small-white-dot {
    width: 85px; height: 85px; border-radius: 50%;
    position: absolute; top: 0; right: -60px;
    border: 28px solid rgb(255, 255, 255);
    
}

/* --- WE CAN HELP --- */

/* 1. Base configuration (Desktop)  */
.help-flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.help-text {
    max-width: 900px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* --- Image Management --- */
.img-mobile-view {
    display: none;
}

.img-desktop-view {
    display: block;
    width: 100%;
    max-width: 1000px;
}

/* --- Flex Order (Desktop) --- */
.we-can-help h2 { order: 1; margin-bottom: 30px; }
.text-1         { order: 2; }
.text-2         { order: 3; }
.text-3         { order: 4; }

.we-can-help .btn-pink { 
    order: 5; 
    margin-bottom: 60px;
    margin-top: 20px;
}

.img-desktop-view { order: 6; }

/* Button Text Toggles */
.btn-text-mobile { display: none; }
.btn-text-desktop { display: inline; }

.we-can-help { 
    padding: 80px 0 0; 
    text-align: center; 
    background: white; 
    overflow: hidden;
}

.we-can-help h2 { 
    font-size: 2.5rem; 
    margin-bottom: 30px; 
    font-weight: 500; 
    color: #333;
}

.subtitle-box { 
    max-width: 900px; 
    text-align: center; 
    padding: 0 20px; 
}

.subtitle-box p { 
    margin-bottom: 20px; 
    font-size: 1rem; 
    color: #666; 
    line-height: 1.8;
    width: 1140px; 
    height: auto; 
}


/* --- WHAT YOU GET --- */
.what-you-get { 
    padding: 80px 0; 
    background: #F9F9F9; 
    text-align: center; 
}

.what-you-get h2 { 
    margin-bottom: 50px; 
    font-size: 2.2rem; 
    font-weight: 500;
}

/* Decorative Circles (What You Get) */
.circle-what-you-get {
    width: 386px; height: 386px;
    border: 28px solid rgb(255, 255, 255);
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 15%; right: 112%;
    z-index: 1;
}

.circle-what-you-get-2 {
    width: 158px; height: 158px;
    border: 28px solid rgb(255, 255, 255);
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 55%; right: -10%;
    z-index: 1;
}

.circle-what-you-get-3 {
    width: 279px; height: 279px;
    border: 28px solid rgb(255, 255, 255);
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: -8%; right: -20%;
    z-index: 1;
}


.cards-row { 
    display: flex; 
    justify-content: center; 
    gap: 100px; 
    flex-wrap: wrap;
}

.feature-card {
    background: white; 
    padding: 28px 28px;
    text-align: left;
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    max-width: 450px;
    min-width: 300px;
    height: 391px;
    margin-bottom: 40px;
}

.title-blue { 
    color: var(--blue-text); 
    font-size: 1.5rem; 
    text-align: center; 
    margin-bottom: 39px; 
    font-weight: 500;
}

.title-pink { 
    color: var(--pink); 
    font-size: 1.5rem; 
    text-align: center; 
    margin-bottom: 39px; 
    font-weight: 500;
}

.divider { 
    border: 0; 
    height: 1px; 
    width: 100%; 
    margin-bottom: 39px; 
    opacity: 0.3; 
}
.divider-blue { background: var(--blue-text); }
.divider-pink { background: var(--pink); }

.feature-card ul { padding-left: 10px; }
.feature-card ul li { 
    margin-bottom: 23px; 
    font-size: 1rem; 
    color: #333; 
    list-style-type: "•   ";
    margin-left: 8px; 
    line-height: 1.6;
}

/* --- FAQ --- */
.faq-section { 
    padding: 80px 0; 
    background: white; 
}

.faq-section h2 { 
    margin-bottom: 64px; 
    text-align: left;
    font-size: 2.2rem; 
    font-weight: 500;
}

/* Decorative Circles (FAQ) */
.circle-faq {
    width: 410px; height: 410px;
    border: 28px solid #F9F9F9;
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 48%; right: 112%;
    z-index: 1;
}

.circle-faq-2 {
    width: 269px; height: 269px;
    border: 28px solid #F9F9F9;
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 3%; right: -26%;
    z-index: 1;
}

.circle-faq-3 {
    width: 124px; height: 124px;
    border: 28px solid #F9F9F9;
    color: #ffffff;
    border-radius: 50%;
    position: absolute; top: 75%; right: -14%;
    z-index: 1;
}

.faq-list { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
    margin-bottom: 40px; 
}

.faq-item { 
    border-radius: 20px; 
    overflow: hidden; 
}

.faq-head {
    padding: 18px 25px; 
    background: var(--grey-light);
    cursor: pointer; 
    font-weight: 500; 
    font-size: 0.95rem; 
    border-radius: 12px;
    color: #444;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    transition: 0.2s;
}

.faq-head:hover { background: #f0f0f0; }

.arrow { 
    color: var(--pink); 
    font-weight: bold; 
    font-size: 0.9rem; 
    transition: 0.3s; 
}

.faq-body { 
    max-height: 0; 
    overflow: hidden; 
    background: var(--grey-light); 
    padding: 0 25px; 
    transition: 0.3s ease; 
}

.faq-body p { 
    padding-bottom: 20px; 
    font-size: 0.9rem; 
    color: #666;
}

.faq-item.active .arrow { transform: rotate(180deg); }
.faq-item.active .faq-body { max-height: 300px; } 


/* --- FOOTER --- */
.main-footer {
    background: #FAFAFA;
    color: #333;
    padding: 100px 0 30px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Footer Circles */
.footer-circle-right {
    width: 368px; height: 368px;
    border: 28px solid #ffffff;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    top: 60%; 
    right: -100px;
    transform: translateY(-50%);
    z-index: 0;
}
.footer-circle-left {
    width: 230px; height: 230px;
    border: 28px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 35%; 
    left: 60px;
    z-index: 0;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    gap: 0px; 
    margin-bottom: 80px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.footer-grid > div:nth-child(1) { grid-column: 1 / 2; } 
.footer-grid > div:nth-child(2) { grid-column: 3 / 4; margin-left: 15%; } 
.footer-grid > div:nth-child(3) { grid-column: 4 / 5; } 


/* Brand Info */
.brand-info .footer-logo {
    margin-bottom: 30px;
}
.brand-info .footer-logo img {
    max-width: 140px; 
}

.footer-desc { 
    color: #555; 
    margin-bottom: 45px; 
    font-size: 1rem; 
    line-height: 1.6;
    max-width: 443px; 
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #444;
}

.icon-wrap {
    width: 20px;
    display: flex;
    justify-content: center;
    margin-top: 3px; 
}

.contact-row p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-row strong {
    color: #222;
    font-weight: 700;
}

.social-links { 
    display: flex; 
    gap: 21px; 
    margin-top: 40px; 
}

.social-circle {
    width: 30px; 
    height: 30px; 
    background: var(--pink);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: 0.3s;
}
.social-circle img {
    width: 35px; height: 35px;
}
.social-circle:hover { 
    background: #c44da0; 
    transform: translateY(-2px);
}

/* Footer Links */
.footer-col h3 { 
    font-family: var(--font-head); 
    font-size: 1.5rem; 
    margin-bottom: 50px;
    margin-top: 20px;
    color: #333; 
    font-weight: 400; 
}

.footer-col ul li { margin-bottom: 25px; }

.footer-col ul li a { 
    color: #555; 
    font-size: 1rem; 
    font-family: var(--font-body);
    transition: 0.3s;
    font-weight: 400; 
    display: inline-block;
}

.footer-col ul li a:hover { 
    color: var(--pink); 
    transform: translateX(5px);
}


/* Footer Bottom */
.footer-bottom {
    text-align: right; 
    padding-top: 0;
    color: #888;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.copyright {
    margin-left: 43%;
    font-size: 1rem;
}


/* Global Overflow Protection */
.hero,
.stats,
.blue-section,
.we-can-help,
.what-you-get,
.faq-section,
.main-footer {
    overflow: hidden;
    position: relative;
}


/* =========================================================
   MEDIA QUERIES
   ========================================================= */

/* --- MOBILE (Max-width: 820px) --- */

@media (max-width: 820px) {


    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    /* --- FULLSCREEN NAVBAR & MENU --- */    
    /* 1. Menu Container (Fullscreen Overlay) */
    .nav-links { 
        display: flex; 
        flex-direction: column;
        align-items: left;      
        justify-content: center;  
        
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        
        background: rgba(255, 255, 255, 0.98); 
        backdrop-filter: blur(15px); 
        z-index: 1000; 
        
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        
        overflow: hidden;
    }

    /* Background Decoration */
    .nav-links::before {
        content: '';
        position: absolute;
        bottom: -10%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: var(--pink);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(60px);
        z-index: -1;
    }
    
    /* Active State */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    /* 2. Link Styles */
    .nav-links li a {
        font-family: 'Montserrat', serif; /* Fuente elegante */
        font-size: 1rem; /* Texto grande */
        font-weight: 600;
        color: #333;
        text-decoration: none;
        position: relative;
        transition: color 0.3s;
        margin-left: 10%;
    }
    
    .nav-links li a:hover {
        color: var(--pink);
    }

    /* Cascade Animation */
    .nav-links li {
        margin: 5px 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
    }

    .nav-links.active li { opacity: 1; transform: translateY(0); }
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.45s; }


    /* 3. Close Button (Hamburger Transformation) */
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 35px;  /* Un poco más grande */
        height: 24px;
        cursor: pointer;
        z-index: 1001;
        transition: transform 0.3s ease-in-out;
        
        position: relative; 
    }
    
    .hamburger.active {
        position: fixed;
        top: 30px;
        right: 25px;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background-color: #DD71C6;
        border-radius: 3px;
        transition: all 0.4s ease-in-out;
        transform-origin: left;
    }

    /* "X" Animation */
    .hamburger.active span:nth-child(1) {
        background-color: var(--pink);
        transform: rotate(45deg) translate(3px, -3px);
        width: 30px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        background-color: var(--pink);
        transform: rotate(-45deg) translate(3px, 3px);
        width: 30px;
    }
    
    .hamburger:hover span {
        background-color: var(--pink);
    }

    /* --- HERO SECTION MOBILE --- */
    .hero { 
        flex-direction: column; 
        padding-top: 70px; 
        height: auto; 
        text-align: center;
        min-height: auto;
        background: #F9F9F9;
        overflow: hidden;
    }
    
    .hero-yellow-bg { 
        width: 52%;
    }
    
    .hero-container { 
        display: flex;
        flex-direction: column; 
        padding: 25px 0;
    }
    
    /* Flex reordering wrapper */
    .hero-content { 
        display: contents; 
    }
    
    /* Order 1: Title */
    .hero-content h1 {
        order: 1;
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 25px; 
        margin-top: 25px;
        color: #333;
        font-weight: 400;
        width: 260px;
        padding: 0 20px;
        text-align: center;
    }

    .spots {
        display:inline;
        order: 1;
        font-weight: 400;
        font-family: "Montserrat";
        margin-bottom: 19px;
    }

    /* Order 2: Countdown */
    .hero-visual { 
        order: 2; 
        width: 100%; 
        display: flex;
        justify-content: center; 
        margin-bottom: 25px;
    }
    
    .countdown-box { 
        width: 90%;
        max-width: 300px;
        min-width: auto;
        height: 159px;
        padding: 20px 15px;
        margin: 0;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(67px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    /* Order 3: Description */
    .hero-desc {
        order: 3;
        font-size: 0.9rem;
        margin: 0 0 30px 0; 
        color: #666;
        line-height: 1.5;
        width: 80%;
        padding: 0 20px;
        text-align: left;
    }
    
    /* Order 4: Button */
    .hero-content .btn-pink {
        order: 4;
        width: 60%;
        max-width: 230px;
        padding: 12px 18px;
        font-size: 1rem;
        font-weight: 600;
        margin: 0 auto 20px auto;
        display: block;
    }

    /* Countdown Internals */
    .offer-text { 
        margin-bottom: 20px;
        font-size: 1rem;
        color: #333;
        font-weight: 400;
        text-align: center;
    }
    
    .timer {
        gap: 15px;
        padding: 0 10px;
    }
    
    .time-unit {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .label-blue {
        font-size: 0.75rem;
        color: var(--blue-text);
        letter-spacing: 1.2px;
        font-weight: 500;
        margin-bottom: 30px;
        text-transform: uppercase;
    }
    
    .number {
        font-size: 1.5rem;
        font-weight: 500;
        color: #222;
        line-height: 1;
        font-family: var(--font-body);
    }
    
    .btn-pink {
        width: 100%;
        max-width: 230px;
        padding: 12px 18px;
        font-size: 1rem;
        font-weight: 600;
        margin: 0 auto;
        display: block;
    }
    
    /* STATS SECTION MOBILE */
    .stats { 
        padding: 35px 0; 
        background: var(--pink);
    }
    
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
        padding: 0 20px;
    }
    
    .stat-card {
        min-height: 157px;
        padding: 15px 8px;
        border-radius: 20px;
        text-align: center;
        background: white;
    }
    
    .icon-box {
        margin-bottom: 10px;
    }
    
    .icon-box img {
        width: 20px;
        height: 20px;
    }
    
    .stat-card h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        font-weight: 600;
        margin-top: -10px;
    }
    
    .stat-card p {
        font-size: 1.1rem;
        line-height: 1.2;
        color: #666;
        margin-top: 26px;
    }
    
    .btn-yellow-lg {
        width: 70%;
        max-width: 250px;
        padding: 10px 18px;
        font-size: 1rem;
        margin-top: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        background: #FFD600;
        color: #ffffff;
        border: none;
    }
    
    /* BLUE SECTION MOBILE */
    .blue-section { 
        padding: 50px 0; 
        background: var(--blue-bg);
    }
    
    .split-layout { 
        flex-direction: column; 
        text-align: left; 
        gap: 25px;
    }
    
    .text-content { 
        text-align: left;
        order: 1;
    }
    
    .text-content h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        margin-top: 0;
        width: 70%;
        height: auto;
        line-height: 1.3;
        color: white;
        font-weight: 400;
        margin-left: 30px;
    }
    
    .text-content p {
        font-size: 0.875rem;
        margin-bottom: 15px;
        width: 84%;
        height: auto;
        line-height: 1.8;
        opacity: 0.9;
        color: white;
        font-weight: 500;
        margin-left: 30px;
    }
    
    .image-content {
        order: 2;
        text-align: center;
    }
    
    .image-content img {
        width: 100%;
        max-width: 250px;
        border-radius: 8px;
    }
    
    .btn-shadow {
        margin-top: 10px;
    }
    
    /* WE CAN HELP SECTION MOBILE */
    .we-can-help {
        padding: 35px 0 0;
        background: white;
    }
    
    .we-can-help h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        text-align: center;
        font-weight: 600;
    }
    
    .subtitle-box {
        text-align: left;
        padding: 0 10px;
    }
    
    .subtitle-box p {
        width: 100%;
        height: auto;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 12px;
        text-align: left;
        color: #666;
    }
    
    .team-img-wrapper {
        margin-top: 20px;
    }
    
    .team-img-wrapper img {
        width: 100%;
        border-radius: 6px;
    }
    
.help-flex-container {
        align-items: flex-start;
        text-align: left;
        padding: 0 20px;
    }

    /* Image Toggle (Mobile) */
    .img-desktop-view {
        display: none;
    }
    
    .img-mobile-view {
        display: block;
        width: 100%;
        margin: 30px 0;
    }

    /* Flex Order (Mobile) */
    .we-can-help h2 { 
        order: 1; 
        text-align: left;
        font-size: 1.5rem;
        font-weight: 400;
        margin-left: 20px;
    }
    
    .text-1 { order: 2; font-size: 1rem; width: 281px; margin-left: 20px; }
    .text-2 { order: 3; font-size: 1rem; width: 281px; margin-left: 20px; }

    .img-mobile-view { order: 4; } /* Image in middle */

    .text-3 { 
        order: 5; 
        font-size: 1rem;
        margin-bottom: 30px;
        width: 281px;
        margin-left: 20px;
    }

    .we-can-help .btn-pink {
        order: 6;
        width: 60%;
        max-width: none;
        margin-bottom: 40px;
    }

    /* Button Text Toggle */
    .btn-text-desktop { display: none; }
    .btn-text-mobile { display: inline; }


    /* WHAT YOU GET SECTION MOBILE */
    .what-you-get {
        padding: 35px 0;
        background: #F9F9F9;
    }
    
    .what-you-get h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding: 0 25px;
        line-height: 1.3;
        text-align: left;
        font-weight: 400;
        width: 250px;
    }
    
    .cards-row { 
        flex-direction: column; 
        align-items: center; 
        gap: 12px;
        padding: 0 25px;
    }
    
    .feature-card {
        margin-bottom: 39px;

        padding: 18px 20px;
        border-radius: 20px;
        text-align: left;
        background: white;
    }
    
    .title-blue, 
    .title-pink {
        font-size: 1.125rem;
        margin-bottom: 12px;
        text-align: center;
        font-weight: 400;
    }
    
    .divider {
        margin-bottom: 12px;
        height: 1px;
    }
    
    .feature-card ul {
        text-align: left;
        padding-left: 12px;
    }
    
    .feature-card ul li {
        font-size: 0.875rem;
        margin-bottom: 20px;
        line-height: 1.3;
        color: #333;
    }
    
    /* FAQ SECTION MOBILE */
    .faq-section {
        padding: 35px 0;
        background: white;
    }
    
    .faq-section h2 {
        text-align: left;
        margin-bottom: 62px;
        font-size: 1.9rem;
        font-weight: 400;
        margin-left: 15px;
    }
    
    .faq-list {
        gap: 12px;
        margin-left: 15px;
        margin-top: 80px
    }
    
    .faq-head {
        padding: 8px 4px;
        font-size: 0.975rem;
        border-radius: 12px;
        background: var(--grey-light);
        color: #444;
        font-weight: 400;
        line-height: 2;
    }
    
    .faq-body {
        padding: 0 15px;
    }
    
    .faq-body p {
        font-size: 0.775rem;
        padding-bottom: 12px;
        color: #666;
        line-height: 1.4;
    }

    .arrows {
        stroke-width: 3;
    }

    
    /* FOOTER MOBILE */
    .main-footer {
        padding: 30px 0 15px;
        background: #FAFAFA;
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: left; 
        gap: 25px; 
    }
    
    .brand-info {
        text-align: center;
    }
    
    .footer-logo {
        text-align: left;
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        max-width: 100px;
    }
    
    .footer-desc {
        max-width: 300px;
        font-size: 0.875rem;
        line-height: 1.4;
        text-align: left;
        margin-bottom: 20px;
        color: #555;
    }
    
    .contact-details {
        text-align: left;
    }
    
    .contact-row {
        gap: 17px;
        margin-bottom: 12px;
    }
    
    .contact-row p {
        font-size: 0.875rem;
        color: #555;
        width: 170px;
    }
    
    .social-links { 
        justify-content: left; 
        margin-top: -48px;
        gap: 21px;
    }
    
    .social-circle {
        width: 30px;
        height: 30px;
        background: var(--pink);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-col h3 {
        font-size: 1.25rem;
        margin-bottom: 22px;
        margin-top: 0;
        color: #333;
        font-weight: 400;
    }
    
    .footer-col ul li {
        margin-bottom: 24px;
    }
    
    .footer-col ul li a {
        font-size: 0.875rem;
        color: #555;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        margin-left: 0;
        width: 253px;
        text-align: left;
        font-size: 0.875rem;
        color: #888;
    }
    
    /* --- RESPONSIVE DECORATIVE CIRCLES (Mobile) --- */

    .circle-white-lg, .circle-white-lg-2,
    .circle-bg-pink, .circle-bg-pink-2,
    .circle-faint-blue, .circle-faint-blue-2,
    .circle-what-you-get, .circle-what-you-get-2, .circle-what-you-get-3,
    .circle-faq{
        display: block !important; 
        position: absolute;
        border-width: 15px;
        z-index: 0;
    }

    /* Circle Positions */
    .circle-white-lg {
        width: 50vw; height: 50vw; 
        top: 10%; right: -20%;     
    }
    .circle-white-lg-2 {
        width: 30vw; height: 30vw;
        top: 60%; left: -10%;      
        right: auto; 
    }

    .circle-bg-pink {
        width: 25vw; height: 25vw;
        top: 55%; right: 89%;        
        border: 28px solid rgba(255,255,255,0.3);
        opacity: 15;
    }
    .circle-bg-pink-2 {
        width: 40vw; height: 40vw;
        top: auto; bottom: 45%; right: -19%; 
        border: 28px solid rgba(255, 255, 255, 0.3);
        opacity: 15;
    }

    .circle-faint-blue {
        width: 60vw; height: 60vw;
        top: 5%; right: -40%;      
        border: 28px solid rgb(255, 255, 255, 0.3);

    }
    .circle-faint-blue-2 {
        width: 10vw; height: 10vw;
        top: 69.1%; right: 16.8%;      
    }

    .circle-what-you-get {
        width: 45vw; height: 45vw;
        top: -3%; right: auto; left: -16%; 
        border: 17px solid rgba(255, 255, 255, 0.322);
    }
    .circle-what-you-get-2 {
        width: 34.4vw; height: 34.4vw;
        top: 1%; right: -22%;      
        border: 17px solid rgba(255, 255, 255);
    }
    .circle-what-you-get-3 {
        width: 30vw; height: 30vw;
        top: auto; bottom: 5%; right: 10%;    
    }

    .circle-faq {
        width: 45.067vw; height: 45.067vw;
        top: -3%; right: -25%;     
        border: 20px solid #F9F9F9;
    }
    .circle-faq-2 {
        display: none;
    }
    .circle-faq-3 {
        display: none; 
    }

    .footer-circle-left {
       display: none;
    }
    .footer-circle-right {
        width: 61.333vw; height: 61.333vw;
        top: auto; bottom: 30%; right: -35%;
        border: 20px solid #ffffff;
    }
}

/* Small Mobiles (320px-374px) */
@media (max-width: 374px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
        margin-top: 15px;
    }
    
    .hero-desc {
        font-size: 0.75rem;
        padding: 0 15px;
    }
    
    .countdown-box {
        width: 95%;
        padding: 15px 10px;
    }
    
    .number {
        font-size: 1.3rem;
    }
    
    .label-blue {
        font-size: 0.6rem;
    }
    
    .stats-grid {
        gap: 8px;
    }
    
    .stat-card {
        min-height: 100px;
        padding: 12px 6px;
    }
    
    .stat-card h3 {
        font-size: 1rem;
    }
    
    .stat-card p {
        font-size: 0.65rem;
    }
    
    .feature-card {
        padding: 15px 10px;
    }
    
    .faq-head {
        padding: 10px 12px;
        font-size: 0.75rem;
    }
}



/* IMÁGENES RESPONSIVE */
@media (max-width: 820px) {
    .image-content img,
    .team-img-wrapper img {
        width: 400px;
        height: auto;
        margin: 0 -30px;
    }
}

/* FOOTER MOBILE */
@media (max-width: 820px) {
    .footer-grid > div:nth-child(1),
    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3) {
        grid-column: 1;
        margin-left: 0;
        width: 100%;
    }
    
    .footer-bottom .social-links {
        order: 2;
        margin-bottom: 10px;
    }
    
    .footer-bottom .copyright {
        order: 1;
        margin-left: 0;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        align-items: left;
    }
    
}

/* --- TABLET VIEW (769px - 820px) --- */
@media (min-width: 769px) and (max-width: 820px) {

    /* 1. General Adjustments */
    .container {
        padding: 0 40px;
    }

    /* 2. Hero Section (Yellow Background Restore) */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-yellow-bg {
        display: block !important;
        width: 53%;
        top: 80px;
        right: 0;
        opacity: 1;
        z-index: 0;
    }

    /* Circles */
    .circle-white-lg {
        width: 289px;
        height: 289px;
        top: 10%;
        right: -5%;
        border: 28px solid rgba(255, 255, 255, 0.3);
    }

    .circle-white-lg-2 {
        width: 273px;
        height: 273px;
        top: 35%;
        left: -10%;
        right: auto;
        border: 28px solid rgba(255, 255, 255, 0.3);
    }

        .circle-white-lg-3 {
        width: 179px;
        height: 179px;
        left: 65%;
        border-radius: 50%;
        position: absolute; top: 480px;
        border: 28px solid rgba(255, 255, 255, 0.3);
    }

    .hero-content h1 {
        font-size: 2.85rem;
        width: 60vw;        
        text-align: left;
        margin: 0 400px 30px auto;
    }

    .hero-desc {
        width: 64%;
        margin: 0 auto 40px 0;
        font-size: 1rem;
    }

    .countdown-box {
        max-width: 390px;
        height: 223px;
        margin-bottom: 40px;
        padding: 40px 40px;
    }

    .number {
        font-size: 1.9rem;
        font-weight: 500;
        color: #222;
        line-height: 1;
        font-family: var(--font-body);
    }

    .btn-pink {
    background: var(--pink);
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
    font-family: "Montserrat";
    margin-top: 50px;
}

    /* 3. Stats (Grid) */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .stat-card {
        min-height: 180px; 
        padding: 20px 10px;
    }

    
    .btn-yellow-lg {
        width: 70%;
        max-width: 230px;
        padding: 10px 18px;
        font-size: 1rem;
        margin-top: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        background: #FFD600;
        color: #ffffff;
        border: none;
    }

    .stat-card h3 { font-size: 1.8rem; }

    /* 4. Blue Section */
    .blue-section .image-content img {
        max-width: 400px;
    }

    .circle-faint-blue-2 {
        width: 10vw;
        height: 10vw;
        top: 62.3%;
        right: 24.3%;
    }
    
    .text-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        font-weight: 400;
        width: 40%;
    }

    .text-content p {
        font-size: 1rem;
        font-weight: 500;
        width: 59%;
    }

    .text-content h2, .text-content p {
        margin-left: 20%;
        text-align: left;
    }
    
    .split-layout {
        gap: 50px;
    }

    /* 5. We Can Help */
    .we-can-help .img-mobile-view {
        width: 70%;
        margin: 40px auto;
        border-radius: 20px;
    }

    .we-can-help h2 {
        order: 1;
        text-align: left;
        font-size: 1.5rem;
        font-weight: 400;
        margin-left: 150px;
        margin-bottom: 64px;
    }
    
    .image-content img, .team-img-wrapper img {
        width: 900px;
        height: auto;
        margin: 0 -200px;
    }


    .we-can-help h2 { font-size: 2rem; }
    
    .text-1, .text-2, .text-3 {
        width: 63%;
        margin-left: 150px;
        text-align: left;
        font-size: 1.05rem;
    }

    /* 6. What You Get */

    .what-you-get h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        padding: 0 25px;
        line-height: 1.3;
        text-align: left;
        font-weight: 400;
        width: 380px;
        margin-left: 130px;
    }

    .title-blue, .title-pink {
        font-size: 1.5rem;
        margin-bottom: 12px;
        text-align: center;
        font-weight: 400;
    }

    .divider {
        margin-bottom: 12px;
        height: 1px;
        width: 236px;
        margin-left: 80px;
    }

    .feature-card ul {
        text-align: left;
        padding-left: 12px;
        width: 250px;
        margin-left: 65px;
        margin-top: 17px;
    }

    .cards-row {
        flex-direction: column; 
        align-items: center;
    }

    .feature-card {
        max-width: 500px; 
        width: 440px;
        height: 340px;
        padding: 44px 20px;
        margin-bottom: 30px;
    }

    /* 7. FAQ */
    .faq-list {
        margin-top: 10px;
        margin-left: 140px; 
        width: 439px;
    }
    .faq-section h2 {
        text-align: left;
        margin-left: 150px;
        font-size: 2rem;
        width: 300px;
    }

    .arrows {
        stroke-width: 2;
       
    }

        
    .faq-head {
        padding: 8px 4px;
        font-size: 1rem;
        border-radius: 12px;
        background: var(--grey-light);
        color: #444;
        font-weight: 400;
        line-height: 2;
    }

    

    /* 8. Footer */
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        text-align: left;
    }
    
    .footer-grid > div:nth-child(1) {
        grid-column: 1 / -1; 
        text-align: left;
        margin-bottom: 20px;
        margin-left: 40px;
    }
    
    .footer-circle-left {
        width: 230px;
        height: 230px;
        top: auto;
        bottom: 30%;
        right: -35%;
        border: 20px solid #ffffff;
    }

    .footer-circle-right {
        width: 366px;
        height: 366px;
        top: auto;
        bottom: -19%;
        right: -10%;
        border: 20px solid #ffffff;
    }


    .brand-info .footer-logo { text-align: left; }
    .footer-desc {
        max-width: 300px;
        font-size: 1rem;
        line-height: 1.4;
        text-align: left;
        margin-bottom: 20px;
        color: #555;
    }
    .contact-details { align-items: left; }

    .contact-row p {
        font-size: 1rem;
        color: #555;
        width: 180px;
    }

    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3) {
        grid-column: auto;
        width: auto;
        text-align: left;
        margin-left: 30px;
    }

    .footer-grid > div:nth-child(3) {
        grid-column: auto;
        width: auto;
        text-align: left;
        margin-right: 40%;      
    }
    

    .copyright {
        width: 100%;
        font-size: 1rem;
        text-align: right;
    }
    
    .social-links {
        justify-content: left;
        margin-left: 27px;
    }


}

/* --- INTERMEDIATE VIEW: LAPTOPS & TABLET LANDSCAPE (821px - 1199px) --- */

@media (min-width: 821px) and (max-width: 1199px) {
    
    /* 1. Fluid Container */
    .container {
        max-width: 100%; 
        padding: 0 40px; 
    }

    /* Navbar Adjustments */
    .nav-inner {
        padding: 0 15px;
        width: 100%;
    }

    .nav-left {
        gap: 15px; 
        flex: 1; 
    }

    .logo img {
        max-width: 100px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 0.7rem;
        font-weight: 600;
        white-space: nowrap;
    }

    /* 2. Hero */
    .hero-content h1 {
        font-size: 2.8rem; 
    }
    .hero-desc {
        font-size: 1rem;
        width: 100%; 
    }

    .countdown-box {
        min-width: auto;
        width: 100%;
        padding: 20px;
    }
    .number { font-size: 2.2rem; }
    .label-blue { font-size: 0.8rem; }

    /* 3. Stats */

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 50px;
    }

    /* 4. Blue Section */
    .split-layout {
        gap: 40px;
    }
    .text-content h2 { font-size: 1.8rem; }
    .image-content img {
        max-width: 350px;
    }

    /* 5. We Can Help */

    .img-desktop-view {
        max-width: 100%;
        height: auto;
    }
    .we-can-help h2 { font-size: 2.2rem; }

    /* 6. What You Get */
    .cards-row {
        gap: 30px;
    }
    .feature-card {
        min-width: auto;
        width: 48%;
    }

    /* 7. Footer */
    .footer-grid {
        gap: 20px;
    }
    .footer-col h3 { font-size: 1.3rem; }
}

/* Utility: Block scroll when menu is open */
body.no-scroll {
    overflow: hidden;
}


/* =========================================================
   UX IMPROVEMENTS
   ========================================================= */

/* --- 1. BACK TO TOP BUTTON --- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--pink);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 998;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

#back-to-top:hover {
    background-color: #c44da0;
    transform: translateY(-3px);
}

/* Class added via JS when scrolling */
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- 2. STICKY NAVBAR  --- */
.navbar.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding-top: 10px;
    padding-bottom: 10px;
    backdrop-filter: blur(10px); 
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* --- 3. PRELOADER --- */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

