/* ==============================================
   DESIGN SYSTEM & VARIABLES
   ============================================== */
:root {
    /* Color Palette */
    --bg-dark: #07090E;
    --bg-alt: #0B0E14;
    --bg-card: #111421;
    --bg-card-hover: #1A1F30;

    --primary-color: #00E676;
    /* Vivid green */
    --primary-hover: #00C853;

    --accent-gold: #FFD700;
    --accent-red: #FF5252;

    --text-main: #FFFFFF;
    --text-muted: #94A3B8;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Clash Display', 'Inter', var(--font-sans);

    /* Spacing & Layout */
    --container-width: 1000px;
    --section-padding: 5rem 1.5rem;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==============================================
   CSS RESET
   ============================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==============================================
   LAYOUT & UTILITIES
   ============================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.section {
    padding: var(--section-padding);
}

.bg-alt {
    background-color: var(--bg-alt);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.text-green {
    color: var(--primary-color);
}

.text-red {
    color: var(--accent-red);
}

/* Diagonal Strikethrough para Preços Antigos */
del {
    text-decoration: none !important;
    position: relative;
    display: inline-block;
}

del::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 0.12em; /* Proporcional ao tamanho da fonte */
    background-color: var(--accent-red);
    transform: translateY(-50%) rotate(-15deg);
    border-radius: 2px;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.pt-5 {
    padding-top: 4rem;
}

.pb-5 {
    padding-bottom: 4rem;
}

.text-sm {
    font-size: 0.85rem;
}

.text-gradient {
    background: linear-gradient(135deg, white 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.sub-headline .highlight {
    font-size: 1.15em;
    display: inline-block;
}

.highlight-red {
    color: var(--accent-red);
    font-weight: 700;
}

.main-headline .highlight-gold {
    color: var(--accent-gold) !important;
    font-weight: 700;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gap-large {
    gap: 3rem;
}

.align-center {
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, rgba(7, 9, 14, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

.glow-bg.top-left {
    top: -200px;
    left: -200px;
}

.glow-bg.center-right {
    top: 40%;
    right: -300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(7, 9, 14, 0) 70%);
}

/* ==============================================
   TYPOGRAPHY
   ============================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ==============================================
   BUTTONS (CTAs)
   ============================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: #000;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
}

@media (max-width: 768px) {
    .btn-primary {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Sentiment section layout */
.sentiment-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}



@media (max-width: 768px) {
    .sentiment-wrapper {
        flex-direction: column;
        text-align: center;
    }


}


.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.6), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.pulse-effect {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero-section {
    position: relative;
    padding: 6rem 1.5rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 215, 0, 0.2);
    width: max-content;
}

.main-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    max-width: 900px;
    letter-spacing: -1px;
}

.sub-headline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-main);
    max-width: 850px;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* VSL Wrapper */
.vsl-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-normal);
    border: 2px solid var(--glass-border);
}

.vsl-wrapper:hover {
    transform: scale(1.02);
    border-color: rgba(0, 230, 118, 0.3);
}

.vsl-skeleton {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #1A1F30, #111421);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.vsl-skeleton .play-btn {
    font-size: 5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.4));
    transition: transform var(--transition-fast);
}

.vsl-wrapper:hover .play-btn {
    transform: scale(1.1);
}

.vsl-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.trust-indicators i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ==============================================
   PROBLEM SECTION
   ============================================== */
.pain-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-item {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--accent-red);
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateX(10px);
    background: rgba(255, 82, 82, 0.05);
}

.pain-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pain-item p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==============================================
   QUALIFICATION SECTION
   ============================================== */
.qual-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.qual-card .card-icon {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.qual-card.accept {
    border-top: 4px solid var(--primary-color);
}

.qual-card.accept .card-icon {
    background: var(--bg-alt);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.qual-card.reject {
    border-top: 4px solid var(--accent-red);
}

.qual-card.reject .card-icon {
    background: var(--bg-alt);
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

ul.check-list,
ul.cross-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

ul.check-list li,
ul.cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
}

ul.check-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

ul.cross-list li::before {
    content: '✗';
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==============================================
   OFFER & BONUSES SECTION
   ============================================== */
.product-highlight {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-color: rgba(0, 230, 118, 0.3);
    background: rgba(0, 230, 118, 0.05);
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .product-highlight {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.product-info h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .product-info h3 {
        justify-content: flex-start;
    }
}

.product-info p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0;
}

.product-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .product-value {
        margin-top: 0;
    }
}

.bonus-grid {
    gap: 1.5rem;
}

.bonus-card {
    padding: 2.5rem 1.5rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-ribbon {
    position: absolute;
    top: 0;
    left: 1.5rem;
    background: var(--glass-border);
    padding: 0.25rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.bonus-ribbon.gold {
    background: var(--accent-gold);
    color: #000;
}

.bonus-card.border-gold {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

.bonus-card h4 {
    font-size: 1.25rem;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.bonus-value {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.bonus-value del {
    color: var(--accent-red);
    margin-right: 0.5rem;
}

.bonus-value span {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-box {
    margin-top: 4rem;
    padding: 3rem 2rem;
    border-color: var(--primary-color);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.1);
}

.price-strike span {
    font-size: 1.2rem;
    color: var(--text-muted);
    display: inline-block;
    background: var(--bg-alt);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.price-final {
    font-size: 1.5rem;
    margin: 2rem 0;
    font-family: var(--font-display);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

/* ==============================================
   GUARANTEE SECTION
   ============================================== */
.glow-container {
    position: relative;
    overflow: hidden;
    border-color: rgba(0, 230, 118, 0.2);
    padding: 3rem 2rem;
}

.glow-container.border-gold-glow {
    border-color: rgba(255, 215, 0, 0.3);
}

.glow-container .gold-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(7, 9, 14, 0) 70%);
}

.css-golden-seal {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 15px 30px rgba(255, 215, 0, 0.2));
}

.seal-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFDF73, #D4AF37, #B8860B, #FFDF73);
    background-size: 200% 200%;
    clip-path: polygon(50% 0%, 61% 11%, 76% 9%, 83% 23%, 98% 30%, 95% 45%, 100% 60%, 88% 71%, 86% 87%, 71% 89%, 60% 100%, 43% 94%, 28% 100%, 18% 87%, 3% 83%, 6% 67%, 0% 50%, 12% 38%, 5% 22%, 21% 15%, 27% 0%, 41% 6%);
    animation: slow-spin 25s linear infinite, gradient-shift 3s ease infinite;
}

.seal-core {
    position: relative;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, #FFF5A3, #D4AF37 60%, #996515);
    border-radius: 50%;
    border: 3px solid #FFF8D6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 2;
    color: #4A3500;
    font-family: var(--font-sans);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
}

.seal-days {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
    font-family: var(--font-display);
}

.seal-text-small {
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    margin-top: 2px;
    line-height: 1.2;
}

@keyframes slow-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ==============================================
   FAQ SECTION
   ============================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--bg-dark);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer-cta {
    padding: 5rem 1.5rem;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

/* ==============================================
   ANIMATIONS (Scroll)
   ============================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: var(--delay, 0s);
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeUp 0.6s forwards cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
   IMAGE INJECTIONS AND RICH UI OVERRIDES
   ============================================== */
.img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.img-wrapper:hover img {
    transform: scale(1.03);
}

.pain-image-container {
    aspect-ratio: 4 / 3;
}

.relief-image-container {
    aspect-ratio: 4 / 5;
}

.author-image-container {
    aspect-ratio: 4 / 5;
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--bg-alt);
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.badge-green {
    color: var(--primary-color);
}

.highlight-checks li strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

.highlight-checks li .text-muted {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .hide-mobile {
        display: none !important;
    }

    .product-mockup img {
        max-width: 200px;
        margin: 0 auto;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }

    .flex-row-desktop {
        display: flex;
        align-items: center;
    }
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.payment-icons img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-icons img:hover {
    opacity: 1;
}

/* ==============================================
   MOBILE OPTIMIZATIONS (FIX PARA PRIMEIRA TELA)
   ============================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 2.5rem 1rem 1.5rem !important;
        min-height: auto !important;
        justify-content: flex-start !important;
    }

    .badge-accent {
        margin-bottom: 1rem !important;
        font-size: 0.70rem !important;
        padding: 0.3rem 0.6rem !important;
    }

    .main-headline {
        font-size: 1.45rem !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 1.5rem !important;
    }

    .sub-headline {
        font-size: 0.95rem !important;
        margin-top: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-tagline {
        font-size: 0.9rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .hero-mockup {
        margin-bottom: 1.5rem !important;
    }

    /* Melhorar conexão visual na seção de objeções */
    .objections-section .grid-2 {
        gap: 0.5rem !important;
        /* Reduz espaço entre imagem e texto */
    }

    .objections-text h2 {
        margin-top: 0.5rem !important;
        font-size: 1.6rem !important;
    }

    .objections-text p.mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .highlight-checks li {
        margin-bottom: 0.75rem !important;
    }

    .highlight-checks li i {
        font-size: 1.25rem !important;
        margin-top: 0.1rem !important;
    }
}

/* ==============================
   NEW MOBILE UI ADJUSTMENTS
   ============================== */

/* CTA button under video – smaller for mobile */
.btn-primary.cta-mobile-sm {
    font-size: 1rem !important;
    padding: 0.9rem 1.5rem !important;
    max-width: 260px !important;
    margin: 0 auto;
}

/* Sentiment headline image */
.sentiment-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.sentiment-wrapper img.sentiment-img {
    max-width: 80px;
    height: auto;
}

/* Compact pricing box */
.price-compact .price-amount {
    font-size: 2.5rem !important;
    line-height: 1.1;
}

.price-compact .price-final {
    margin: 1.5rem 0;
    font-size: 1.25rem;
}

.price-compact .btn-primary {
    font-size: 0.95rem !important;
    padding: 0.7rem 1.1rem !important;
    max-width: 240px;
}

/* Final CTA styling */
.final-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: 12px;
}

.final-cta h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.final-cta p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.final-cta .final-cta-btn {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    max-width: 260px;
    margin: 0 auto;
}

.highlight-warning {
    color: var(--accent-red, #ff5252);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    display: block;
}

/* ==============================================
   7. PROVA SOCIAL (DEPOIMENTOS)
   ============================================== */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

/* Testimonial Marquee Animation */
.marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 1rem 0 2rem;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll-marquee 40s linear infinite;
    gap: 1.5rem;
    padding-left: 1.5rem;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track .testimonial-card {
    width: 350px;
    flex-shrink: 0;
    margin-bottom: 0; /* Override grid margin */
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}


.stars i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.bg-gradient-1 { background: linear-gradient(135deg, #FF5252, #FF1744); }
.bg-gradient-2 { background: linear-gradient(135deg, #00E676, #00C853); }
.bg-gradient-3 { background: linear-gradient(135deg, #2979FF, #2962FF); }

/* ==============================================
   8. SMART DELAY
   ============================================== */
.smart-delay {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease, visibility 0s linear 1s;
}

.smart-delay.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease, visibility 0s linear 0s;
}