/* ====================================
   BRASIL SEM FILTRO — LANDING PAGE
   Dark, Aggressive, Patriotic Design
   ==================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    
    /* Brand Colors */
    --green-br: #009c3b;
    --green-dark: #006b28;
    --green-light: #00c853;
    --yellow-br: #ffdf00;
    --yellow-dark: #e6c800;
    --blue-br: #002776;
    --red-accent: #dc2626;
    --red-dark: #991b1b;
    --red-glow: rgba(220, 38, 38, 0.4);
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

section, footer, nav {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.95);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon { font-size: 24px; }

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--green-br);
}

.nav-cta {
    background: var(--green-br);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition-base);
}

.nav-cta:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: url('hero-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.85) 40%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 32px;
    letter-spacing: 1px;
    animation: badge-pulse 2s infinite;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: dot-pulse 1.5s infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.2); }
    50% { box-shadow: 0 0 20px 4px rgba(220, 38, 38, 0.1); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 28px;
    text-transform: uppercase;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.text-gradient {
    background: linear-gradient(135deg, var(--yellow-br) 0%, var(--gold) 50%, var(--yellow-br) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red { color: var(--red-accent); }
.text-green { color: var(--green-light); }

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-ctas {
    margin-bottom: 60px;
}

.hero-micro {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-br), var(--green-dark));
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 156, 59, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-glow {
    animation: glow-pulse 2.5s infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 156, 59, 0.4); }
    50% { box-shadow: 0 0 30px 8px rgba(0, 156, 59, 0.25); }
}

.btn-white {
    background: #fff;
    color: var(--bg-primary);
}

.btn-white:hover {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--yellow-br);
    letter-spacing: 1px;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--yellow-br);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: float-down 2s infinite;
}

.hero-scroll span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes float-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION COMMONS ===== */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 4px;
    background: rgba(220, 38, 38, 0.08);
}

.tag-green {
    color: var(--green-light);
    border-color: rgba(0, 200, 83, 0.3);
    background: rgba(0, 200, 83, 0.08);
}

.tag-gold {
    color: var(--gold-light);
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.08);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* ===== PAIN SECTION ===== */
.pain {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
    text-align: left;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pain-card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.08);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pain-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pain-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 70px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.divider-text {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--red-accent);
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

/* ===== SOLUTION SECTION ===== */
.solution {
    padding: var(--section-padding);
    background: var(--bg-primary);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.feature-card {
    display: flex;
    gap: 20px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(0, 200, 83, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 156, 59, 0.08);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(0, 200, 83, 0.2);
    line-height: 1;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    text-align: center;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    position: relative;
    transition: var(--transition-base);
}

.step:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 200, 83, 0.2);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--green-br);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 16px;
    margin-top: 8px;
}

.step h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    font-size: 28px;
    color: var(--text-muted);
    align-self: center;
    padding-top: 24px;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: var(--section-padding);
    background: var(--bg-primary);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
    text-align: left;
}

.testimonial-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(251, 191, 36, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold-light);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-br), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

.proof-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 156, 59, 0.08), rgba(255, 223, 0, 0.05));
    border: 1px solid rgba(0, 156, 59, 0.15);
    border-radius: 16px;
    flex-wrap: wrap;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--yellow-br);
    display: block;
    letter-spacing: 1px;
}

.proof-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== COMPARISON ===== */
.comparison {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    text-align: center;
}

.comparison-table {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
}

.comparison-col {
    flex: 1;
    padding: 40px 32px;
    text-align: left;
}

.comparison-them {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 20px 0 0 20px;
}

.comparison-us {
    background: rgba(0, 156, 59, 0.08);
    border: 1px solid rgba(0, 156, 59, 0.2);
    border-radius: 0 20px 20px 0;
}

.comparison-header {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.x-mark {
    color: var(--red-accent);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.check-mark {
    color: var(--green-light);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-muted);
    padding: 0 8px;
    background: var(--bg-secondary);
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--red-dark), #7f1d1d);
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.08) 20px,
        rgba(0,0,0,0.08) 40px
    );
}

.urgency-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
}

.urgency-icon {
    font-size: 40px;
    animation: urgency-shake 2s infinite;
}

@keyframes urgency-shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-5deg); }
    20%, 40% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
}

.urgency-text h3 {
    font-size: 20px;
    font-weight: 800;
}

.urgency-text p {
    font-size: 14px;
    opacity: 0.9;
}

.urgency-text strong {
    color: var(--yellow-br);
}

/* ===== OFFER SECTION ===== */
.offer {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(0, 156, 59, 0.08) 0%, var(--bg-primary) 70%);
    text-align: center;
}

.offer-title {
    margin-bottom: 50px;
}

.offer-card {
    max-width: 580px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid rgba(0, 156, 59, 0.2);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.offer-ribbon {
    background: linear-gradient(135deg, var(--green-br), var(--green-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 0;
    text-align: center;
}

.offer-header {
    padding: 32px 40px 0;
}

.offer-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.offer-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

.offer-includes {
    padding: 32px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.offer-check {
    color: var(--green-light);
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.offer-price {
    padding: 32px 40px;
    background: rgba(0, 156, 59, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-original {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.price-original s {
    color: var(--red-accent);
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    animation: price-glow 2s infinite;
}

@keyframes price-glow {
    0%, 100% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 30px rgba(0, 200, 83, 0.3); }
}

.price-currency {
    font-size: 28px;
    font-weight: 800;
    color: var(--green-light);
    margin-top: 8px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--green-light);
    line-height: 1;
}

.price-cents {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--green-light);
    margin-top: 8px;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 4px;
}

.price-daily {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.btn-offer {
    margin: 32px 40px;
    width: calc(100% - 80px);
    justify-content: center;
    padding: 20px;
    font-size: 18px;
    border-radius: 14px;
}

.offer-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 40px;
    background: rgba(251, 191, 36, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.guarantee-icon { font-size: 32px; }

.guarantee-text strong {
    display: block;
    font-size: 15px;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.guarantee-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.offer-trust-badges {
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    text-align: center;
}

.faq-list {
    max-width: 700px;
    margin: 50px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-base);
}

.faq-question:hover { color: var(--green-light); }

.faq-icon {
    font-size: 24px;
    color: var(--green-br);
    font-weight: 300;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.faq-answer p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 120px 0;
    background: radial-gradient(ellipse at center top, rgba(220, 38, 38, 0.08) 0%, var(--bg-primary) 70%);
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.choice {
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-base);
}

.choice-bad {
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.choice-good {
    background: rgba(0, 156, 59, 0.08);
    border: 1px solid rgba(0, 156, 59, 0.2);
}

.choice-good:hover {
    border-color: rgba(0, 200, 83, 0.4);
    box-shadow: 0 20px 60px rgba(0, 156, 59, 0.1);
    transform: translateY(-4px);
}

.choice-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.choice h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.choice p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-final {
    font-size: 18px;
    padding: 22px 48px;
}

.final-guarantee {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 500px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 156, 59, 0.2);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.btn-sticky {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    border-radius: 12px;
}

/* ===== EXIT POPUP ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-base);
}

.popup-overlay.active .popup-card {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.popup-close:hover { color: var(--text-primary); }

.popup-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.popup-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.popup-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.popup-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.popup-dismiss {
    display: inline-block;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.popup-dismiss:hover { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* --- Tablet: 769px - 1024px --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .pain-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-col {
        padding: 28px 20px;
    }
}

/* --- Mobile: max 768px --- */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Hide desktop line breaks - let text wrap naturally */
    .hero-title br,
    .section-title br,
    h2 br {
        display: none;
    }

    /* ---- NAVBAR ---- */
    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .logo-icon { font-size: 20px; }
    .logo-text { font-size: 16px; letter-spacing: 1px; }

    .nav-cta {
        padding: 8px 14px;
        font-size: 11px;
        letter-spacing: 0.5px;
        border-radius: 6px;
    }

    /* ---- HERO ---- */
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 52px);
        letter-spacing: 1px;
        margin-bottom: 20px;
        line-height: 1;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 0 auto 28px;
        padding: 0 8px;
        line-height: 1.6;
    }

    .hero-ctas {
        margin-bottom: 40px;
    }

    .hero-ctas .btn-primary {
        padding: 16px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .hero-scroll { display: none; }

    /* ---- SECTIONS COMMON ---- */
    .section-tag {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 5px 12px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 42px);
        letter-spacing: 1px;
        margin-bottom: 16px;
        word-break: break-word;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    /* ---- PAIN ---- */
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .pain-card {
        padding: 24px 20px;
    }

    .pain-icon { font-size: 28px; margin-bottom: 12px; }
    .pain-card h3 { font-size: 18px; }
    .pain-card p { font-size: 14px; }

    .pain-divider {
        margin-top: 40px;
        gap: 16px;
    }

    .divider-text {
        font-size: 36px;
        letter-spacing: 6px;
    }

    /* ---- SOLUTION ---- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
        gap: 16px;
    }

    .feature-number {
        font-size: 36px;
    }

    .feature-content h3 { font-size: 16px; }
    .feature-content p { font-size: 14px; }

    /* ---- HOW IT WORKS ---- */
    .step-arrow { display: none; }

    .steps-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        margin-top: 32px;
    }

    .step {
        min-width: unset;
        max-width: 100%;
        padding: 28px 20px;
    }

    .step h3 { font-size: 16px; }
    .step p { font-size: 13px; }

    /* ---- SOCIAL PROOF ---- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text { font-size: 14px; }

    .proof-banner {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
        margin-top: 40px;
    }

    .proof-number { font-size: 30px; }
    .proof-label { font-size: 11px; }

    .proof-divider {
        width: 50px;
        height: 1px;
    }

    /* ---- COMPARISON ---- */
    .comparison-table {
        flex-direction: column;
        border-radius: 16px;
        margin-top: 32px;
    }

    .comparison-col {
        padding: 24px 20px;
    }

    .comparison-them { border-radius: 16px 16px 0 0; }
    .comparison-us { border-radius: 0 0 16px 16px; }

    .comparison-vs {
        padding: 12px;
        font-size: 18px;
    }

    .comparison-header { font-size: 16px; }
    .comparison-col li { font-size: 13px; }

    /* ---- URGENCY BANNER ---- */
    .urgency-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .urgency-icon { font-size: 32px; }
    .urgency-text h3 { font-size: 17px; }
    .urgency-text p { font-size: 13px; }

    .urgency-content .btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
    }

    /* ---- OFFER ---- */
    .offer {
        padding: 80px 0;
    }

    .offer-title {
        margin-bottom: 32px;
    }

    .offer-card {
        margin: 0 auto;
        border-radius: 20px;
        max-width: 100%;
    }

    .offer-ribbon {
        font-size: 11px;
        padding: 8px 0;
    }

    .offer-header {
        padding: 24px 20px 0;
    }

    .offer-header h3 {
        font-size: 26px;
    }

    .offer-header p {
        font-size: 14px;
    }

    .offer-includes {
        padding: 24px 20px;
        gap: 14px;
    }

    .offer-item {
        font-size: 14px;
    }

    .offer-price {
        padding: 24px 20px;
    }

    .price-original { font-size: 14px; }
    .price-currency { font-size: 22px; margin-top: 6px; }
    .price-value { font-size: 64px; }
    .price-cents { font-size: 28px; margin-top: 6px; }
    .price-period { font-size: 14px; }
    .price-daily { font-size: 12px; }

    .btn-offer {
        margin: 20px;
        width: calc(100% - 40px);
        padding: 18px;
        font-size: 15px;
        border-radius: 12px;
    }

    .offer-guarantee {
        padding: 20px;
        gap: 12px;
    }

    .guarantee-icon { font-size: 28px; }
    .guarantee-text strong { font-size: 14px; }
    .guarantee-text p { font-size: 12px; }

    .offer-trust-badges {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
        font-size: 11px;
    }

    /* ---- FAQ ---- */
    .faq-list {
        margin-top: 32px;
    }

    .faq-question {
        padding: 20px 0;
        font-size: 14px;
    }

    .faq-question span:first-child {
        padding-right: 12px;
    }

    .faq-icon { font-size: 20px; }

    .faq-answer p {
        font-size: 14px;
        padding-bottom: 20px;
    }

    /* ---- FINAL CTA ---- */
    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: clamp(28px, 7vw, 42px);
        margin-bottom: 32px;
    }

    .choices {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .choice {
        padding: 24px 20px;
    }

    .choice-icon { font-size: 36px; margin-bottom: 12px; }
    .choice h3 { font-size: 18px; }
    .choice p { font-size: 13px; }

    .btn-final {
        font-size: 15px;
        padding: 18px 32px;
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .final-guarantee { font-size: 12px; }

    /* ---- FOOTER ---- */
    .footer { padding: 32px 0; }
    .footer-copy { font-size: 12px; }
    .footer-legal { font-size: 10px; }
    .footer .logo-text { font-size: 18px; }

    /* ---- STICKY CTA ---- */
    .sticky-cta {
        padding: 10px 16px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }

    .btn-sticky {
        padding: 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* ---- POPUP ---- */
    .popup-card {
        padding: 32px 24px;
        border-radius: 20px;
        margin: 16px;
    }

    .popup-icon { font-size: 36px; }
    .popup-card h3 { font-size: 24px; }
    .popup-card p { font-size: 14px; margin-bottom: 20px; }

    .popup-card .btn-primary {
        padding: 16px;
        font-size: 14px;
    }

    /* ---- BUTTONS GLOBAL ---- */
    .btn-primary {
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 10px;
    }
}

/* --- Small phones: max 480px --- */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero-title {
        font-size: clamp(28px, 8.5vw, 44px);
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .section-title {
        font-size: clamp(24px, 6.5vw, 36px);
    }

    .stat-number { font-size: 30px; }
    .stat-plus { font-size: 22px; }

    .price-value { font-size: 54px; }
    .price-currency { font-size: 18px; }
    .price-cents { font-size: 24px; }

    .offer-header h3 { font-size: 22px; }

    .divider-text { font-size: 28px; letter-spacing: 4px; }

    .comparison-header { font-size: 14px; }
    .comparison-col li { font-size: 12px; gap: 8px; }

    .popup-card h3 { font-size: 20px; }
}

/* --- Desktop only: sticky CTA hidden --- */
@media (min-width: 769px) {
    .sticky-cta { display: none !important; }
}

/* ===== PARTICLES ===== */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--yellow-br);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s infinite linear;
}

@keyframes particle-float {
    0% { 
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { 
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(0, 156, 59, 0.3);
    color: #fff;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}
