:root {
    /* Color Palette */
    --color-bg-main: #FAEDF0;
    /* Soft pastel pink backgorund */
    --color-bg-light: #FFFFFF;
    /* Pure white for cards */
    --color-bg-dark: #3E2C41;
    /* Deep purple-grey for text/dark elements */

    --color-primary: #D48BA1;
    /* Rose gold primary */
    --color-primary-light: #E8A2B1;
    /* Lighter rose for gradients */
    --color-primary-dark: #A55D75;
    /* Darker primary for emphasis */

    --color-accent: #8E7EB4;
    /* Soft lavender for accents */
    --color-accent-light: #B7A8DB;

    --color-text-main: #4A3B42;
    /* Very dark maroon-grey for readability */
    --color-text-muted: #796670;
    /* Muted text */

    --color-success: #52B788;
    /* Soft green for checks */
    --color-warning: #FFB347;
    /* Warm yellow for badges */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    --gradient-surface: linear-gradient(145deg, #ffffff, #faf5f8);

    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(165, 93, 117, 0.05);
    --shadow-md: 0 10px 30px rgba(165, 93, 117, 0.1);
    --shadow-lg: 0 20px 40px rgba(74, 59, 66, 0.15);
    --shadow-glow: 0 0 20px rgba(212, 139, 161, 0.4);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.26, 1.55);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-main);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-bg-dark);
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: var(--space-xl) 0;
}

.has-wave-bottom {
    position: relative;
    padding-bottom: 9vw;
}

.has-wave-bottom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100vw;
    height: 7vw;
    min-height: 50px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
}

.wave-fill-light::after {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="%23FFFFFF" d="M0,60L48,55C96,50,192,40,288,40C384,40,480,50,576,60C672,70,768,80,864,80C960,80,1056,70,1152,55C1248,40,1344,20,1392,10L1440,0L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>');
}

.wave-fill-main::after {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="%23FAEDF0" d="M0,60L48,55C96,50,192,40,288,40C384,40,480,50,576,60C672,70,768,80,864,80C960,80,1056,70,1152,55C1248,40,1344,20,1392,10L1440,0L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>');
}

.wave-fill-primary::after {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="%23D48BA1" d="M0,60L48,55C96,50,192,40,288,40C384,40,480,50,576,60C672,70,768,80,864,80C960,80,1056,70,1152,55C1248,40,1344,20,1392,10L1440,0L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>');
}

.wave-fill-dark::after {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="%233E2C41" d="M0,60L48,55C96,50,192,40,288,40C384,40,480,50,576,60C672,70,768,80,864,80C960,80,1056,70,1152,55C1248,40,1344,20,1392,10L1440,0L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>');
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-gradient {
    background: var(--gradient-primary);
    color: white;
}

.bg-gradient h2,
.bg-gradient p,
.bg-gradient .highlight {
    color: white;
}

.highlight {
    color: var(--color-primary-dark);
    font-weight: 800;
}

.highlight-banner {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(165, 93, 117, 0.2);
    transform: translateY(-3px);
    margin: 6px 0.4rem;
    line-height: 1.2;
}


/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulseGlow 2.5s infinite;
    will-change: transform, box-shadow;
}

.pulse-slow {
    animation: pulseGlow 3.5s infinite;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.mockup-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes scrollContinuous {
    0% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
    }
}

.scrolling-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    margin: 2rem 0;
    -webkit-overflow-scrolling: touch;
}

.scrolling-content {
    display: flex;
    width: max-content;
    -webkit-animation: scrollContinuous 20s linear infinite;
    animation: scrollContinuous 20s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.scrolling-content img {
    height: 450px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .scrolling-content img {
        height: 300px;
        margin-right: 15px;
    }
}

/* =========================================
   BUTTONS
   ========================================= */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #128C7E, #075E54);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), 0 0 20px rgba(37, 211, 102, 0.5);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button .cta-text {
    font-size: 1.3rem;
    line-height: 1.2;
}

.cta-button .cta-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: none;
    opacity: 0.9;
    font-family: var(--font-body);
}

.cta-button i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.cta-button.outline {
    background: transparent;
    color: #128C7E;
    border: 2px solid #25D366;
    box-shadow: none;
    animation: none;
}

.cta-button.outline::before {
    display: none;
}

.cta-button.outline:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* =========================================
   TOP NAVBAR
   ========================================= */
.top-navbar {
    background-color: #E53935;
    /* Strong red */
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.top-navbar strong {
    font-weight: 900;
    text-decoration: underline;
    font-size: 1.1rem;
}

/* =========================================
   BLOCK 1: HERO
   ========================================= */
.block-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10px 0 60px 0;
    position: relative;
    overflow: hidden;
}

/* Background elements for wow effect */
.block-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 162, 177, 0.3) 0%, rgba(250, 237, 240, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.block-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 5px;
}


.block-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--color-bg-dark);
    font-weight: 700;
}

.block-hero h1 .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    color: var(--color-primary-dark);
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.block-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 14px;
    background-color: rgba(212, 139, 161, 0.25);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
}

.block-hero .hero-subtitle {
    font-size: 1.8rem;
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
}

.block-hero .cta-button {
    background: #1DB954 !important;
    width: 100%;
    max-width: 420px;
    padding: 1.5rem 2rem;
}

.block-hero .cta-button::before {
    display: none !important;
}

.pain-points {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.pain-points p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--color-text-main);
    background: linear-gradient(to right, #FFFFFF, #FFF7F9);
    padding: 14px 24px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(212, 139, 161, 0.08);
    border: 1px solid rgba(232, 162, 177, 0.3);
    border-left: 5px solid var(--color-primary);
    width: 100%;
    max-width: 650px;
    text-align: left;
    transition: var(--transition-smooth);
}

.pain-points p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 139, 161, 0.15);
    border-color: var(--color-primary-light);
}

.pain-points i {
    color: var(--color-primary-dark);
    font-size: 1.6rem;
    background: rgba(212, 139, 161, 0.15);
    padding: 6px;
    border-radius: 50%;
}

.security-badges {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.05rem;
    color: var(--color-bg-dark);
    font-weight: 700;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.security-badges i {
    color: #25D366;
    font-size: 1.4rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-main);
    max-width: 800px;
    margin: 1rem auto 3.5rem auto;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 237, 240, 0.85));
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(212, 139, 161, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    border-top: 3px solid var(--color-primary);
}

.hero-description::before {
    content: '\201C';
    /* Aspas duplas decorativas */
    font-family: var(--font-heading);
    position: absolute;
    top: -25px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-primary-light);
    opacity: 0.5;
    line-height: 1;
}

.hero-description strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.hero-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-mockup {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(165, 93, 117, 0.2));
}

/* =========================================
   BLOCK 2: DEMONSTRATION
   ========================================= */
.section-desc {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}



.demo-image img {
    width: 100%;
    border-radius: 12px;
}

.check-list {
    text-align: left;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list i {
    color: var(--color-primary);
    font-size: 1.8rem;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.mt-5 {
    margin-top: 5rem;
}

.hiw-title {
    font-size: 1.8rem;
    color: var(--color-bg-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hiw-card {
    background: white;
    border: 2px solid rgba(212, 139, 161, 0.2);
    border-radius: 20px;
    padding: 3rem 1.5rem 2rem 1.5rem;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 25px rgba(212, 139, 161, 0.1);
    width: 100%;
    max-width: 320px;
}

.hiw-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 139, 161, 0.3);
    border: 3px solid white;
}

.hiw-icon {
    font-size: 4.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.hiw-card h4 {
    color: var(--color-primary-dark);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.hiw-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.hiw-arrow {
    color: var(--color-primary-light);
    font-size: 2.5rem;
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .hiw-steps {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
    }

    .hiw-arrow {
        transform: rotate(0deg);
        margin-top: 5rem;
    }
}

/* =========================================
   BLOCK 3: BENEFITS
   ========================================= */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-cards .card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 139, 161, 0.1);
}

.benefit-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--color-bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-primary);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.benefit-cards .card:hover .card-icon {
    background: var(--color-primary);
    color: white;
}

.benefit-cards .card h3 {
    font-size: 1.15rem;
    white-space: normal;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
}

/* =========================================
   EMOTIONAL CONCLUSION (BLOCO 3)
   ========================================= */
.emotional-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0 auto;
    padding: 2.5rem 2rem;
}

.emotional-conclusion h4 {
    color: var(--color-primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: none;
    /* keep this one softer, no all-caps */
}

.emotional-conclusion p {
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    font-weight: 500;
}

.emotional-conclusion .final-impact {
    font-size: 1.3rem;
    color: var(--color-bg-dark);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   BLOCK 4: URGENCY
   ========================================= */
.block-benefits {
    padding-bottom: 1rem;
}

.block-urgency {
    padding-top: 1rem;
}

.urgency-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-subtext {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

.urgency-subtext strong {
    color: var(--color-primary-dark);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.countdown-timer .time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: 2px solid rgba(212, 139, 161, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 90px;
    box-shadow: 0 8px 20px rgba(212, 139, 161, 0.15);
}

.countdown-timer .time-box span:first-child {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
}

.countdown-timer .time-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 1px;
}

.countdown-timer .time-divider {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

/* =========================================
   BLOCK 5: AUDIENCE
   ========================================= */


/* =========================================
   BLOCK 6: DELIVERABLES
   ========================================= */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.deliv-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.deliv-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.deliv-item i {
    font-size: 2.5rem;
    color: var(--color-accent);
}

.deliv-item h4 {
    margin-bottom: 0.8rem;
    color: var(--color-bg-dark);
}

.dynam-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 139, 161, 0.2);
}

.dynam-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.dynam-features li i {
    font-size: 1rem;
    color: #1DB954;
    /* Green checkmark */
}

/* =========================================
   BLOCK 7: BONUSES
   ========================================= */

.bonus-highlight-pill {
    display: inline-block;
    background: #fff;
    color: var(--color-primary-dark);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    margin: 0 0.5rem;
    font-weight: 800;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
}

.bonus-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.bonus-tag {
    display: inline-block;
    background: var(--color-warning);
    color: var(--color-bg-dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bonus-card h4 {
    margin-bottom: 0.8rem;
}



.bonus-img {
    width: 100%;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

.bonus-price {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.strike-price {
    color: #ff4d4d;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}

.free-text {
    color: #ffd700;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   BLOCK 8: PRICING
   ========================================= */
.pricing-header p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.price-card.premium {
    border: 3px solid var(--color-primary);
    background: var(--gradient-surface);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 139, 161, 0.4);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-dark);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.price-card.premium .plan-name {
    margin-top: 1rem;
}

.plan-hero-img {
    width: 100%;
    margin: 1rem auto;
    max-width: 250px;
    display: block;
}

.plan-price {
    font-family: var(--font-heading);
    color: #1DB954;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.plan-price .value {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.plan-price .cents {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.plan-desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 139, 161, 0.15);
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.2), rgba(82, 183, 136, 0.4));
    color: var(--color-success);
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(82, 183, 136, 0.2);
    padding: 5px;
}

.plan-features li div {
    flex: 1;
    margin-top: 4px;
}

.plan-features li.disabled {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.plan-features li.disabled svg {
    color: #e57373;
}

.price-card .cta-button {
    width: 100%;
}

.upsell-hint {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.upsell-hint p {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.upsell-hint i {
    font-size: 1.8rem;
    color: var(--color-warning);
    display: inline-block;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* =========================================
   BLOCK 9: GUARANTEE
   ========================================= */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.gar-icon i {
    font-size: 8rem;
    color: var(--color-warning);
}

.gar-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* =========================================
   BLOCK 10: FAQ
   ========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-bg-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-primary-dark);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--color-bg-main);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: var(--color-text-main);
}

/* =========================================
   BLOCK 11: FOOTER
   ========================================= */
.block-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0;
}

.footer-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    font-size: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.5;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {

    .block-hero .container,
    .demo-grid,
    .audience-grid,
    .guarantee-box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .block-hero {
        text-align: center;
        padding-top: 25px;
    }

    .pain-points p {
        justify-content: center;
    }

    .security-badges {
        justify-content: center;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .price-card.premium {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem !important;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .block-hero .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .price-card {
        padding: 2rem 1.5rem;
    }

    .plan-price .value {
        font-size: 3.5rem;
    }
}

/* =========================================
   DOWNSELL MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 44, 65, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 2.5rem 2.5rem;
    position: relative;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-primary-light);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--color-text-main);
}

.modal-header h3 {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.modal-body p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.modal-price-highlight {
    background: var(--gradient-primary);
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0 1.5rem 0;
    box-shadow: 0 5px 15px rgba(212, 139, 161, 0.4);
    letter-spacing: 0.5px;
}

.modal-body .cta-button {
    width: 100%;
}

.modal-body .cta-button .cta-text {
    font-size: 1.15rem;
}

.decline-offer {
    margin-top: 1.8rem;
}

.decline-offer a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.decline-offer a:hover {
    color: var(--color-text-main);
}

/* Modal Responsivo para Mobile */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem 1.2rem;
        max-height: 85vh;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 1.8rem;
    }

    .modal-header h3 {
        font-size: 1.6rem;
    }

    .modal-header p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .modal-body p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .modal-price-highlight {
        font-size: 1.1rem;
        padding: 6px 15px;
        margin: 0.5rem 0 1rem 0;
    }

    .modal-body .cta-button {
        padding: 1rem;
    }

    .modal-body .cta-button .cta-text {
        font-size: 1rem;
    }

    .decline-offer {
        margin-top: 1.2rem;
    }

    .decline-offer a {
        font-size: 0.85rem;
    }
}

/* =========================================
   PERFORMANCE: Layout Containment
   ========================================= */
.card,
.bonus-card,
.deliv-item,
.faq-item,
.price-card {
    contain: layout style paint;
}

/* =========================================
   ACCESSIBILITY: Reduced Motion
   ========================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scrolling-content {
        animation: none;
    }
}

/* =========================================
   SVG ICON SIZING
   ========================================= */
svg[viewBox="0 0 256 256"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

.pain-points svg {
    font-size: 1.6rem;
}

.check-list svg {
    font-size: 1.8rem;
}

.card-icon svg {
    font-size: 2rem;
}

.hiw-icon svg {
    font-size: 4.5rem;
}

.hiw-arrow svg {
    font-size: 2.5rem;
}

.deliv-item>svg {
    font-size: 2.5rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.gar-icon svg {
    font-size: 8rem;
}

.security-badges svg {
    font-size: 1.4rem;
}

.cta-button svg {
    font-size: 1.5rem;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.plan-features li svg {
    font-size: 0.9rem;
}

.dynam-features li svg {
    font-size: 1rem;
    color: #1DB954;
}

.upsell-hint svg {
    font-size: 1.8rem;
}