/* ═══════════════════════════════════════════════════
   Projeto RU-4S — Landing Page (HTML Puro)
   styles.css
   ═══════════════════════════════════════════════════ */

/* Google Fonts loaded via <link> tag in HTML for better performance */

@font-face {
    font-family: 'Visby CF';
    src: url('fonts/VisbyCF-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Visby CF';
    src: url('fonts/VisbyCF-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    font: inherit;
    color: inherit;
    background: none;
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
}

/* ── Variables ─────────────────────────────────── */
:root {
    --bg: #ffffff;
    --fg: #1a1a1a;
    --fg-70: rgba(26, 26, 26, .7);
    --fg-60: rgba(26, 26, 26, .6);
    --fg-50: rgba(26, 26, 26, .5);
    --fg-40: rgba(26, 26, 26, .4);
    --primary: #2196F3;
    --primary-hover: #1976D2;
    --red: #ef4444;
    --red-600: #dc2626;
    --orange: #f97316;
    --emerald: #10b981;
    --amber: #f59e0b;
    --cream: #F5F3EF;
    --dark: #0a0a0a;
    --dark2: #101010;
    --dark3: #111111;
    --border: #e5e5e5;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Utility fonts ─────────────────────────────── */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-visby {
    font-family: 'Visby CF', 'Inter', sans-serif;
    font-weight: 400;
}

.font-visby-bold {
    font-family: 'Visby CF', 'Inter', sans-serif;
    font-weight: 700;
}

/* ── Layout ────────────────────────────────────── */
.container {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* ── Section spacing ───────────────────────────── */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .4);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    transition: transform .4s var(--ease-out-expo);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.header-inner {
    padding: 0 1.5rem;
}

.header-desktop {
    display: none;
}

.header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
}

.header-logo-mobile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo-mobile img {
    height: 1rem;
    width: auto;
}

.header-logo-desktop {
    height: 1.5rem;
    width: auto;
}

.nav-link {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #374151;
    transition: color .3s;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-cta-header {
    background: var(--primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .625rem 1.25rem;
    border-radius: .25rem;
    transition: all .3s;
    display: inline-block;
}

.btn-cta-header:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.mobile-menu {
    background: #fff;
    border-top: 1px solid var(--border);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .5s;
}

.mobile-menu.is-open {
    max-height: 24rem;
    opacity: 1;
}

.mobile-menu-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--fg-70);
    transition: color .3s;
    text-align: left;
}

.btn-cta-mobile {
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    padding: .75rem 1.25rem;
    border-radius: .25rem;
    transition: all .3s;
    text-align: center;
}

.hamburger {
    color: #374151;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spacer {
    width: 2rem;
}

/* ══════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.hero-bg {
    display: none;
}

.hero-intro {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 4rem;
}

.hero-content {
    padding: 1rem 1rem 1rem;
}

.hero-text-wrap {
    max-width: 36rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-desc {
    font-size: .875rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: all .7s var(--ease-out-expo);
}

.hero-desc.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-vsl {
    position: relative;
    z-index: 10;
    padding: 0 1rem 4rem;
}

.hero-vsl-inner {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}

.vsl-embed {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, .1);
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(2rem);
    transition: all .7s var(--ease-out-expo);
}

.vsl-embed.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vsl-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.btn-cta-hero {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 1rem 2rem;
    border-radius: 9999px;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: all .7s var(--ease-out-expo);
    animation: cta-pulse 2.5s ease-in-out infinite;
    animation-delay: 2s;
}

.btn-cta-hero.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-cta-hero:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(33, 150, 243, .2);
}

.hero-note {
    font-size: .75rem;
    color: #9ca3af;
    letter-spacing: .025em;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity .7s;
}

.hero-note.is-visible {
    opacity: 1;
}

/* ══════════════════════════════════════════════════
   WORD-BY-WORD REVEAL ANIMATION
   ══════════════════════════════════════════════════ */
.word-reveal-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.word-reveal-line.left {
    justify-content: flex-start;
}

.word-reveal-word {
    display: inline-block;
}

[data-word-reveal] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

[data-word-reveal] .word-reveal-word {
    margin-right: .25em;
}

.word-reveal-inner {
    display: inline-block;
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(80%) rotateX(-60deg);
    transform-origin: center bottom;
}

.word-reveal-inner.is-visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* ══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}

.anim-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-fade-in {
    opacity: 0;
    transition: opacity .8s var(--ease-out-expo);
}

.anim-fade-in.is-visible {
    opacity: 1;
}

.anim-slide-left {
    opacity: 0;
    transform: translateX(-2rem);
    transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}

.anim-slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-slide-right {
    opacity: 0;
    transform: translateX(1.5rem);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}

.anim-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-scale-in {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}

.anim-scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

.anim-slide-left-sm {
    opacity: 0;
    transform: translateX(-1rem);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}

.anim-slide-left-sm.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════════════════
   DEMONSTRAÇÃO (WhatWeDo)
   ══════════════════════════════════════════════════ */
.demo-section {
    background: var(--dark2);
}

.demo-gradient-mobile {
    display: block;
    height: 3rem;
    background: linear-gradient(to bottom, #fff, var(--dark2));
}

.demo-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 2rem;
}

.demo-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 2rem;
}

.demo-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

.demo-image-outer {
    width: 100%;
    overflow: hidden;
    padding: 0 1.5rem;
    border-radius: 1rem;
    transition: all 1.4s var(--ease-out-expo);
}

.demo-image-outer.is-visible {
    padding: 0;
    border-radius: 0;
}

.demo-image-ratio {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: inherit;
}

.demo-image-ratio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 1.8s var(--ease-out-expo);
    transition-delay: .6s;
}

.demo-image-outer.is-visible .demo-image-ratio img {
    transform: scale(1);
}

/* ══════════════════════════════════════════════════
   MÉTODO (WhyBase) — Accordion
   ══════════════════════════════════════════════════ */
.metodo-section {
    background: var(--cream);
}

.metodo-step {
    border-top: 1px solid #d1d5db;
}

.metodo-step-btn {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.metodo-step-num {
    font-size: 1.5rem;
    font-weight: 300;
    color: #9ca3af;
    transition: color .3s;
}

.metodo-step-num.active {
    color: var(--orange);
}

.metodo-step-title {
    font-size: 1.125rem;
    font-weight: 400;
    color: #4b5563;
    transition: color .3s;
}

.metodo-step-title.active {
    color: #111827;
}

.metodo-step-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .5s ease-out, opacity .3s ease;
}

.metodo-step-content.is-open {
    opacity: 1;
}

.metodo-step-content ul {
    padding-left: 3.5rem;
    list-style: none;
}

.metodo-step-content li {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: .5rem;
}

.metodo-note {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.7;
    margin-top: 2rem;
    font-style: italic;
}

.metodo-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: .5rem;
}

.metodo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* ══════════════════════════════════════════════════
   PARA QUEM É (TwoModels)
   ══════════════════════════════════════════════════ */
.para-quem-section {
    background: #fff;
}

.profile-bullet {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.profile-bullet svg {
    color: #10b981;
    margin-top: .125rem;
    flex-shrink: 0;
}

.profile-bullet p {
    font-size: .875rem;
    color: var(--fg-70);
    line-height: 1.7;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.audience-item p {
    font-size: .875rem;
    color: rgba(26, 26, 26, .8);
    line-height: 1.7;
}

.audience-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--fg-60);
    margin-bottom: 1rem;
}

.para-quem-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: .5rem;
}

.para-quem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════
   ENTREGA (BaseCamp)
   ══════════════════════════════════════════════════ */
.entrega-section {
    background: var(--cream);
}

.entrega-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.entrega-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: .75rem;
}

.entrega-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.entrega-image:hover img {
    transform: scale(1.05);
}

.entrega-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--fg-60);
    margin-bottom: 1rem;
}

.entrega-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.entrega-card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    color: #111827;
}

.entrega-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.entrega-feature {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .875rem;
    color: #4b5563;
    line-height: 1.7;
}

.entrega-feature svg {
    flex-shrink: 0;
}

.entrega-extras {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.entrega-extra-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: #fff;
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, .04);
}

.entrega-extra-item svg {
    flex-shrink: 0;
    margin-top: .125rem;
}

.entrega-extra-item h4 {
    font-size: .875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: .125rem;
}

.entrega-extra-item p {
    font-size: .75rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   OFERTA (UpgradeModel)
   ══════════════════════════════════════════════════ */
.oferta-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.oferta-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 800px;
    opacity: .15;
    background: radial-gradient(ellipse at top, rgba(239, 68, 68, .2), transparent);
    filter: blur(80px);
    pointer-events: none;
}

.oferta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 72rem;
    margin: 0 auto;
    align-items: center;
}

.oferta-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 1rem;
}

.oferta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.oferta-image:hover img {
    transform: scale(1.05);
}

.oferta-card {
    position: relative;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
}

.oferta-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .375rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.oferta-includes-label {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.oferta-include-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    margin-bottom: .875rem;
}

.oferta-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oferta-check svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

.oferta-include-item span {
    font-size: .9375rem;
    color: #374151;
}

.oferta-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 2rem;
}

.oferta-price-old {
    font-size: .875rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: .5rem;
}

.oferta-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .5rem;
}

.oferta-price .installment {
    font-size: 1.5rem;
    font-weight: 400;
    color: #6b7280;
    margin-right: .5rem;
}

.oferta-price-cash {
    font-size: .75rem;
    color: #9ca3af;
}

.btn-oferta {
    display: inline-block;
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 1.25rem 2.5rem;
    border-radius: .75rem;
    transition: all .3s;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    text-align: center;
    animation: cta-pulse 2.5s ease-in-out infinite;
    animation-delay: 1s;
}

.btn-oferta:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(33, 150, 243, .3);
}

.oferta-note {
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #9ca3af;
}

/* ══════════════════════════════════════════════════
   BÔNUS (InteriorGallery)
   ══════════════════════════════════════════════════ */
.bonus-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.bonus-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: .75rem;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.bonus-image:hover img {
    transform: scale(1.05);
}

.bonus-tag {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--fg-60);
    margin-bottom: 1rem;
}

.bonus-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.bonus-desc {
    font-size: 1rem;
    color: var(--fg-70);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bonus-bullet {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.bonus-bullet-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-bullet p {
    font-size: .9375rem;
    font-weight: 500;
    color: rgba(10, 10, 10, .8);
    line-height: 1.4;
    padding-top: .5rem;
}

.bonus-important {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 1rem;
    padding: 1.5rem;
}

.bonus-important-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--red-600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.bonus-important h3 {
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--dark);
    margin-bottom: .5rem;
}

.bonus-important p {
    font-size: .875rem;
    color: rgba(10, 10, 10, .6);
    line-height: 1.7;
    margin-bottom: .75rem;
}

.bonus-important p:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════
   GARANTIA (SleepUnderStars)
   ══════════════════════════════════════════════════ */
.garantia-section {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.garantia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.garantia-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .04);
}

.garantia-shield-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #ecfdf5;
    margin-bottom: 1.5rem;
}

.garantia-card-days {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: #111827;
    letter-spacing: -.05em;
}

.garantia-card-days-label {
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #6b7280;
    margin-top: .5rem;
}

.garantia-card-divider {
    width: 3rem;
    height: 2px;
    background: #e5e7eb;
    margin: 1.5rem auto;
}

.garantia-card-features {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.garantia-card-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.garantia-card-feature span {
    font-size: .875rem;
    color: #374151;
}

.garantia-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--fg-60);
    margin-bottom: 1.5rem;
}

.garantia-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #111827;
    margin-bottom: 1.5rem;
}

.garantia-text {
    font-size: 1.0625rem;
    color: var(--fg-70);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-garantia {
    display: inline-block;
    background: var(--dark);
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: .75rem;
    transition: all .3s;
    margin-bottom: 1rem;
}

.btn-garantia:hover {
    background: #1a1a1a;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.garantia-subnote {
    font-size: .6875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ══════════════════════════════════════════════════
   PROVA VISUAL (Partners)
   ══════════════════════════════════════════════════ */
.prova-section {
    background: #fff;
}

.prova-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--fg-60);
    margin-bottom: 1.5rem;
}

.prova-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 2rem;
}

.prova-desc {
    font-size: 1rem;
    color: var(--fg-70);
    max-width: 42rem;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.prova-note {
    font-size: .875rem;
    color: var(--fg-50);
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: .5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ══════════════════════════════════════════════════
   SOBRE MIM (About)
   ══════════════════════════════════════════════════ */
.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.about-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--fg-60);
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 2rem;
}

.about-bio p {
    font-size: 1rem;
    color: rgba(26, 26, 26, .8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

.highlight-red {
    color: var(--red);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════
   OBJEÇÕES (Values) — Carousel
   ══════════════════════════════════════════════════ */
.objecoes-section {
    background: #fff;
    overflow: hidden;
}

.objecoes-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.objecoes-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.carousel-nav {
    display: none;
}

.carousel-nav button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all .3s;
}

.carousel-nav button:hover {
    background: var(--fg);
    color: #fff;
}

.carousel-nav button:disabled {
    opacity: .3;
}

.carousel-track {
    display: flex;
    transition: transform .7s ease-out;
}

.carousel-slide {
    width: 100%;
    flex-shrink: 0;
    padding-right: 1.5rem;
}

.objection-card {
    background: var(--cream);
    border-radius: .75rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.objection-icon {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.objection-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 1rem;
}

.objection-card p {
    font-size: .875rem;
    color: var(--fg-60);
    line-height: 1.7;
    margin-top: auto;
}

.carousel-nav-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 2rem;
}

.carousel-nav-mobile button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all .3s;
}

.carousel-nav-mobile button:disabled {
    opacity: .3;
}

.carousel-counter {
    font-size: .75rem;
    color: var(--fg-40);
    margin: 0 .5rem;
}

/* ══════════════════════════════════════════════════
   ARGUMENTOS RACIONAIS (Rational)
   ══════════════════════════════════════════════════ */
.racional-section {
    background: #fff;
}

.racional-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--fg-60);
    margin-bottom: 1.5rem;
}

.racional-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 3rem;
}

.racional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.racional-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    border-radius: .75rem;
    padding: 1.5rem;
}

.racional-card svg {
    color: var(--red);
    flex-shrink: 0;
    margin-top: .125rem;
}

.racional-card p {
    font-size: .875rem;
    color: rgba(26, 26, 26, .8);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   COMPARAÇÃO (DoLessBetter)
   ══════════════════════════════════════════════════ */
.comparacao-section {
    background: var(--cream);
}

.comparacao-tag {
    font-size: .6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: #6b7280;
    margin-bottom: 1rem;
}

.comparacao-title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
}

.comparacao-sub {
    font-size: .875rem;
    color: #4b5563;
}

.comparacao-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
}

.comparacao-header-com {
    background: #111827;
    color: #fff;
    border-radius: .75rem;
    padding: .75rem 1rem;
    text-align: center;
}

.comparacao-header-com p {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.comparacao-header-sem {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: .75rem 1rem;
    text-align: center;
}

.comparacao-header-sem p {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #9ca3af;
}

.comparacao-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: .5rem;
}

.comparacao-com {
    background: #fff;
    border-radius: .75rem;
    padding: .875rem 1rem;
    display: flex;
    align-items: center;
    gap: .625rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    border: 1px solid rgba(243, 244, 246, 1);
}

.comparacao-com-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparacao-com span {
    font-size: .75rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.3;
}

.comparacao-sem {
    background: #f9fafb;
    border-radius: .75rem;
    padding: .875rem 1rem;
    display: flex;
    align-items: center;
    gap: .625rem;
}

.comparacao-sem-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparacao-sem span {
    font-size: .75rem;
    color: #9ca3af;
    line-height: 1.3;
}

.btn-cta-comparacao {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 1rem 2rem;
    border-radius: .75rem;
    transition: all .3s;
    margin-top: 2.5rem;
}

.btn-cta-comparacao:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(33, 150, 243, .2);
}

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq-section {
    background: var(--fg);
    color: #fff;
}

.faq-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 1.5rem;
}

.faq-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
}

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

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

.faq-btn {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
}

.faq-btn h3 {
    font-size: 1.125rem;
    font-weight: 400;
    padding-right: 2rem;
    transition: color .3s;
}

.faq-btn:hover h3 {
    color: rgba(255, 255, 255, .8);
}

.faq-btn .faq-icon {
    flex-shrink: 0;
    margin-top: .25rem;
    color: var(--red);
}

.faq-btn .faq-icon svg {
    transition: transform .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .5s ease-out, opacity .3s ease;
}

.faq-answer.is-open {
    opacity: 1;
}

.faq-answer p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    max-width: 42rem;
    padding-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════════
   SUPORTE (Support)
   ══════════════════════════════════════════════════ */
.suporte-section {
    background: var(--cream);
}

.suporte-tag {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--fg-60);
    margin-bottom: 1.5rem;
}

.suporte-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 3rem;
}

.suporte-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.suporte-card {
    background: #fff;
    border-radius: .75rem;
    padding: 2rem;
    text-align: center;
}

.suporte-card svg {
    color: var(--red);
    margin: 0 auto .75rem;
}

.suporte-card h3 {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.suporte-card p {
    font-size: .75rem;
    color: var(--fg-60);
}

.btn-suporte {
    display: inline-block;
    border: 2px solid var(--fg);
    color: var(--fg);
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 1rem 2rem;
    border-radius: .25rem;
    transition: all .3s;
}

.btn-suporte:hover {
    background: var(--fg);
    color: #fff;
    transform: scale(1.05);
}

.suporte-note {
    font-size: .75rem;
    color: var(--fg-40);
    margin-top: .75rem;
}

/* ══════════════════════════════════════════════════
   CTA FINAL (Baseletter)
   ══════════════════════════════════════════════════ */
.cta-final-section {
    background: #fff;
}

.cta-final-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 2rem;
}

.cta-final-desc {
    font-size: 1rem;
    color: var(--fg-70);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.btn-cta-final {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 1rem 2.5rem;
    border-radius: .25rem;
    transition: all .3s;
    margin-bottom: 1rem;
    animation: cta-pulse 2.5s ease-in-out infinite;
    animation-delay: 1s;
}

.btn-cta-final:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(33, 150, 243, .2);
}

.cta-final-note {
    font-size: .75rem;
    color: var(--fg-40);
}

/* ══════════════════════════════════════════════════
   CTA PULSE ANIMATION
   ══════════════════════════════════════════════════ */
@keyframes cta-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(33, 150, 243, .12);
    }
}

/* ══════════════════════════════════════════════════
   OFFER CARD ANIMATED GRADIENT BORDER
   ══════════════════════════════════════════════════ */
.oferta-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent 40%, transparent 60%, rgba(255, 255, 255, .1));
    z-index: -1;
    animation: oferta-border-glow 4s ease-in-out infinite;
}

@keyframes oferta-border-glow {

    0%,
    100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

/* ══════════════════════════════════════════════════
   ACCESSIBILITY — FOCUS VISIBLE
   ══════════════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-cta-hero:focus-visible,
.btn-oferta:focus-visible,
.btn-cta-final:focus-visible,
.btn-cta-comparacao:focus-visible,
.btn-cta-header:focus-visible,
.btn-suporte:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.faq-btn:focus-visible,
.metodo-step-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    border-radius: .25rem;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
    background: var(--fg);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 1.25rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
}

.footer-heading {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .75rem;
    transition: color .3s;
}

.footer-link:hover {
    color: #fff;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
}

.footer-disclaimer {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
}

.footer-copyright {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    margin-top: .5rem;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — sm (640px)
   ══════════════════════════════════════════════════ */
@media (min-width: 640px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .demo-title,
    .prova-title,
    .bonus-title,
    .garantia-title,
    .objecoes-title,
    .racional-title,
    .suporte-title,
    .cta-final-title,
    .about-title,
    .faq-title {
        font-size: 2.25rem;
    }

    .comparacao-title {
        font-size: 2.25rem;
    }

    .carousel-slide {
        width: 50%;
    }

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

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

    .grid-2col-bonus {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — md (768px)
   ══════════════════════════════════════════════════ */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — lg (1024px)
   ══════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .section-padding {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    /* Header */
    .header-inner {
        padding: 0 2.5rem;
    }

    .header-desktop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 3.5rem;
    }

    .header-desktop nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .header-mobile {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    /* Hero */
    .hero-bg {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

    .hero-bg-fade {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 12rem;
        background: linear-gradient(to top, var(--dark2), transparent);
        pointer-events: none;
    }

    .hero-intro {
        padding-top: 6rem;
    }

    .hero-content {
        padding: 4rem 2.5rem;
    }

    .hero-text-wrap {
        max-width: 42rem;
        margin: 0;
    }

    .hero-title {
        font-size: 3.5rem;
        text-align: left;
        line-height: 1.1;
        margin-bottom: 1.25rem;
    }

    .hero-desc {
        text-align: left;
    }

    .word-reveal-line.lg-left {
        justify-content: flex-start;
    }

    .hero-vsl {
        padding: 0 2.5rem 5rem;
    }

    .hero-vsl-inner {
        max-width: 42rem;
        margin: 0;
        text-align: left;
    }

    .vsl-embed {
        border-radius: 1.5rem;
    }

    /* Demo */
    .demo-section .container {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .demo-image-ratio {
        aspect-ratio: 21/9;
    }

    .demo-image-outer {
        padding: 0 2.5rem;
    }

    .demo-title {
        font-size: 3rem;
    }

    /* Método */
    .grid-2col {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .metodo-step-title {
        font-size: 1.25rem;
    }

    /* Para quem é */
    .para-quem-section .grid-2col {
        gap: 4rem;
    }

    .para-quem-title {
        font-size: 3rem;
    }

    /* Entrega */
    .entrega-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .entrega-image {
        aspect-ratio: auto;
        height: 100%;
        min-height: 400px;
    }

    /* Oferta */
    .oferta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .oferta-image {
        aspect-ratio: auto;
        height: 100%;
        min-height: 500px;
    }

    .oferta-card {
        padding: 3rem;
    }

    /* Bônus */
    .bonus-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .bonus-image {
        aspect-ratio: auto;
        height: 100%;
        min-height: 400px;
    }

    .bonus-title {
        font-size: 3rem;
    }

    /* Garantia */
    .garantia-grid {
        grid-template-columns: auto 1fr;
        gap: 4rem;
    }

    .garantia-card {
        padding: 3rem;
        min-width: 20rem;
    }

    .garantia-title {
        font-size: 3rem;
    }

    /* Prova */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-image {
        aspect-ratio: auto;
    }

    .about-content {
        padding: 0 3rem;
    }

    /* Objeções */
    .objecoes-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .carousel-nav {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .carousel-nav-mobile {
        display: none;
    }

    .prova-title {
        font-size: 3rem;
    }

    .objecoes-title {
        font-size: 3rem;
    }

    .racional-title {
        font-size: 3rem;
    }

    .suporte-title {
        font-size: 3rem;
    }

    /* Comparação */
    .comparacao-title {
        font-size: 3rem;
    }

    .comparacao-headers {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .comparacao-header-com,
    .comparacao-header-sem {
        padding: 1rem 1.5rem;
    }

    .comparacao-header-com p,
    .comparacao-header-sem p {
        font-size: .875rem;
    }

    .comparacao-row {
        gap: 1rem;
        margin-bottom: .75rem;
    }

    .comparacao-com,
    .comparacao-sem {
        padding: 1rem 1.5rem;
    }

    .comparacao-com span,
    .comparacao-sem span {
        font-size: .875rem;
    }

    .comparacao-com-icon,
    .comparacao-sem-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .btn-cta-comparacao {
        font-size: .875rem;
        margin-top: 3.5rem;
    }

    /* FAQ */
    .faq-btn h3 {
        font-size: 1.25rem;
    }

    .faq-title {
        font-size: 3rem;
    }

    /* CTA Final */
    .cta-final-title {
        font-size: 3rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — xl (1280px)
   ══════════════════════════════════════════════════ */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* ══════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}