/* ========================================
   HOJE TEM — Landing Page Styles
   Visual: Premium Minimal Dark
   Accent: #39FF14 (Verde-Lima Elétrico)
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(57, 255, 20, 0.25);
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #39FF14;
    --accent-dim: rgba(57, 255, 20, 0.15);
    --accent-glow: rgba(57, 255, 20, 0.3);
    --danger: #ff4444;
    --font-system: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 0 30px rgba(57, 255, 20, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 960px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-system);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.85;
}

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Base --- */
.section {
    padding: 80px 0;
    position: relative;
}

.section--alt {
    background: var(--bg-secondary);
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-title .accent {
    color: var(--accent);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 700px;
}

/* --- Fade-in animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   1) HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    border: 1px solid var(--border-accent);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--accent);
}

.hero h1 {
    font-size: clamp(1.8rem, 5.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 .accent {
    color: var(--accent);
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-price {
    margin-bottom: 28px;
}

.hero-price .old-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.hero-price .new-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-price .price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-micro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.hero-micro span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-micro svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
    flex-shrink: 0;
}

.hero-seals {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.hero-seals span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-seals svg {
    width: 14px;
    height: 14px;
    fill: var(--text-muted);
}

/* --- Hero Image --- */
.hero-image {
    margin: 32px auto 36px;
    max-width: 300px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(57, 255, 20, 0.08);
    display: block;
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 240px;
    }
}

/* --- CTA Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-system);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

.btn-secondary:hover {
    background: var(--accent-dim);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* ========================================
   2) PROBLEMA / NIGHTMARE
   ======================================== */
.nightmare-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 700px;
}

.nightmare-text p {
    margin-bottom: 16px;
}

.mirror-list {
    list-style: none;
    margin: 32px 0;
}

.mirror-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;
    color: var(--text-primary);
}

.mirror-list li:last-child {
    border-bottom: none;
}

.mirror-list svg {
    width: 20px;
    height: 20px;
    fill: var(--danger);
    flex-shrink: 0;
    margin-top: 2px;
}

.nightmare-transition {
    margin-top: 36px;
    padding: 24px;
    background: var(--bg-card);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-style: italic;
}

/* ========================================
   3) DREAM / VISÃO DE SOLUÇÃO
   ======================================== */
.dream-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 20px;
}

.dream-text p {
    margin-bottom: 16px;
}

.dream-vision {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 32px;
    margin: 32px 0;
    position: relative;
}

.dream-vision::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.dream-vision p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-primary);
    font-style: italic;
}

/* ========================================
   4) OFERTA / APRESENTAÇÃO
   ======================================== */
.offer-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
}

/* Product Mockup */
.product-mockup {
    width: 260px;
    height: 340px;
    margin: 0 auto 48px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg), var(--shadow-accent);
    overflow: hidden;
}

.product-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.product-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, rgba(57, 255, 20, 0.08) 0%, transparent 60%);
}

.mockup-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.mockup-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.mockup-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

.mockup-line {
    width: 40%;
    height: 1px;
    background: var(--border-accent);
    margin: 16px 0;
}

.mockup-footer-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
    border: 1px solid var(--border-accent);
}

.step-icon {
    width: 32px;
    height: 32px;
    fill: var(--accent);
    margin: 0 auto 12px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   5) SECRET SAUCE / DIFERENCIAL
   ======================================== */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 600px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}

.compare-card--bad {
    opacity: 0.7;
}

.compare-card--good {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
}

.compare-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare-card h3 svg {
    width: 20px;
    height: 20px;
}

.compare-card ul {
    list-style: none;
}

.compare-card ul li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.compare-card ul li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.compare-card--bad ul li svg {
    fill: var(--danger);
}

.compare-card--good ul li svg {
    fill: var(--accent);
}

/* ========================================
   6) BENEFÍCIOS / FAB
   ======================================== */
.benefits-list {
    list-style: none;
    max-width: 700px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list strong {
    color: var(--text-primary);
}

.benefits-list span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.receive-box {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 40px;
}

.receive-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.receive-box ul {
    list-style: none;
}

.receive-box ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.receive-box ul li svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* ========================================
   7) PROVA SOCIAL
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-info {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.social-stat {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.social-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.social-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   8) OFERTA / PLANOS
   ======================================== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plan-card.highlighted {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent), 0 0 60px rgba(57, 255, 20, 0.05);
}

.plan-card.pulse-highlight {
    animation: cardPulse 1s ease;
}

@keyframes cardPulse {

    0%,
    100% {
        box-shadow: var(--shadow-accent);
    }

    50% {
        box-shadow: 0 0 50px rgba(57, 255, 20, 0.35);
    }
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 8px;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-price .old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-price .current {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-top: 4px;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
}

.plan-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
}

.plan-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-card .btn {
    width: 100%;
}

.bonus-tag {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 6px;
}

/* Comparison Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.compare-table th,
.compare-table td {
    padding: 12px 16px;
    text-align: center;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-subtle);
}

.compare-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    color: var(--text-secondary);
}

.compare-table td:nth-child(3) {
    color: var(--accent);
    font-weight: 600;
}

.compare-table svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.check-yes {
    fill: var(--accent);
}

.check-no {
    fill: var(--text-muted);
}

/* ========================================
   9) GARANTIA
   ======================================== */
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 36px;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 56px;
    height: 56px;
    fill: var(--accent);
}

.guarantee-box h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.guarantee-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ========================================
   10) FAQ
   ======================================== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-family: var(--font-system);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    fill: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ========================================
   11) URGÊNCIA
   ======================================== */
.urgency-box {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.urgency-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.urgency-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.urgency-bonus {
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 20px;
}

.urgency-bonus p {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.urgency-bonus span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* ========================================
   12) AUTORIDADE
   ======================================== */
.authority-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.pillar-card {
    text-align: center;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--border-accent);
}

.pillar-card svg {
    width: 36px;
    height: 36px;
    fill: var(--accent);
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-seals {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-seal svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
}

.trust-seal span {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   13) CHAMADA FINAL
   ======================================== */
.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 12px;
    line-height: 1.3;
}

.final-cta p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   14) RODAPÉ
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-mission {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-style: italic;
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.7;
}

/* ========================================
   MODAL CHECKOUT
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.modal h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-right: 30px;
}

.modal-field {
    margin-bottom: 20px;
}

.modal-field label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-field input,
.modal-field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-system);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.modal-field input:focus,
.modal-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.modal-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.modal-field select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.modal .btn {
    width: 100%;
    margin-top: 8px;
}

.modal-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.5;
}

.modal-demo {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 12px;
    opacity: 0.6;
    font-style: italic;
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 80px 20px 100px;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        padding: 28px;
    }

    .modal {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-micro {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .hero-seals {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }
}