/* ============================================================
   LEAD FORGE PRO — Landing Page Premium
   style.css
   ============================================================ */

/* ===== Design Tokens ===== */
:root {
  --bg: #0a0806;
  --bg-soft: #110d09;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f7f3ee;
  --text-soft: #c3bbb0;
  --text-dim: #897f72;

  --primary: #34d399;
  --primary-2: #0f8a6a;
  --accent: #2bd980;
  --danger: #ff5160;

  --gradient: linear-gradient(120deg, #34d399 0%, #179466 48%, #0b6745 100%);
  --gradient-soft: linear-gradient(135deg, rgba(43, 255, 181, 0.16), rgba(255, 165, 61, 0.08));

  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.6);
  --shadow-primary: 0 18px 50px rgba(43, 255, 191, 0.35);

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", var(--font-sans);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
strong { font-weight: 700; color: #fff; }

:focus-visible { outline: 2px solid var(--primary-2); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(43, 255, 146, 0.4); color: #fff; }

/* ===== Layout helpers ===== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 840px; }

.section { padding: clamp(64px, 10vw, 112px) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015) 50%, transparent); }

.section__head { max-width: 760px; margin: 0 auto clamp(36px, 6vw, 56px); text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.15; letter-spacing: -0.02em; font-weight: 700;
}
.section__lead { margin-top: 16px; color: var(--text-soft); font-size: clamp(1rem, 2vw, 1.15rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--primary-2);
  padding: 7px 14px; margin-bottom: 18px;
  background: var(--gradient-soft); border: 1px solid var(--border); border-radius: 999px;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.block-title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 20px; }

/* ===== Background decor ===== */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 30%, transparent 80%);
}
.bg-glow { position: fixed; z-index: -1; border-radius: 50%; filter: blur(130px); opacity: 0.45; pointer-events: none; }
.bg-glow--1 { top: -180px; left: -120px; width: 500px; height: 500px; background: rgba(43, 255, 167, 0.5); }
.bg-glow--2 { top: 35%; right: -160px; width: 460px; height: 460px; background: rgba(61, 255, 177, 0.28); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 0.95rem; line-height: 1.2; text-align: center;
  padding: 14px 24px; border-radius: 12px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  border: 1px solid transparent;
}
.btn i { font-size: 0.9em; transition: transform 0.25s var(--ease); }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; border-radius: 14px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--gradient); background-size: 160% 160%; color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(43, 255, 191, 0.5); background-position: 100% 50%; }
.btn--primary:hover i.fa-arrow-right { transform: translateX(4px); }

.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-3px); background: var(--surface-2); border-color: var(--primary-2); }

/* ===== Topbar ===== */
.topbar {
  background: var(--gradient); background-size: 200% 100%;
  color: #fff; font-size: 0.86rem; text-align: center; position: relative; z-index: 101;
  animation: shimmer 6s linear infinite;
}
.topbar p { padding: 9px 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.topbar strong { color: #fff; }

/* ===== Header / Nav ===== */
.site-header { position: sticky; top: 0; z-index: 100; transition: background 0.3s var(--ease), border-color 0.3s var(--ease); border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(12, 9, 6, 0.78); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.brand__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--gradient); color: #fff; font-size: 1rem; box-shadow: var(--shadow-primary); flex-shrink: 0; }
.brand__name { white-space: nowrap; }

.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--text-soft); font-size: 0.94rem; font-weight: 500; position: relative; transition: color 0.2s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gradient); transition: width 0.3s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; font-size: 1.3rem; color: var(--text); width: 44px; height: 44px; border-radius: 10px; }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 14px 24px 22px; background: rgba(12, 9, 6, 0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.mobile-menu a { padding: 12px 6px; color: var(--text-soft); font-weight: 500; border-radius: 8px; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.is-open { display: flex; }
.mobile-menu .btn { margin-top: 8px; }

/* ===== Hero ===== */
.hero { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(56px, 8vw, 96px); position: relative; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 60px); align-items: center; }

.badge { display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 500; color: var(--text-soft); padding: 8px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 24px; line-height: 1.4; }
.badgew { display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 500; color: var(--text-soft); padding: 8px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 24px; line-height: 1.4; }
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-2); box-shadow: 0 0 0 0 rgba(61, 255, 190, 0.6); animation: pulse 2.2s infinite; flex-shrink: 0; }

.hero__title { font-family: var(--font-display); font-size: clamp(1.9rem, 4.6vw, 2.5rem); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
.hero__title strong { color: var(--text); }
.hero__subtitle { margin-top: 22px; font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--text-soft); }
.hero__alert { margin-top: 14px; font-size: clamp(0.9rem, 2vw, 1.0rem); }
.hero__alert strong {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hero__text { margin-top: 18px; color: var(--text-soft); font-size: 1.02rem; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta { margin-top: 18px; color: var(--text-dim); font-size: 0.92rem; }

.hero__visual { position: relative; }
.hero__panel { padding: 16px; }
.badge .fa-solid{
  margin-right: -4px;
  margin-left: 2px;
  color: #0f8a6a;
}

.glass-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); backdrop-filter: blur(14px); box-shadow: var(--shadow-lg); }

.float-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-lg); background: rgba(18, 13, 9, 0.9); }
.float-card i { font-size: 1.3rem; color: var(--primary-2); }
.float-card strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #fff; }
.float-card span { font-size: 0.78rem; color: var(--text-dim); }
.float-card--a { top: 8%; left: -26px; animation: floaty 6s ease-in-out infinite; }
.float-card--b { bottom: 10%; right: -22px; animation: floaty 6s ease-in-out infinite 1.5s; }

/* Image placeholders */
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  aspect-ratio: 16 / 10; border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(43, 255, 174, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(61, 255, 210, 0.13), transparent 55%),
    var(--bg-soft);
  border: 1px dashed var(--border-strong); color: var(--text-dim);
}
.img-placeholder i { font-size: 2.4rem; color: var(--primary-2); opacity: 0.85; }
.img-placeholder span { font-size: 0.85rem; }

/* ===== Grids ===== */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Video cards 
.video-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease); }
.video-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.video-card h3 { font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 18px; }
.video-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  aspect-ratio: 16 / 9; border-radius: 14px; margin-bottom: 20px;
  background: radial-gradient(circle at 50% 45%, rgba(43, 255, 184, 0.16), transparent 60%), var(--bg-soft);
  border: 1px dashed var(--border-strong); color: var(--text-dim); position: relative;
}
.video-placeholder i { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--gradient); color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-primary); }
.video-placeholder span { font-size: 0.82rem; padding-inline: 12px; text-align: center; }
.video-card__lead { font-weight: 600; margin-bottom: 10px; color: var(--text); }
===== */

/* ===== Lists ===== */
.arrow-list { display: grid; gap: 9px; }
.arrow-list li { color: var(--text-soft); font-size: 0.97rem; }

.check-list { display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text-soft); font-size: 0.97rem; }
.check-list li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 1px; color: var(--accent); }
.check-list--inline { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center; }

.plain-list { display: grid; gap: 11px; }
.plain-list li { color: var(--text-soft); font-size: 0.96rem; }
.plain-list--lg li { font-size: 1.05rem; padding: 4px 0; }

.dash-list { display: grid; gap: 9px; margin-top: 8px; }
.dash-list li { color: var(--text-soft); font-size: 0.96rem; }

.rich-list { display: grid; gap: 16px; max-width: 820px; }
.rich-list li { position: relative; padding-left: 4px; color: var(--text-soft); font-size: 1rem; line-height: 1.6; }

/* ===== Steps ===== */
.steps { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 30px; margin-top: 8px; }
.steps__title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 18px; }
.steps__list { display: grid; gap: 14px; }
.steps__list li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; color: var(--text-soft); }
.steps__num { font-size: 1.4rem; flex-shrink: 0; }

.callout {
  text-align: center; max-width: 820px; margin: 32px auto 0; padding: 22px 28px;
  background: var(--gradient-soft); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 1.05rem; color: var(--text);
}

/* ===== Package cards ===== */
.package-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease); }
.package-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.package-card h3 { font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 18px; line-height: 1.35; }
.package-card__lead { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 16px; }

/* ===== Tables ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 420px; }
.data-table { min-width: 380px; }
.data-table th, .data-table td { text-align: left; padding: 11px 14px; font-size: 0.88rem; border-bottom: 1px solid var(--border); }
.data-table thead th { background: var(--surface-2); color: var(--text); font-weight: 600; }
.data-table td { color: var(--text-soft); }
.data-table tbody tr:hover { background: var(--surface); }
.data-table td:nth-child(2) { color: var(--primary-2); font-weight: 600; white-space: nowrap; }
.data-table td:nth-child(3) { color: var(--text-dim); }

.compare-table { min-width: 720px; }
.compare-table th, .compare-table td { text-align: left; padding: 16px 18px; font-size: 0.93rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table thead th { background: var(--surface-2); color: var(--text); font-weight: 600; }
.compare-table td { color: var(--text-soft); }
.compare-table__highlight { background: var(--gradient-soft); }
.compare-table__highlight td { color: var(--text); border-bottom-color: var(--border-strong); }
.compare-table__highlight td:nth-child(2) { color: var(--primary-2); font-weight: 700; }

/* ===== Delivery cards ===== */
.delivery-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; overflow: hidden; }
.delivery-card__step { position: absolute; top: 12px; right: 18px; font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: rgba(255, 255, 255, 0.05); line-height: 1; }
.delivery-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 14px; position: relative; }
.delivery-card p { color: var(--text-soft); font-size: 0.97rem; margin-bottom: 8px; position: relative; }
.delivery-card__note { color: var(--text-dim); font-size: 0.9rem; }

/* ===== Feature blocks ===== */
.feature-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); margin-bottom: 24px; }
.feature-block__head h3 { font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.5rem); line-height: 1.25; }
.feature-block__head p { color: var(--text-soft); margin-top: 10px; }
.feature-block__sub { margin: 26px 0 16px; font-family: var(--font-display); font-size: 1.1rem; }
.feature-block__result { margin-top: 24px; padding: 18px 22px; background: var(--gradient-soft); border-radius: 14px; border: 1px solid var(--border); }

.mini-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; }
.mini-card__title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 14px; }

.combo { margin-top: 28px; text-align: center; padding: 30px; background: var(--gradient-soft); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); }
.combo__title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 12px; }
.combo p { color: var(--text-soft); margin-bottom: 6px; }

/* ===== Tech cards ===== */
.tech-card { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease); }
.tech-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.tech-card__icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 15px; background: var(--gradient-soft); border: 1px solid var(--border); color: var(--primary-2); font-size: 1.5rem; }
.tech-card__label { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.tech-card p:last-child { color: var(--text-soft); font-size: 0.95rem; }

.hosting { text-align: center; margin-top: 40px; padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.hosting__title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 18px; }
.hosting__note { margin-top: 16px; color: var(--text-dim); }

/* ===== Split ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); }
.split__content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 30px; }

.usecase-list { display: grid; gap: 16px; }
.usecase-list li { display: flex; gap: 13px; color: var(--text-soft); font-size: 0.98rem; line-height: 1.55; }
.usecase-list__num { font-size: 1.3rem; flex-shrink: 0; }

/* ===== Fit cards ===== */
.fit-card { border-radius: var(--radius-lg); padding: 34px 30px; border: 1px solid var(--border); }
.fit-card--yes { background: linear-gradient(180deg, rgba(43, 217, 128, 0.08), var(--surface)); border-color: rgba(43, 217, 128, 0.25); }
.fit-card--no { background: linear-gradient(180deg, rgba(255, 81, 96, 0.07), var(--surface)); border-color: rgba(255, 81, 96, 0.22); }
.fit-card__title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 22px; }
.fit-list { display: grid; gap: 14px; }
.fit-list li { position: relative; padding-left: 32px; color: var(--text-soft); font-size: 0.98rem; line-height: 1.55; }
.fit-list li::before { font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; }
.fit-list--yes li::before { content: "\f058"; color: var(--accent); }
.fit-list--no li::before { content: "\f057"; color: var(--danger); }

.verdict { max-width: 820px; margin: 34px auto 0; text-align: center; display: grid; gap: 12px; }
.verdict p { font-size: 1.08rem; color: var(--text-soft); }

/* ===== Offer ===== */
.section--offer { padding-top: clamp(56px, 8vw, 96px); }
.offer-box {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--primary); text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(43, 255, 163, 0.22), transparent 60%), var(--bg-soft);
  box-shadow: var(--shadow-primary);
}
.offer-box__tag { display: inline-block; font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.7rem); margin-bottom: 18px; }
.offer-box__price { font-size: clamp(1.3rem, 3.4vw, 2rem); font-family: var(--font-display); line-height: 1.3; }
.offer-box__price strong {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.offer-box__urgency { margin-top: 14px; color: var(--text-soft); font-size: 0.98rem; }
.offer-box__subtitle { margin: 30px 0 18px; font-family: var(--font-display); font-size: 1.2rem; }
.offer-box .check-list { max-width: 480px; margin: 0 auto; text-align: left; }
.offer-box__cta { margin-top: 32px; }
.offer-box__warning { margin-top: 18px; color: var(--text-dim); font-size: 0.9rem; }

/* ===== Prose ===== */
.prose { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.prose p { color: var(--text-soft); font-size: 1.05rem; }
#por-que-barato .block-title { text-align: center; margin-top: 36px; }
#por-que-barato .rich-list { margin: 0 auto 8px; max-width: 760px; }
#por-que-barato .prose { margin-top: 28px; }

/* ===== Guarantee ===== */
.guarantee { text-align: center; padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px); border-radius: var(--radius-lg); border: 1px solid var(--border-strong); background: radial-gradient(circle at 50% 0%, rgba(43, 217, 128, 0.14), transparent 60%), var(--bg-soft); }
.guarantee__icon { display: grid; place-items: center; width: 80px; height: 80px; margin: 0 auto 22px; border-radius: 22px; background: var(--gradient-soft); border: 1px solid var(--border); color: var(--accent); font-size: 2rem; }
.guarantee__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.guarantee p { margin-top: 16px; color: var(--text-soft); font-size: 1.08rem; max-width: 560px; margin-inline: auto; }

/* ===== Legal ===== */
.legal { display: grid; gap: 22px; }
.legal__block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 28px; }
.legal__block p { color: var(--text-soft); font-size: 0.96rem; margin-bottom: 8px; }
.legal__block p:last-child { margin-bottom: 0; }
.legal__heading { font-family: var(--font-display); font-size: 1.12rem; }
.legal__heading strong { color: var(--text); }

.final-cta { text-align: center; margin-top: 40px; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); padding: clamp(44px, 6vw, 64px) 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer__tagline { color: var(--text-soft); font-size: 0.98rem; }
.footer__copy { color: var(--text-dim); font-size: 0.85rem; margin-top: 12px; }

/* ===== To top ===== */
.to-top { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--gradient); box-shadow: var(--shadow-primary); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all 0.3s var(--ease); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }

/* ===== Reveal animation ===== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== Keyframes ===== */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 165, 61, 0.6); } 70% { box-shadow: 0 0 0 10px rgba(255, 165, 61, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 165, 61, 0); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: grid; place-items: center; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 16px; max-width: 540px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { padding-inline: 18px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .float-card--a { left: 0; top: 2%; }
  .float-card--b { right: 0; bottom: 4%; }
  .check-list--inline { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ===== Acessibilidade: reduzir movimento ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
