/* ============================================================
   AGENDOU — LANDING PAGE  |  style.css
   Mobile-first · Inter · Premium SaaS
   ============================================================ */

:root {
  /* Cores */
  --bg:           #FAFAFA;
  --bg-alt:       #F4F4F2;
  --bg-dark:      #0A0A0A;
  --bg-card:      #FFFFFF;
  --border:       rgba(0, 0, 0, 0.07);
  --border-med:   rgba(0, 0, 0, 0.12);

  /* Texto */
  --text:         #0F0F0F;
  --text-sub:     #4B4B4B;
  --text-muted:   #9B9B9B;
  --text-inv:     #F5F5F5;
  --text-inv-sub: rgba(245,245,245,0.55);

  /* Accent — azul limpo */
  --accent:       #2563EB;
  --accent-dim:   rgba(37, 99, 235, 0.08);
  --accent-dark:  #1D4ED8;
  --accent-light: rgba(37, 99, 235, 0.15);

  /* Sucesso */
  --green:        #16A34A;
  --green-dim:    rgba(22,163,74,0.10);

  /* Tipografia */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  22px;
  --radius-2xl: 32px;
  --max-w:      1080px;
  --nav-h:      64px;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 40px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.08);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TIPOGRAFIA ── */
.heading {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ── BOTÕES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  min-height: 48px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.30);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.lg { font-size: 16px; padding: 14px 32px; border-radius: var(--radius-lg); min-height: 52px; }
.btn-block { display: flex; width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-sub);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-med);
  background: var(--bg-card);
  min-height: 48px;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  min-height: 36px;
  transition: color 0.15s, background 0.15s;
}
.btn-ghost:hover { color: var(--text); background: var(--bg-alt); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 20px;
  flex-direction: column;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sub);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-divider { height: 8px; }
.nav-mobile-login {
  margin-top: 4px;
  color: var(--text-sub) !important;
  border-bottom: none !important;
}
.nav-mobile-cta {
  color: var(--accent) !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  margin-top: 4px;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-hamburger { display: none; }
}

/* ── HERO ── */
#hero {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 64px;
  background: var(--bg);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-title {
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.br-desk { display: none; }
@media (min-width: 640px) { .br-desk { display: block; } }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 440px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { justify-content: center; }
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 56px;
}
.hero-note li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-note svg { width: 12px; height: 12px; color: var(--accent); }

/* Mockups hero */
.hero-mockups {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  padding: 0 8px;
  position: relative;
}
.mockup-wrap { position: relative; }
.mockup-back { z-index: 1; }
.mockup-front { z-index: 2; margin-bottom: -12px; }
.mockup-img {
  width: clamp(140px, 36vw, 210px);
  border-radius: clamp(18px, 4vw, 32px);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.06);
}
.mockup-back .mockup-img { margin-bottom: 24px; }

@media (min-width: 640px) {
  .mockup-img { width: 200px; }
}

/* ── SEÇÕES GENÉRICAS ── */
section { padding: 80px 0; }
section.alt { background: var(--bg-alt); }

.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(26px, 3.5vw, 40px); }
.section-header p {
  font-size: 16px;
  color: var(--text-sub);
  margin-top: 12px;
  max-width: 500px;
}

@media (min-width: 900px) { section { padding: 96px 0; } }

/* ── NICHOS ── */
#nichos {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nichos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.nichos-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.nicho-tag {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-med);
  background: var(--bg-card);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  cursor: default;
}
.nicho-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ── FEATURES ── */
#features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 540px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--bg-card);
  padding: 28px 24px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg); }

.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 18px; height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ── SHOWCASE ── */
#showcase { background: var(--bg-dark); padding: 80px 0; }
@media (min-width: 900px) { #showcase { padding: 100px 0; } }

.showcase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
}
.showcase-row:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .showcase-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .showcase-row.reverse .showcase-text { order: 2; }
  .showcase-row.reverse .showcase-img-wrap { order: 1; }
}

.showcase-text .label { color: rgba(99,143,255,0.9); }
.showcase-text h2 {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text-inv);
  margin: 10px 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.showcase-text p {
  font-size: 15px;
  color: var(--text-inv-sub);
  line-height: 1.7;
  margin-bottom: 24px;
}
.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.showcase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,245,245,0.65);
}
.showcase-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

.showcase-img-wrap {
  display: flex;
  justify-content: center;
}
.showcase-img {
  width: clamp(200px, 55vw, 260px);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .showcase-img { width: 240px; } }

/* ── COMO FUNCIONA ── */
#como-funciona { background: var(--bg-alt); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: var(--bg-card);
  padding: 28px 22px;
}
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  background: var(--accent-dim);
  border: 1px solid var(--accent-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step-card h3 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.step-card p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

/* ── PWA ── */
#pwa { background: var(--bg); }
.pwa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 768px) { .pwa-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.pwa-text {}
.pwa-text .heading {
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 10px 0 12px;
}
.pwa-sub {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 4px;
}

.pwa-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.pwa-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pwa-step-n {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pwa-step-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.pwa-step-body span { font-size: 13px; color: var(--text-sub); line-height: 1.5; }

/* Phone ilustrado */
.pwa-phone-wrap {
  display: flex;
  justify-content: center;
}
.pwa-phone {
  width: 256px;
  background: #111111;
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.20), 0 0 0 1px rgba(255,255,255,0.05);
}
.pwa-phone-notch {
  width: 80px; height: 22px;
  background: #111111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pwa-phone-bar {
  height: 32px;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-top: -4px;
}
.pwa-phone-signals { letter-spacing: 2px; font-size: 8px; }
.pwa-phone-screen { padding: 14px 16px 20px; }
.pwa-safari-url {
  background: #1C1C1E;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.pwa-share {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pwa-add {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pwa-add-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.pwa-add-text strong { display: block; font-size: 12px; color: #F5F5F5; font-weight: 600; margin-bottom: 2px; }
.pwa-add-text span { font-size: 10px; color: rgba(255,255,255,0.30); }

/* ── PREÇOS ── */
#precos { background: var(--bg-alt); }
.price-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 480px) { .price-card { padding: 32px 24px; } }

.trial-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.price-top { margin-bottom: 28px; }
.price-amount {
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.price-amount sup { font-size: 20px; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.price-cents { font-size: 26px; font-weight: 700; }
.price-period { font-size: 14px; color: var(--text-muted); }

.price-list { margin-bottom: 28px; }
.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-list li:last-child { border-bottom: none; }
.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg {
  width: 10px; height: 10px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
}
.price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-wrap { max-width: 660px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--text-muted);
  transition: transform 0.25s, stroke 0.15s;
}
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); stroke: var(--accent); }
.faq-a {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ── CONTATO ── */
#contato { background: var(--bg-alt); }
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 560px) { .contact-cards { flex-direction: row; flex-wrap: wrap; } }

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  min-height: 72px;
  flex: 1;
  min-width: 240px;
}
.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.contact-value { font-size: 14px; font-weight: 600; color: var(--text); }
.contact-arrow {
  margin-left: auto;
  flex-shrink: 0;
  stroke: var(--text-muted);
  transition: stroke 0.15s, transform 0.15s;
}
.contact-card:hover .contact-arrow {
  stroke: var(--accent);
  transform: translateX(2px);
}

/* ── CTA FINAL ── */
#cta-final {
  background: var(--bg-dark);
  padding: 96px 0;
  text-align: center;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.20);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.cta-inner h2 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-inv);
  margin-bottom: 16px;
}
.cta-inner h2 em { font-style: normal; color: var(--accent); }
.cta-inner > p {
  font-size: 16px;
  color: var(--text-inv-sub);
  margin-bottom: 36px;
}
.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 20px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}
@media (min-width: 640px) { .footer-inner { justify-content: space-between; } }

.footer-brand {
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.02em;
}
.footer-brand em { font-style: normal; color: var(--accent); opacity: 0.7; }
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.20);
}

/* ── ANIMAÇÕES ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.50s ease, transform 0.50s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }