/* ============================================================
   SuperOAB – Site oficial (superoab.com)
   Design system: clean, navy + branco + acentos verdes/dourados.
   Casa com a UI do app (cards arredondados, fundo claro, sem dark).
   ============================================================ */

/* ---------- Reset & vars ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

:root {
  /* Paleta principal (mesma vibe do app) */
  --clr-primary:        #2C5DBC;   /* Azul SuperOAB */
  --clr-primary-dark:   #1E3F85;
  --clr-primary-soft:   #EAF1FB;
  --clr-accent:         #10B981;   /* Verde progresso */
  --clr-accent-soft:    #E6F7F0;
  --clr-gold:           #F59E0B;   /* Reputação */
  --clr-gold-soft:      #FEF3DD;
  --clr-streak:         #F97316;
  --clr-violet:         #8B5CF6;   /* Pomodoro / desafio */
  --clr-violet-soft:    #F1ECFE;

  --clr-bg:             #F5F7FB;
  --clr-bg-alt:         #FFFFFF;
  --clr-bg-soft:        #EEF2F8;
  --clr-text:           #131A2B;
  --clr-text-dim:       #5B6478;
  --clr-text-muted:     #8B93A6;
  --clr-border:         #E2E8F0;
  --clr-border-soft:    #EDF0F6;

  /* Hero / sections gradient */
  --grad-hero:          radial-gradient(120% 80% at 50% 0%, #EAF1FB 0%, #F5F7FB 60%);
  --grad-primary:       linear-gradient(135deg, #2C5DBC 0%, #1E3F85 100%);
  --grad-cta:           linear-gradient(135deg, #1E3F85 0%, #2C5DBC 50%, #3B82F6 100%);

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --sh-sm:  0 1px 2px rgba(19,26,43,.05), 0 1px 3px rgba(19,26,43,.04);
  --sh-md:  0 4px 14px rgba(19,26,43,.06), 0 2px 6px rgba(19,26,43,.04);
  --sh-lg:  0 18px 40px -16px rgba(19,26,43,.18), 0 8px 20px -8px rgba(19,26,43,.08);
  --sh-xl:  0 30px 60px -20px rgba(28,63,133,.25), 0 16px 36px -16px rgba(19,26,43,.12);

  /* Type */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

/* ---------- Containers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow,
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--clr-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 5.4vw, 64px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: 20px; }

.text-gradient {
  background: linear-gradient(135deg, #2C5DBC 0%, #10B981 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- NAV ---------- */
nav, #mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(245, 247, 251, 0.78);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
nav.scrolled, #mainNav.scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--clr-border-soft);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo, #mainNav .nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--clr-text);
}
.logo-icon { width: 32px; height: 32px; border-radius: 8px; }
.logo-text .super { color: var(--clr-text); }
.logo-text .accent { color: var(--clr-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links li a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--clr-text-dim);
  transition: color .15s, background .15s;
}
.nav-links li a:hover { color: var(--clr-primary); background: var(--clr-primary-soft); }
.nav-links .nav-cta {
  background: var(--grad-primary);
  color: #fff !important;
  padding: 10px 18px;
  font-weight: 600;
  box-shadow: 0 6px 14px -4px rgba(28,63,133,.45);
}
.nav-links .nav-cta:hover { background: var(--grad-primary); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--clr-text);
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--clr-border-soft);
    box-shadow: var(--sh-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li a { padding: 12px 14px; font-size: 16px; }
  .nav-links .nav-cta { margin-top: 8px; text-align: center; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 130px 24px 80px;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(800px 400px at 90% 10%, rgba(44,93,188,.10), transparent 60%),
    radial-gradient(700px 380px at 0% 90%, rgba(16,185,129,.08), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-width: 0;
}
.hero-content { min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-primary-dark);
  background: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,.18);
}
.hero h1 { font-size: clamp(38px, 5.6vw, 60px); margin-bottom: 22px; }
.mobile-title-break { display: none; }
.hero p.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-text-dim);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15.5px;
  transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 14px 26px -10px rgba(28,63,133,.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 32px -10px rgba(28,63,133,.55); }
.btn-secondary {
  background: #fff;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
}
.btn-secondary:hover { border-color: var(--clr-primary); color: var(--clr-primary); }

.store-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  border-radius: 12px;
  background: #131A2B;
  color: #fff;
  border: 1px solid #131A2B;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  box-shadow: 0 10px 22px -10px rgba(19,26,43,.5);
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge svg { flex-shrink: 0; }
.store-badge div { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge small { font-size: 10.5px; opacity: .8; letter-spacing: .04em; text-transform: uppercase; }
.store-badge span { font-family: var(--font-heading); font-weight: 600; font-size: 15px; }
.store-badge--disabled { opacity: .55; cursor: not-allowed; }
.store-badge--disabled:hover { transform: none; }

/* Hero phone showcase */
.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 540px;
}
.phone-card {
  position: relative;
  width: clamp(220px, 26vw, 290px);
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 30px 60px -20px rgba(28,63,133,.35),
    0 14px 30px -14px rgba(19,26,43,.18);
  border: 1px solid var(--clr-border-soft);
  transition: transform .35s ease;
}
.phone-card img { display: block; width: 100%; height: auto; }
.phone-card--center {
  z-index: 3;
  transform: translateY(-12px) scale(1.02);
}
.phone-card--left,
.phone-card--right {
  position: absolute;
  z-index: 2;
  top: 36px;
  width: clamp(180px, 22vw, 240px);
  opacity: .92;
}
.phone-card--left { left: -16px; transform: rotate(-8deg); }
.phone-card--right { right: -16px; transform: rotate(8deg); }
.phone-card:hover { transform: translateY(-18px) scale(1.03); }
.phone-card--left:hover  { transform: rotate(-8deg) translateY(-8px); }
.phone-card--right:hover { transform: rotate(8deg) translateY(-8px); }

@media (max-width: 920px) {
  .hero { padding-top: 110px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-phones { min-height: 440px; }
}
@media (max-width: 560px) {
  .hero { padding: 112px 24px 64px; }
  .hero-inner,
  .hero-content {
    width: 100%;
  }
  .hero-inner {
    max-width: calc(100vw - 48px);
  }
  .hero-content { max-width: 342px; }
  .hero h1 {
    font-size: 34px;
    max-width: 100%;
  }
  .mobile-title-break { display: block; }
  .hero p.hero-sub {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }
  .store-badges { gap: 10px; }
  .store-badge {
    padding: 11px 12px;
    gap: 9px;
  }
  .store-badge span { font-size: 14px; }
  .hero-phones { min-height: 380px; }
  .phone-card { width: 60vw; }
  .phone-card--left, .phone-card--right { width: 50vw; top: 20px; }
}

/* ---------- STATS BAND ---------- */
.stats-band {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border-soft);
  border-bottom: 1px solid var(--clr-border-soft);
  padding: 36px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: var(--clr-text-dim);
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- SECTION (generic) ---------- */
.section {
  padding: 96px 24px;
}
.section-light { background: var(--clr-bg-alt); }
.section-soft  { background: var(--clr-bg); }
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p {
  color: var(--clr-text-dim);
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- FEATURES ---------- */
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border: 1px solid var(--clr-border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: rgba(44,93,188,.25);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--clr-primary-soft);
  color: var(--clr-primary);
}
.feature-icon--green  { background: var(--clr-accent-soft); color: var(--clr-accent); }
.feature-icon--gold   { background: var(--clr-gold-soft); color: #B47A0B; }
.feature-icon--violet { background: var(--clr-violet-soft); color: #6D4ECD; }
.feature-icon--orange { background: #FEEAD8; color: #C2570D; }
.feature h3 { margin: 0; font-size: 18px; }
.feature p {
  margin: 0;
  color: var(--clr-text-dim);
  font-size: 14.5px;
  line-height: 1.55;
}
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-soft);
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 2px;
}
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- HIGHLIGHT FEATURES (rows alternadas) ---------- */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.highlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.highlight--reverse .highlight-media { order: 2; }
.highlight-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.highlight-media .phone-card {
  width: clamp(240px, 30vw, 320px);
}
.highlight-media::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(closest-side, rgba(44,93,188,.18), transparent 70%);
  z-index: 0;
}
.highlight-media .phone-card { position: relative; z-index: 1; }
.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.highlight-tag--green  { color: var(--clr-accent); background: var(--clr-accent-soft); }
.highlight-tag--violet { color: #6D4ECD; background: var(--clr-violet-soft); }
.highlight-tag--gold   { color: #B47A0B; background: var(--clr-gold-soft); }
.highlight h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 16px; }
.highlight p {
  color: var(--clr-text-dim);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.highlight ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.highlight li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--clr-text);
}
.highlight li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--clr-accent-soft);
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

@media (max-width: 860px) {
  .highlight { grid-template-columns: 1fr; gap: 32px; }
  .highlight--reverse .highlight-media { order: -1; }
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--clr-border-soft);
  box-shadow: var(--sh-md);
  cursor: zoom-in;
  aspect-ratio: 9 / 19.5;
  transition: transform .25s, box-shadow .25s;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,63,133,.55) 100%);
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: transform .25s, opacity .25s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 14, 30, .85);
  backdrop-filter: blur(6px);
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: min(420px, 90vw);
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

/* ---------- OFFICES SHOWCASE ---------- */
.offices-wrap { max-width: 1200px; margin: 0 auto; }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.office-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--clr-border-soft);
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.office-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.office-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.office-card-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(19,26,43,.85));
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
}
@media (max-width: 900px) { .offices-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .offices-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .offices-grid { grid-template-columns: repeat(2, 1fr); } }

.offices-counter {
  margin-top: 36px;
  text-align: center;
  color: var(--clr-text-dim);
  font-size: 15px;
}
.offices-counter strong {
  color: var(--clr-primary);
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 4px;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  margin: 60px 24px 80px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-cta);
  color: #fff;
  position: relative;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 320px at 90% 0%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(500px 260px at 10% 100%, rgba(16,185,129,.25), transparent 60%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.cta-final h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.cta-final .text-gradient {
  background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-final p { color: rgba(255,255,255,.85); font-size: 17px; line-height: 1.65; margin: 0 0 28px; }
.cta-final .store-badge { background: #fff; color: var(--clr-text); border-color: #fff; }
.cta-final .store-badge small { color: var(--clr-text-dim); opacity: .9; }
.cta-final .store-badge--disabled { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.2); }
.cta-final .store-badge--disabled small { color: rgba(255,255,255,.7); }
.cta-final .phone-card { width: clamp(220px, 28vw, 290px); margin: 0 auto; }
@media (max-width: 820px) {
  .cta-final-inner { grid-template-columns: 1fr; padding: 56px 28px; }
  .cta-final .phone-card { order: -1; }
}

/* ---------- FOOTER ---------- */
footer {
  background: #0B1228;
  color: #C7CFE0;
  padding: 64px 24px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: #8993A8;
  line-height: 1.6;
  margin: 12px 0 0;
}
.footer-logo,
.footer-brand .logo-text {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.footer-brand .super { color: #fff; }
.footer-brand .accent { color: #5C8FE8; }
.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  font-size: 14px;
  color: #97A1B8;
  transition: color .15s;
}
.footer-col ul a:hover { color: #fff; }
.footer-contact,
.footer-col .footer-contact-item {
  font-size: 14px;
  color: #97A1B8;
  display: block;
  margin-bottom: 6px;
}
.footer-contact a { color: #97A1B8; transition: color .15s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6F7791;
}
.footer-bottom a { color: #97A1B8; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   PÁGINAS INTERNAS (legal, suporte, contato, exclusão, fundador)
   ============================================================ */

.page-hero {
  background: var(--grad-hero);
  padding: 140px 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--clr-border-soft);
}
.page-hero .eyebrow {
  background: #fff;
  border: 1px solid var(--clr-border);
}
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); margin: 8px auto 14px; max-width: 720px; }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--clr-text-dim);
  font-size: 17px;
  line-height: 1.6;
}

.legal-page,
.support-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.legal-header {
  text-align: left;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--clr-border-soft);
}
.legal-header .tag,
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-soft);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.legal-header h1 {
  font-size: 32px;
  margin: 0 0 10px;
}
.legal-meta {
  color: var(--clr-text-muted);
  font-size: 13.5px;
  margin: 0;
}

.legal-highlight {
  background: var(--clr-primary-soft);
  border-left: 4px solid var(--clr-primary);
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 36px;
}
.legal-highlight p { margin: 0; color: var(--clr-text); font-size: 15.5px; line-height: 1.65; }

.legal-section { margin-bottom: 36px; }
.legal-section h2 {
  font-size: 20px;
  color: var(--clr-text);
  margin: 0 0 14px;
}
.legal-section p,
.legal-section li {
  color: var(--clr-text-dim);
  font-size: 15px;
  line-height: 1.7;
}
.legal-section ul {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 12px 0;
}
.legal-section ul li {
  position: relative;
  padding-left: 22px;
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-primary);
}
.legal-section a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-card {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border-soft);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-top: 12px;
}
.legal-card p { margin: 4px 0; font-size: 14.5px; }

.deletion-steps {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}
.deletion-step {
  background: #fff;
  border: 1px solid var(--clr-border-soft);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--sh-sm);
}
.deletion-step strong {
  display: block;
  color: var(--clr-primary);
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 6px;
}
.deletion-step p { margin: 0; font-size: 14.5px; color: var(--clr-text-dim); }

/* ---------- FAQ ---------- */
.section-header { margin-bottom: 32px; }
.section-header h2 { font-size: 28px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--clr-border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: rgba(44,93,188,.35);
  box-shadow: var(--sh-md);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--clr-text);
  cursor: pointer;
  transition: background .15s;
}
.faq-question:hover { background: var(--clr-primary-soft); }
.faq-question .arrow {
  color: var(--clr-primary);
  transition: transform .25s;
  font-size: 12px;
}
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--clr-text-dim);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 22px 22px;
}
.faq-answer a { color: var(--clr-primary); text-decoration: underline; }

/* ---------- CONTACT ---------- */
.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--clr-border-soft);
  border-radius: var(--r-md);
  padding: 22px 22px;
  text-align: left;
  box-shadow: var(--sh-sm);
}
.contact-info-card .ci-icon { font-size: 24px; margin-bottom: 8px; }
.contact-info-card h4 {
  font-family: var(--font-heading);
  margin: 0 0 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-text-muted);
}
.contact-info-card p, .contact-info-card a {
  font-size: 15px;
  color: var(--clr-text);
  word-break: break-word;
}
.contact-info-card a { color: var(--clr-primary); }
@media (max-width: 540px) {
  .contact-info-strip { grid-template-columns: 1fr; }
}

.contact-card {
  background: #fff;
  border: 1px solid var(--clr-border-soft);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh-md);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--clr-border);
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--clr-text);
  transition: border-color .15s, box-shadow .15s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(44,93,188,.15);
}
.contact-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--clr-text-dim);
  margin: 18px 0 28px;
}
.contact-consent input { margin-top: 3px; }
.contact-consent a { color: var(--clr-primary); }
.btn-submit {
  background: var(--grad-primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 22px -10px rgba(28,63,133,.5);
  transition: transform .15s;
}
.btn-submit:hover { transform: translateY(-1px); }
.btn-submit:disabled { opacity: .7; cursor: progress; }
.contact-privacy-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border-soft);
  font-size: 13px;
  color: var(--clr-text-muted);
}
.contact-privacy-note p { margin: 6px 0; line-height: 1.65; }
.contact-privacy-note a { color: var(--clr-primary); text-decoration: underline; }
.contact-privacy-note code {
  background: var(--clr-bg-soft);
  border: 1px solid var(--clr-border-soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12.5px;
}

/* ============================================================
   PRO / PRICING
   ============================================================ */

/* Pill 'Pro' usada em highlights e cards de feature */
.premium-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8A5A0B;
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px -2px rgba(245, 158, 11, .4);
  vertical-align: middle;
}
.premium-pill::before {
  content: "★";
  font-size: 10px;
  line-height: 1;
  color: #8A5A0B;
}
.feature .premium-pill,
.highlight .premium-pill { margin-left: 8px; }

/* Bloco de preços */
.pricing-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--clr-border-soft);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.price-card--featured {
  border: 2px solid var(--clr-primary);
  box-shadow: 0 30px 60px -20px rgba(28,63,133,.25), var(--sh-md);
}
.price-card--featured::before {
  content: "Mais popular";
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(28,63,133,.45);
}
.price-card .price-tier {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
}
.price-card .price-tier-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--clr-primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--clr-primary);
}
.price-card--featured .price-tier-icon {
  background: var(--grad-primary);
  color: #fff;
}
.price-card .price-value {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-card .price-value small {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text-dim);
  margin-left: 4px;
}
.price-card .price-promo {
  font-size: 13px;
  color: var(--clr-accent);
  font-weight: 600;
  background: var(--clr-accent-soft);
  padding: 6px 12px;
  border-radius: 8px;
  align-self: flex-start;
}
.price-card h3 {
  margin: 0;
  font-size: 22px;
}
.price-card p.price-sub {
  margin: 0;
  font-size: 14.5px;
  color: var(--clr-text-dim);
  line-height: 1.55;
}
.price-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.price-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--clr-text);
  line-height: 1.5;
}
.price-card ul li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--clr-accent-soft);
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.price-card .price-cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s, box-shadow .2s;
}
.price-card--featured .price-cta {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 12px 22px -10px rgba(28,63,133,.5);
}
.price-card--featured .price-cta:hover { transform: translateY(-2px); }
.price-card--free .price-cta {
  background: var(--clr-bg-soft);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.price-card--free .price-cta:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.pricing-footnote {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-card--featured { margin-top: 14px; }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 1;
  transform: none;
}
html.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: var(--d, 0s);
}
/* Above-the-fold hero must paint immediately — never hide it behind the reveal
   animation, otherwise it delays LCP (the hero text) by the JS/transition time. */
html.reveal-enabled .hero [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}
html.reveal-enabled [data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
