/*
 * BBConmigo Landing - Styles
 *
 * 1. Reset & Base
 * 2. Typography (sections)
 * 3. Layout (container, sections)
 * 4. Buttons (consolidated)
 * 5. Header
 * 6. Hero
 * 7. Testimonials & Carousel
 * 8. Purple Box
 * 9. What Is Section
 * 10. How It Works
 * 11. Pricing
 * 12. Final CTA
 * 13. Footer
 * 14. Modal
 * 15. Menu Dropdown
 * 16. Utility (icon sizing, step order)
 * 17. Media Queries (consolidated)
 */


/* ==========================================================
   1. RESET & BASE
   ========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: white;
    overflow-x: hidden;
}


/* ==========================================================
   2. TYPOGRAPHY (section titles/subtitles)
   ========================================================== */

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.05;
    color: #212121;
    text-align: center;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #2A2A2A;
    text-align: center;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   3. LAYOUT (container, sections)
   ========================================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 120px 0;
}

.section-white {
    background: white;
}

.section-gray {
    background: #F9FAFC;
}

.section-divider {
    border: none;
    height: 1px;
    background: #EBEFF1;
    margin: 80px 0 0 0;
}


/* ==========================================================
   4. BUTTONS (consolidated)
   ========================================================== */

.btn-header {
    padding: 8px 16px;
    border-radius: 16px;
    border: 1px solid #DADCE0;
    background: white;
    color: #212121;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-header:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.btn-primary {
    padding: 16px;
    background: linear-gradient(0deg, #695BE8 0%, #695BE8 100%);
    border-radius: 24px;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 12px 32px rgba(105, 91, 232, 0.3);
}

.menu-toggle {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}


/* ==========================================================
   5. HEADER
   ========================================================== */

.header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 32px);
}

.logo {
    display: flex;
    align-items: center;
    height: 28px;
}

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

.header-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 48px;
    border: 1px solid #DDDDDD;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    padding: 16px 40px 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: auto;
    width: auto;
}

.header-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.menu-icon {
    width: 32px;
    height: 32px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


/* ==========================================================
   6. HERO
   ========================================================== */

.hero-new {
    position: relative;
    width: 100%;
    height: 648px;
    overflow: hidden;
}

/* Background Images */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-desktop {
    display: none;
    background-image: url('../assets/images/hero-background-desktop.webp');
}

.hero-bg-mobile {
    display: block;
    background-image: url('../assets/images/hero-background-mobile.webp');
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
}

/* Mobile Layout - Centrado dinámico */
.hero-main-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 116px;
    width: calc(100% - 32px);
    max-width: 343px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.05;
    color: #6B459B;
    margin: 0;
    text-align: center;
}

.hero-main-subtitle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 250px;
    width: calc(100% - 32px);
    max-width: 343px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.05;
    color: #212121;
    margin: 0;
    text-align: center;
}

.hero-main-description {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 374px;
    width: calc(100% - 32px);
    max-width: 343px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #2A2A2A;
    margin: 0;
    text-align: center;
}

.hero-btn-primary {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 430px;
    width: calc(100% - 32px);
    max-width: 343px;
    height: 48px;
    background: linear-gradient(0deg, #695BE8 0%, #695BE8 100%);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn-primary:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0px 12px 32px rgba(105, 91, 232, 0.3);
}

.hero-disclaimer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 486px;
    width: calc(100% - 32px);
    max-width: 343px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #2A2A2A;
    margin: 0;
    text-align: center;
}

.hero-btn-secondary {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 530px;
    width: calc(100% - 32px);
    max-width: 343px;
    height: 48px;
    background: white;
    border-radius: 40px;
    border: 1px solid #DADCE0;
    color: #212121;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn-secondary:hover {
    background: #f5f5f5;
}

.hero-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 602px;
    width: calc(100% - 32px);
    max-width: 343px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    color: #545454;
    margin: 0;
    text-align: center;
}


/* ==========================================================
   7. TESTIMONIALS & CAROUSEL
   ========================================================== */

.testimonials-track {
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 32px;
    margin-bottom: 32px;
}

.testimonials {
    display: flex;
    gap: 16px;
    animation: scrollTestimonials 45s linear infinite;
    width: max-content;
    padding-left: 16px;
}

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

.testimonials::-webkit-scrollbar {
    display: none;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 292px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E9EAEB;
    padding: 16px;
    display: flex;
    gap: 12px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #695BE8 0%, #8B7BE8 100%);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content {
    flex: 1;
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 4px;
    font-family: 'Instrument Sans', sans-serif;
}

.testimonial-text {
    font-size: 14px;
    color: #545454;
    line-height: 1;
}


/* ==========================================================
   8. PURPLE BOX
   ========================================================== */

.purple-box {
    position: relative;
    background: linear-gradient(0deg, #6B459B 0%, #6B459B 100%);
    border-radius: 0 16px 16px 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    margin: 80px auto 0;
    padding: 40px;
    max-width: 738px;
}

.purple-box-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.purple-box-text {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 0;
}

.purple-box-subtitle {
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #F4EDE6;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    width: 100%;
    min-height: 120px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.feature-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.05;
    font-weight: 500;
}


/* ==========================================================
   9. WHAT IS SECTION
   ========================================================== */

.what-is-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.05;
    color: #212121;
    margin: 0 0 24px 0;
    max-width: 357px;
}

.what-is-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #2A2A2A;
    margin: 0 0 40px 0;
    max-width: 357px;
}

/* Red bars */
.what-is-red-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.what-is-red-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.what-is-red-line {
    width: 4px;
    min-height: 56px;
    background: #EE1818;
    flex-shrink: 0;
}

.what-is-red-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.05;
    color: #4F4F4F;
    margin: 0;
}

/* Question text */
.what-is-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #2A2A2A;
    margin: 0 0 32px 0;
    max-width: 542px;
}

/* Bottom container: bullets + purple box */
.what-is-bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Bullets */
.what-is-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.what-is-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.what-is-bullet-icon {
    width: 32px;
    height: 32px;
    background: #EE1818;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.what-is-bullet-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.what-is-bullet-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.05;
    color: #4F4F4F;
    margin: 0;
}

/* Purple box (right side) */
.what-is-purple-box {
    background: linear-gradient(0deg, #6B459B 0%, #6B459B 100%);
    padding: 16px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: white;
}


/* ==========================================================
   10. HOW IT WORKS
   ========================================================== */

.how-it-works {
    background: #F9FAFC;
    padding: 80px 0;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 64px;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 343px;
}

.step-badge {
    order: 1;
    width: 29px;
    height: 29px;
    background: linear-gradient(0deg, #695BE8 0%, #695BE8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.step-title {
    order: 2;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2A2A2A;
    text-align: center;
    line-height: 1.05;
}

.step-image {
    order: 3;
    width: 220px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
}

.step-description {
    order: 4;
    font-size: 16px;
    color: #2A2A2A;
    text-align: center;
    font-weight: 500;
    line-height: 1;
}

.step-subdescription {
    order: 5;
    font-size: 14px;
    color: #2A2A2A;
    text-align: center;
    font-weight: 500;
    line-height: 1;
}


/* ==========================================================
   11. PRICING
   ========================================================== */

.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-card {
    max-width: 343px;
    margin: 48px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
}

.pricing-header {
    background: #F6F6F6;
    padding: 16px;
    border: 1px solid #EAE6E2;
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.pricing-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.pricing-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.pricing-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2A2A2A;
    margin-bottom: 8px;
    line-height: 1.05;
}

.pricing-subtitle {
    font-size: 16px;
    color: #4F4F4F;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #695BE8;
    line-height: 1.05;
}

.price-period {
    font-size: 16px;
    color: #4F4F4F;
    font-weight: 500;
    line-height: 1;
}

.pricing-body {
    background: white;
    padding: 16px;
    border: 1px solid #EAE6E2;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pricing-feature-text {
    flex: 1;
    font-size: 16px;
    color: #4F4F4F;
    font-weight: 500;
    line-height: 1.05;
}

.pricing-divider {
    height: 1px;
    background: #EAE6E2;
    margin: 16px 0;
}

.pricing-cta {
    width: 100%;
    padding: 16px;
    background: linear-gradient(0deg, #695BE8 0%, #695BE8 100%);
    border-radius: 40px;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(105, 91, 232, 0.3);
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: #545454;
    font-weight: 500;
    line-height: 1;
}


/* ==========================================================
   12. FINAL CTA
   ========================================================== */

.final-cta {
    background: rgba(105, 91, 232, 0.05);
    padding: 80px 0;
}


/* ==========================================================
   13. FOOTER
   ========================================================== */

.footer {
    background: #322047;
    padding: 64px 0 0 0;
}

.footer-inner {
    width: 1088px;
    margin-left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 80px;
    align-items: flex-start;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 1088px;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 24px 0;
}

.footer-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    margin: 0;
}


/* ==========================================================
   14. MODAL
   ========================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #e0e0e0;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #2A2A2A;
    text-align: left;
    margin-bottom: 16px;
    line-height: 1.05;
}

.modal-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #212121;
    text-align: left;
    margin-bottom: 16px;
    line-height: 1;
}

.modal-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #2A2A2A;
    text-align: left;
    margin-bottom: 24px;
    line-height: 1;
}

.store-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: center;
}

.store-icon {
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
}

.store-icon:hover {
    transform: scale(1.1);
}

.store-icon img {
    width: auto;
    height: 60px;
}


/* ==========================================================
   15. MENU DROPDOWN
   ========================================================== */

.menu-dropdown {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
}

.menu-dropdown.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.menu-header {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-logo img {
    height: 32px;
    width: auto;
}

.menu-close {
    width: 48px;
    height: 48px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}

.menu-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.menu-list {
    list-style: none;
    padding: 0 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 80%;
    max-width: 300px;
}

.menu-dropdown.active .menu-list li:nth-child(1) { animation-delay: 0.1s; }
.menu-dropdown.active .menu-list li:nth-child(2) { animation-delay: 0.15s; }
.menu-dropdown.active .menu-list li:nth-child(3) { animation-delay: 0.2s; }
.menu-dropdown.active .menu-list li:nth-child(4) { animation-delay: 0.25s; }
.menu-dropdown.active .menu-list li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-list a {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.menu-list a:hover {
    color: #695BE8;
    border-bottom-color: #695BE8;
    transform: translateX(10px);
}

/* Menu Footer */
.menu-footer {
    position: absolute;
    left: 24px;
    right: 24px;
}

.menu-social {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.menu-social a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #545454;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-social a:hover {
    color: #695BE8;
}


/* ==========================================================
   16. COOKIE BANNER
   ========================================================== */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 480px;
    background: #ffffff;
    border: 1px solid #EBEFF1;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.10);
    padding: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #545454;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.cookie-close:hover {
    color: #212121;
}

.cookie-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    color: #212121;
    margin: 0;
    padding-right: 16px;
}

.cookie-subtext {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: #4F4F4F;
    margin: 0;
}

.cookie-btn {
    align-self: flex-start;
    margin-top: 8px;
    background: #695BE8;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border: none;
    border-radius: 24px;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-btn:hover {
    background: #5749cc;
}

/* ==========================================================
   17. FAQ SECTION
   ========================================================== */

.faq {
    padding: 120px 0;
}

.faq-wrapper {
    width: 1088px;
    margin-left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    width: 360px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
}

.faq-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: #212121;
    margin: 0 0 16px 0;
}

.faq-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #2A2A2A;
    margin: 0;
}

.faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #EBEFF1;
}

.faq-item:first-child {
    border-top: 1px solid #EBEFF1;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #212121;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #695BE8;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: #4F4F4F;
    padding: 0 0 24px 0;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ==========================================================
   17. MEDIA QUERIES (consolidated)
   ========================================================== */

/* ---------- Mobile only (max-width: 767px) ---------- */

@media (max-width: 767px) {

    /* Hero content: +16px separation from header */
    .hero-main-title { top: 132px; }
    .hero-main-subtitle { top: 266px; }
    .hero-main-description { top: 390px; }
    .hero-btn-primary { top: 446px; }
    .hero-disclaimer { top: 502px; }
    .hero-btn-secondary { top: 546px; }
    .hero-badge { top: 618px; }

    /* Section spacing */
    .section,
    .what-is-section,
    .how-it-works,
    .pricing,
    .final-cta {
        padding: 64px 0;
    }

    .what-is-section {
        padding-top: 80px;
    }

    /* FAQ mobile */
    .faq {
        padding: 64px 0;
    }

    .faq-wrapper {
        width: 100%;
        flex-direction: column;
        gap: 32px;
        padding: 0 16px;
        transform: none;
        margin-left: 0;
    }

    .faq-left {
        width: 100%;
        position: static;
    }

    /* Footer mobile */
    .footer-inner {
        width: 100%;
        flex-direction: column;
        gap: 40px;
        padding: 0 16px 48px;
        transform: none;
        margin-left: 0;
    }

    .footer-bottom {
        width: 100%;
        transform: none;
        margin-left: 0;
        padding: 24px 16px;
    }

    /* Purple Box mobile */
    .purple-box {
        padding: 16px;
        padding-bottom: 0;
        margin: 40px 16px 0;
        overflow: visible;
        background: transparent;
    box-shadow: none;
    border: none;
    }

  .purple-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 84%;
    background: #6B459B;
    border-radius: 0 16px 16px 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    z-index: 0;
}
  

    .purple-box-left {
        margin-bottom: 16px;
        position: relative;
    z-index: 1;
    }

    .purple-box-text {
        font-size: 20px;
        line-height: 1.2;
    }

    .purple-box-subtitle {
        font-size: 18px;
        line-height: 1.2;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: -80px;
        position: relative;
        z-index: 1;
    }

    .feature-card {
        border-radius: 0 16px 16px 16px;
        min-height: auto;
    }

    .what-is-wrapper {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .what-is-title {
        margin: 0 0 16px 0;
    }

    .what-is-subtitle {
        margin: 0 0 24px 0;
    }

    .what-is-red-bars {
        gap: 8px;
        margin-bottom: 24px;
    }

    .what-is-question {
        margin: 0 0 24px 0;
    }

    .what-is-bullets {
        gap: 8px;
    }

    .what-is-bottom {
        gap: 24px;
    }

    /* Menu mobile - fullscreen (Figma: 375x648) */
    .menu-dropdown {
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
    }

    .menu-header {
        top: 40px;
        left: 40px;
        right: auto;
    }

    .menu-logo img {
        height: 36px;
    }

    .menu-close {
        position: fixed;
        top: 40px;
        right: 40px;
        width: 32px;
        height: 32px;
        background: #000;
        color: #fff;
        font-size: 20px;
        border-radius: 50%;
    }

    .menu-list {
        position: absolute;
        top: 184px;
        left: 72px;
        width: 224px;
        max-width: none;
        padding: 0;
        align-items: flex-start;
        text-align: left;
        gap: 32px;
    }

    .menu-list a {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 600;
        line-height: 1;
        padding: 0;
        color: #2A2A2A;
    }

    .menu-footer {
        position: absolute;
        bottom: auto;
        top: 591px;
        left: 0;
        right: 0;
    }

    .menu-social {
        justify-content: center;
        gap: 143px;
    }

    .menu-social a {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #545454;
        text-align: center;
    }
}


/* ---------- Tablet & Desktop (min-width: 768px) ---------- */

@media (min-width: 768px) {

    /* Header */
    .header {
        top: 40px;
        max-width: 1088px;
    }

    .header-content {
        height: 80px;
    }

    .logo img {
        height: 32px;
    }
    
    /* Hero */
    .hero-new {
        height: 690px;
    }

    .hero-bg-desktop {
        display: block;
    }

    .hero-bg-mobile {
        display: none;
    }

    .hero-main-title {
        left: 176px;
        transform: none;
        top: 177px;
        width: 455px;
        max-width: none;
        text-align: left;
    }

    .hero-main-subtitle {
        left: 176px;
        transform: none;
        top: 277px;
        width: 447px;
        max-width: none;
        text-align: left;
    }

    .hero-main-description {
        left: 176px;
        transform: none;
        top: 374px;
        width: 343px;
        max-width: none;
        text-align: left;
    }

    .hero-btn-primary {
        left: 175px;
        transform: none;
        top: 438px;
        width: 343px;
        max-width: none;
    }

    .hero-btn-primary:hover {
        transform: translateY(-2px);
    }

    .hero-disclaimer {
        left: 175px;
        transform: none;
        top: 494px;
        width: 343px;
        max-width: none;
    }

    .hero-btn-secondary {
        left: 175px;
        transform: none;
        top: 546px;
        width: 343px;
        max-width: none;
    }

    .hero-badge {
        left: 187px;
        transform: none;
        top: 610px;
        width: auto;
        max-width: none;
    }

    /* Purple Box */
    .purple-box {
        height: 256px;
        padding: 40px;
    }

    .purple-box-left {
        position: absolute;
        left: 40px;
        top: 40px;
        max-width: 280px;
    }

    .purple-box-text {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .purple-box-subtitle {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
    }

    .features-grid {
        position: absolute;
        right: 40px;
        top: 40px;
        display: grid;
        grid-template-columns: repeat(2, 176px);
        gap: 24px;
        margin-top: 0;
    }

    .feature-card {
        padding: 16px;
        border-radius: 0 16px 16px 16px;
        box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    }

    /* What Is Section */
    .what-is-section {
        padding: 80px 0;
    }

    .what-is-wrapper {
        position: relative;
        width: 1088px;
        margin-left: 50%;
        transform: translateX(-50%);
        min-height: 480px;
    }

    .what-is-title {
        position: absolute;
        left: 0;
        top: 0;
        max-width: 360px;
    }

    .what-is-subtitle {
        position: absolute;
        left: 0;
        top: 78px;
        max-width: 360px;
    }

    .what-is-red-bars {
        position: absolute;
        left: 0;
        top: 198px;
        flex-direction: row;
        gap: 24px;
        margin-bottom: 40px;
    }

    .what-is-question {
        position: absolute;
        left: 0;
        top: 286px;
        max-width: 542px;
    }

    .what-is-bullets {
        position: absolute;
        left: 0;
        top: 354px;
        flex: 0 0 auto;
        gap: 16px;
        max-width: 343px;
    }

    .what-is-purple-box {
        position: absolute;
        right: 0;
        top: 354px;
        width: 384px;
    }

    /* Menu Desktop - dropdown flotante */
    .menu-dropdown {
        position: fixed;
        top: 40px;
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        width: 1088px;
        height: 256px;
        background: #ffffff;
        border-radius: 32px;
        border: 1px solid #E9EAEB;
        box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
        right: auto;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.25s ease, transform 0.25s ease;
        backdrop-filter: none;
    }

    .menu-dropdown.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .menu-header {
        top: 48px;
        left: 48px;
        right: 48px;
    }

    .menu-close {
        background: #000;
        color: #fff;
    }

    .menu-list {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        width: auto;
        max-width: none;
        padding: 0;
    }

    .menu-list li {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .menu-list a {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.05;
        padding: 0;
        color: #212121;
        border-bottom: none;
        white-space: nowrap;
    }

    .menu-list a:hover {
        color: #695BE8;
        transform: none;
    }

    .menu-footer {
        position: absolute;
        bottom: 48px;
        left: 48px;
        right: auto;
    }

    .menu-social {
        justify-content: flex-start;
        gap: 16px;
    }

    .menu-cta {
        position: absolute;
        top: 24px;
        right: 48px;
    }
}


/* ---------- Large Desktop (min-width: 1024px) ---------- */

@media (min-width: 1024px) {

    .steps-container {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }
}

/* ---------- bg motion ---------- */

@keyframes heroBgMove {
    0% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-12px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

.hero-bg {
    background-position: center;
    animation: heroBgMove 32s linear infinite;
}