:root {
  --bg: #0d1018;
  --bg-deep: #080a10;
  --bg-soft: #121722;
  --card: rgba(255, 255, 255, 0.065);
  --card-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.18);

  --text: #f5f7fb;
  --muted: #a8b0c2;
  --muted-2: #7f8798;

  --purple: #8b5cf6;
  --purple-dark: #6d28d9;
  --cyan: #38bdf8;
  --gold: #d6b56d;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.22);
}

/* ================================
   RESET / BASE
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  position: relative;

  /* Fundo final: imagem usada uma única vez no body para evitar linha reta */
  background:
    linear-gradient(
      to bottom,
      rgba(8, 10, 16, 0.06) 0px,
      rgba(8, 10, 16, 0.12) 260px,
      rgba(8, 10, 16, 0.42) 560px,
      rgba(8, 10, 16, 0.88) 820px,
      #080a10 980px,
      #080a10 100%
    ),
    url("assets/bg-hero.png") top center / 100% 980px no-repeat,
    radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.18), transparent 28%),
    radial-gradient(circle at 12% 12%, rgba(56, 189, 248, 0.11), transparent 28%),
    linear-gradient(180deg, #0d1018 0%, #0a0d14 48%, #080a10 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.7;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
}

/* desliga camadas antigas que causavam duplicação/corte */
body::after,
.hero-clean::before,
.hero-clean::after,
.mini-showcase::before {
  display: none !important;
}

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

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

.page-glow {
  display: none;
}

/* ================================
   HEADER / NAVBAR
================================ */

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(12, 16, 28, 0.88),
      rgba(10, 12, 22, 0.72)
    );

  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 14px;
  z-index: 50;

  animation: headerDrop 0.75s ease forwards;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(
      135deg,
      rgba(56, 189, 248, 0.28),
      rgba(139, 92, 246, 0.18),
      rgba(255, 255, 255, 0.04)
    );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: 0.8;
}

/* brilho animado do header removido por performance */
.site-header::after {
  display: none !important;
  animation: none !important;
}

.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f8fafc;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  border-radius: 14px !important;
  object-fit: cover;
  background: transparent !important;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.10),
    0 10px 28px rgba(56, 189, 248, 0.18),
    0 10px 30px rgba(139, 92, 246, 0.20) !important;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  color: rgba(232, 238, 255, 0.66);
  font-weight: 600;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transition: width 0.22s ease;
}

.nav a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav a:hover::after {
  width: 22px;
}

.header-cta {
  position: relative;
  z-index: 2;

  padding: 11px 20px;
  border-radius: 15px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.06)
    );

  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;

  font-weight: 800;
  font-size: 0.9rem;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.22);

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.015);
  border-color: rgba(139, 92, 246, 0.48);
  background:
    linear-gradient(
      135deg,
      rgba(139, 92, 246, 0.28),
      rgba(56, 189, 248, 0.12)
    );
  box-shadow:
    0 18px 42px rgba(139, 92, 246, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

/* ================================
   HERO
================================ */

.hero-clean {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 96px 16px 64px !important;
  text-align: center;
  position: relative !important;
  overflow: visible !important;
  isolation: isolate;
  background: transparent !important;
}

.hero-wide {
  width: min(820px, 100%);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 18px;
  color: #c7d2fe;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.55);
}

.hero-clean h1 {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(2.15rem, 3.5vw, 3.25rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.055em;
}

.hero-clean p {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  max-width: 640px;
  margin: 20px auto 0;
  color: rgba(232, 238, 255, 0.56);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-showcase,
.trust-strip,
.mini-showcase {
  display: none !important;
}

/* ================================
   BUTTONS
================================ */

.btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(139, 92, 246, 0.36);
}

.btn-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.32);
  background: rgba(255, 255, 255, 0.075);
}

.btn:active,
.mini-btn:active,
.header-cta:active {
  transform: scale(0.98);
}

.mini-btn {
  padding: 10px 13px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: 0.84rem;
}

.mini-btn:hover {
  color: var(--text);
  border-color: rgba(56, 189, 248, 0.35);
}

.mini-primary {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.34);
  color: var(--text);
}

.mini-primary:hover {
  background: rgba(139, 92, 246, 0.26);
}

/* ================================
   TYPOGRAPHY / SECTION BASE
================================ */

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.055em;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #cfd5e6;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.6);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
}

.section-text {
  max-width: 620px;
}

.section-text.center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  margin-top: 15px;
  font-size: clamp(1.8rem, 3.1vw, 2.65rem);
  line-height: 1.08;
}

.section p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

/* ================================
   PROBLEM / BEFORE AFTER
================================ */

.problem-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: center;
}

.before-after {
  display: grid;
  gap: 14px;
}

.compare-card {
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.compare-card span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-card h3 {
  margin-top: 10px;
  font-size: 1.28rem;
}

.compare-card p {
  margin-top: 12px;
}

.highlight-card {
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.16), rgba(56, 189, 248, 0.055)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.28);
}

/* ================================
   FEATURES
================================ */

.feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  padding: 22px 22px 22px 48px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  color: #dce2f1;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.55);
}

/* ================================
   MODELS / EXAMPLES
================================ */

.models-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.model-card {
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.model-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.featured-model {
  border-color: rgba(139, 92, 246, 0.26);
}

.model-image {
  position: relative;
  margin: 14px 14px 0;
  height: 190px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.16), transparent 42%),
    #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.model-image::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 4px 4px, #8b5cf6 0 3px, transparent 3.5px),
    radial-gradient(circle at 20px 4px, #38bdf8 0 3px, transparent 3.5px),
    radial-gradient(circle at 36px 4px, rgba(255, 255, 255, 0.45) 0 3px, transparent 3.5px);
  z-index: 2;
}

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

.model-content {
  padding: 23px;
}

.model-content span,
.price-tag {
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-content h3 {
  margin-top: 12px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.model-content p {
  font-size: 0.94rem;
}

.model-actions {
  margin-top: 21px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

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

.pricing-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 27px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);

  display: flex;
  flex-direction: column;
  height: 100%;

  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.34);
}

.price-featured {
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(56, 189, 248, 0.055)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.32);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #e6ddff;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 15px;
  font-size: 2.35rem;
}

.price-card p {
  font-size: 0.94rem;
}

.price-card ul {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.price-card li {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card li::before {
  content: "✦";
  margin-right: 9px;
  color: var(--cyan);
}

.btn-price {
  width: 100%;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.price-featured .btn-price {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-color: transparent;
}

/* ================================
   PROCESS
================================ */

.process-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-card {
  padding: 23px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.11);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--cyan);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.process-card h3 {
  margin-top: 16px;
  font-size: 1.12rem;
}

.process-card p {
  font-size: 0.92rem;
}

/* ================================
   FAQ
================================ */

.faq-list {
  max-width: 860px;
  margin: 38px auto 0;
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-family: "Sora", sans-serif;
}

details p {
  margin-top: 13px;
}

/* ================================
   FINAL CTA / FOOTER
================================ */

.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 50px auto 0;
  padding: 40px;
  border-radius: 30px;
  background:
    radial-gradient(circle at right, rgba(139, 92, 246, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.final-cta h2 {
  margin-top: 13px;
  font-size: clamp(1.85rem, 3.1vw, 2.65rem);
  max-width: 720px;
  line-height: 1.08;
}

.final-cta p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto 0;
  padding: 26px 0 42px;
  color: var(--muted-2);
  text-align: center;
  font-size: 0.9rem;
}

/* ================================
   REVEAL ANIMATIONS
================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* ================================
   KEYFRAMES
================================ */

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .feature-grid,
  .models-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .problem-section {
    grid-template-columns: 1fr;
  }

  .price-featured {
    transform: none;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, 1120px);
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 18px;
    top: 10px;
  }

  .logo {
    gap: 10px;
    font-size: 0.95rem;
  }

  .logo-mark {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 13px !important;
  }

  .header-cta {
    display: none;
  }

  .hero-clean {
    padding-top: 96px !important;
    padding-bottom: 52px !important;
  }

  .hero-clean h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem) !important;
    line-height: 1.08 !important;
  }

  .hero-clean p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-note {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .feature-grid,
  .models-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .models-grid {
    gap: 26px;
  }

  .model-card {
    border-radius: 24px;
  }

  .model-image {
    height: 215px;
    margin: 12px 12px 0;
  }

  .model-content {
    padding: 20px;
  }

  .model-content span,
  .price-tag {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .model-content h3 {
    font-size: 1.35rem;
    line-height: 1.22;
  }

  .model-content p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .model-actions {
    gap: 10px;
  }

  .mini-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  .final-cta {
    padding: 28px;
  }

  #exemplos,
  #pacotes,
  #processo,
  #duvidas {
    scroll-margin-top: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .logo-mark,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .nav a:hover,
  .header-cta:hover {
    transform: none;
  }
}

/* ================================
   ALINHAR BOTÕES DOS CARDS DE EXEMPLOS
================================ */

.models-grid {
  align-items: stretch;
}

.model-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.model-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.model-content p {
  flex: 1;
}

.model-actions {
  margin-top: auto;
}

.model-actions .mini-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
}


/* ================================
   PÁGINAS LEGAIS
================================ */

.legal-page {
  padding-top: 82px;
}

.legal-page .section-text {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.legal-page h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.legal-page p {
  margin-top: 14px;
}

.legal-page a {
  color: #c7d2fe;
  font-weight: 800;
}

.legal-date {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.legal-actions {
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .legal-page {
    padding-top: 58px;
  }

  .legal-page .section-text {
    padding: 26px;
    border-radius: 24px;
  }

  .legal-actions {
    flex-direction: column;
  }

  .legal-actions .btn {
    width: 100%;
  }
} 

/* ================================
   AJUSTE BOTÃO PÁGINAS LEGAIS
================================ */

.legal-actions {
  justify-content: center;
}

.legal-actions .btn {
  min-width: 220px;
}

/* ================================
   LINKS DO RODAPÉ
================================ */

.footer-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 0.86rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}