/* ============================================================
   CONSULTÁGIL — Soluções Administrativas
   Stack: HTML5 + CSS3 + Vanilla JS
   Layout: identidade "glass" clean — painéis translúcidos com
   desfoque (backdrop-filter), bordas finas de vidro, sombras suaves
   e difusas, cantos bem arredondados e halos de cor desfocados como
   pano de fundo. Texto e conteúdo inalterados — só a composição
   visual muda.
   ============================================================ */

/* ---------- VARIÁVEIS GLOBAIS ---------- */
:root {
  /* Paleta principal — extraída pixel a pixel da logo real (images/logoExemplo.jpg) */
  --red: #C41E2C;
  --red-dark: #8E1620;
  --gold: #C99A4D;
  --gold-dark: #A67B34;
  --charcoal: #4A4A4A;
  --dark-deep: #1C1B1A;
  --dark: #2E2C2A;
  --white: #FFFFFF;

  /* Secundárias */
  --gray: #757575;
  --light-gray: #ECE9E3;
  --cream: #F7F5F0;
  --ink: #2A2A2A;

  /* Gradientes */
  --grad-red: linear-gradient(135deg, #D4212F 0%, #8E1620 100%);
  --grad-gold: linear-gradient(135deg, #D9AE68 0%, #A67B34 100%);
  --grad-soft: linear-gradient(160deg, #FBF9F4 0%, #F3EFE6 55%, #ECE6D9 100%);

  /* Vidro (glassmorphism) */
  --glass: rgba(255, 255, 255, .58);
  --glass-strong: rgba(255, 255, 255, .78);
  --glass-border: rgba(255, 255, 255, .65);
  --glass-blur: blur(18px) saturate(160%);

  /* Tipografia */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout — cantos bem arredondados, sombras suaves e difusas */
  --container: 1240px;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 22px rgba(28, 27, 26, .07);
  --shadow-md: 0 16px 42px rgba(28, 27, 26, .11);
  --shadow-lg: 0 32px 70px rgba(28, 27, 26, .16);
  --shadow-red: 0 14px 32px rgba(196, 30, 44, .28);
  --shadow-gold: 0 14px 32px rgba(169, 128, 62, .28);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 92px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- HELPERS ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; position: relative; z-index: 1; }
.section { padding: 110px 0; position: relative; overflow: hidden; }
.section--alt { background: var(--light-gray); }

/* Halo de cor desfocado atrás de cada seção — dá a atmosfera "glass"
   ao conteúdo translúcido que fica por cima. */
.section::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -14%; right: -10%; width: 42%; aspect-ratio: 1; border-radius: 50%;
  background: var(--gold); opacity: .16; filter: blur(80px);
}
.section::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  bottom: -16%; left: -10%; width: 36%; aspect-ratio: 1; border-radius: 50%;
  background: var(--red); opacity: .09; filter: blur(90px);
}

.section__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 20px;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 8px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.section__eyebrow--red { color: var(--white); background: rgba(196, 30, 44, .78); border-color: rgba(255,255,255,.4); }

.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.16;
  color: var(--dark-deep);
  letter-spacing: -.01em;
}
.section__lead { margin-top: 18px; color: #5a5a5a; font-size: 1.08rem; }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn i, .btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 17px 38px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--red { background: var(--grad-red); color: var(--white); box-shadow: var(--shadow-red); }
.btn--red:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(196, 30, 44, .34); }

.btn--dark {
  background: var(--glass); color: var(--dark-deep);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm);
}
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--glass-strong); }

.btn--ghost {
  background: transparent; color: var(--dark-deep);
  border: 1.5px solid rgba(28, 27, 26, .18);
}
.btn--ghost:hover { background: var(--glass); border-color: var(--red); color: var(--red-dark); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- BRAND ---------- */
.brand { display: inline-flex; align-items: center; }
.brand__logo { width: auto; height: 40px; flex-shrink: 0; transition: height .4s var(--ease); }
.brand__logo--lg { height: 96px; }

/* ---------- SR-ONLY ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- PRELOADER ---------- */
body.is-loading { overflow: hidden; }
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  background: var(--cream);
  opacity: 1; visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader .sr-only { color: var(--gray); }
.preloader__logo {
  width: clamp(160px, 38vw, 230px);
  height: auto;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}
@media (min-width: 901px) {
  .preloader__logo { width: clamp(260px, 20vw, 330px); }
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: .65; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__logo { animation: none; }
}

/* ---------- HEADER ----------
   Barra "de vidro" flutuante e translúcida, com desfoque do que
   passa por trás — no lugar da barra sólida opaca. */
.header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 100;
  width: calc(100% - 28px); max-width: 1320px;
  height: 68px; display: flex; align-items: center;
  background: var(--glass);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease), top .4s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding-inline: 28px; }
.header.is-scrolled {
  background: var(--glass-strong);
  box-shadow: var(--shadow-md);
  top: 10px;
}
.header .brand__logo { height: 50px; }
.header.is-scrolled .brand__logo { height: 42px; }

.nav__list { display: flex; gap: 4px; }
.nav__cta-item { display: none; }
.nav__link {
  position: relative; font-weight: 500; font-size: .87rem; color: var(--ink);
  white-space: nowrap; padding: 9px 14px; border-radius: 999px;
  transition: color .25s, background .25s;
}
.nav__link:hover { color: var(--red-dark); background: rgba(255, 255, 255, .55); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--dark-deep); border-radius: 2px; transition: .3s var(--ease); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ----------
   Composição partida em duas colunas: texto à esquerda, cartões de
   estatística "de vidro" empilhados à direita, sobre halos de cor
   bem desfocados (sem foto, sem formas duras). */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--dark-deep); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: var(--grad-soft); overflow: hidden; }
.hero__bg::before {
  content: ""; position: absolute; top: -12%; right: -6%; width: 46%; aspect-ratio: 1;
  background: var(--gold); opacity: .28; filter: blur(90px); border-radius: 50%;
}
.hero__bg::after {
  content: ""; position: absolute; bottom: -16%; left: -8%; width: 40%; aspect-ratio: 1;
  background: var(--red); opacity: .16; filter: blur(100px); border-radius: 50%;
}
.hero__mark-bg {
  position: absolute; top: 50%; right: -6%; width: 56vh; height: 56vh;
  transform: translateY(-50%) rotate(-8deg);
  opacity: .05; pointer-events: none;
}
@media (max-width: 1023px) { .hero__mark-bg { display: none; } }
.hero__overlay { display: none; }
.hero__inner {
  position: relative; z-index: 2; padding-top: var(--header-h);
  display: flex; align-items: center;
}
.hero__content { width: 100%; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.hero__text { max-width: 640px; min-width: 0; }
.hero__eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red-dark); margin-bottom: 26px;
  padding: 9px 18px; border: 1px solid rgba(196, 30, 44, .3); border-radius: 999px;
  background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
}
.hero__title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.12; letter-spacing: -.01em;
  margin-bottom: 24px;
}
.hero__subtitle { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #5a5a5a; max-width: 580px; margin-bottom: 40px; font-weight: 300; }
.hero__subtitle strong { color: var(--dark-deep); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__stats { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.hero__stat {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-width: 0;
  padding: 22px 26px; background: var(--glass);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}
.hero__stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--glass-strong); }
.hero__stat-main { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-number {
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--red); line-height: 1.1;
}
.hero__stat-stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; line-height: 1; }
.hero__stat-label { font-size: .84rem; color: var(--gray); font-weight: 500; text-align: right; }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--gray); animation: bob 2s infinite;
}
.hero__scroll i { width: 30px; height: 30px; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ---------- QUEM SOMOS ----------
   Ordem invertida (texto primeiro) e imagem sobre um halo de cor
   desfocado, dentro de uma moldura de vidro. */
.about__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.about__content { order: 1; }
.about__media { order: 2; position: relative; }
.about__media-box {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg); border: 1px solid var(--glass-border);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.about__media-box::before {
  content: ""; position: absolute; top: -30%; right: -20%; width: 75%; aspect-ratio: 1;
  background: var(--gold); opacity: .3; filter: blur(60px); border-radius: 50%;
}
.about__media-box::after {
  content: ""; position: absolute; bottom: -30%; left: -20%; width: 65%; aspect-ratio: 1;
  background: var(--red); opacity: .16; filter: blur(70px); border-radius: 50%;
}
.about__media-logo {
  width: 80%; max-width: 360px; position: relative; z-index: 1;
  filter: drop-shadow(0 14px 30px rgba(28, 27, 26, .18));
}

.about__text { color: #5a5a5a; font-size: 1.02rem; margin-top: 18px; }
.about__text:first-of-type { margin-top: 24px; }
.about__text strong { color: var(--dark-deep); }
.about__stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.about__stat {
  display: flex; flex-direction: column; padding: 16px 22px;
  background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.about__stat-number { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--red-dark); line-height: 1.1; margin-bottom: 4px; }
.about__stat-label { font-size: .82rem; color: var(--gray); font-weight: 500; }

/* ---------- SERVIÇOS / CARDS ----------
   Grid "bento" de vidro: o card de CTA vira um bloco de destaque em
   gradiente translúcido; os demais ficam ao redor como painéis de
   vidro claros. */
.areas { background: #E9E5DA; }
.areas__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.card {
  background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s;
  position: relative; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background: var(--glass-strong); }
.card__icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(196, 30, 44, .1); color: var(--red); margin-bottom: 14px;
  border: 1px solid rgba(196, 30, 44, .18);
  transition: transform .4s var(--ease);
}
.card:hover .card__icon { transform: rotate(-6deg) scale(1.06); }
.card__icon i { width: 21px; height: 21px; }
.card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.06rem; color: var(--dark-deep); margin-bottom: 6px; }
.card__text { color: #5a5a5a; font-size: .88rem; margin-bottom: 12px; }
.card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; color: var(--red-dark); margin-top: auto; transition: gap .3s; }
.card__link i { width: 16px; height: 16px; transition: transform .3s; }
.card__link:hover { gap: 12px; }
.card__link:hover i { transform: translateX(3px); }

.card--cta {
  background: linear-gradient(135deg, rgba(212, 33, 47, .92), rgba(142, 22, 32, .88));
  backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, .3);
  justify-content: center;
}
.card--cta:hover {
  background: linear-gradient(135deg, rgba(212, 33, 47, .97), rgba(142, 22, 32, .95));
}
.card--cta .card__title { color: var(--white); font-size: 1.25rem; }
.card--cta .card__text { color: rgba(255, 255, 255, .85); font-size: .92rem; }
.card--cta .card__icon { background: rgba(255, 255, 255, .18); color: var(--white); border-color: rgba(255, 255, 255, .3); }
.card--cta .card__link { color: var(--white); }

/* ---------- DIFERENCIAIS ----------
   Grid compacto de cartões de vidro (em vez de linhas inteiras
   empilhadas) — ocupa bem menos altura na seção. */
.diff__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: diff-counter; }
.diff__item {
  counter-increment: diff-counter;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 26px 22px; position: relative;
  background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}
.diff__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--glass-strong); }
.diff__item::before {
  content: counter(diff-counter, decimal-leading-zero);
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--gold-dark); line-height: 1; opacity: .6;
}
.diff__icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(196, 30, 44, .1); color: var(--red-dark); margin-bottom: 16px;
  transition: transform .4s var(--ease), background .4s, color .4s;
}
.diff__item:hover .diff__icon { background: var(--grad-red); color: var(--white); transform: rotate(-6deg); }
.diff__icon i { width: 23px; height: 23px; }
.diff__item h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--dark-deep); margin-bottom: 6px; }
.diff__item p { color: #5a5a5a; font-size: .9rem; }

/* ---------- COMPROMISSO ----------
   Grid compacto e uniforme de 4 cartões de vidro, cada um com um
   halo de cor sutil — sem tiles grandes desperdiçando espaço. */
.authority { background: var(--cream); }
.authority__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.authority__item {
  border-radius: var(--radius); padding: 28px 22px; position: relative; overflow: hidden;
  background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s;
}
.authority__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--glass-strong); }
.authority__item::after {
  content: ""; position: absolute; z-index: -1; top: -30%; right: -20%; width: 65%; aspect-ratio: 1;
  border-radius: 50%; filter: blur(50px); opacity: .35;
}
.authority__icon {
  width: 50px; height: 50px; margin-bottom: 16px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-red); color: var(--white); position: relative; z-index: 1;
}
.authority__icon i { width: 24px; height: 24px; }
.authority__item h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--dark-deep); margin-bottom: 8px; position: relative; z-index: 1; }
.authority__item p { color: #5a5a5a; font-size: .9rem; position: relative; z-index: 1; }

.authority__item:nth-child(1)::after { background: var(--red); }
.authority__item:nth-child(2)::after { background: var(--gold); }
.authority__item:nth-child(2) .authority__icon { background: var(--grad-gold); }

.authority__item:nth-child(3)::after { background: var(--charcoal); opacity: .18; }
.authority__item:nth-child(3) .authority__icon { background: var(--charcoal); }

.authority__item:nth-child(4)::after { background: var(--gold); }
.authority__item:nth-child(4) .authority__icon { background: var(--grad-gold); }

/* ---------- FAQ ----------
   Lista contínua e limpa, com divisórias finas e fundo de vidro só
   no item aberto. */
.faq { background: var(--white); }
.faq__list { max-width: 860px; margin: 0 auto; counter-reset: faq-counter; }
.faq__item {
  counter-increment: faq-counter;
  background: transparent; border: none; border-bottom: 1px solid rgba(28, 27, 26, .1);
  border-radius: 0; overflow: hidden;
  transition: background .35s var(--ease);
}
.faq__item:first-child { border-top: 1px solid rgba(28, 27, 26, .1); }
.faq__item.is-open {
  background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius); border-bottom-color: transparent; box-shadow: var(--shadow-sm);
}
.faq__heading { margin: 0; }
.faq__question {
  width: 100%; display: flex; align-items: center; gap: 20px;
  padding: 24px 22px; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; font-size: 1.03rem; color: var(--dark-deep);
}
.faq__question::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-family: var(--font-heading); font-weight: 700; font-size: .95rem; color: var(--gold-dark);
  flex-shrink: 0; opacity: .8;
}
.faq__question span { flex: 1; }
.faq__icon { width: 20px; height: 20px; color: var(--red-dark); flex-shrink: 0; transition: transform .35s var(--ease); }
.faq__item.is-open .faq__icon { transform: rotate(180deg); }

.faq__answer-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faq__item.is-open .faq__answer-wrap { grid-template-rows: 1fr; }
.faq__answer { overflow: hidden; }
.faq__answer p { padding: 0 22px 26px 58px; color: #5a5a5a; font-size: .98rem; }

/* ---------- CONTATO ----------
   Painel escuro ao fundo e um cartão de formulário em vidro
   translúcido sobreposto, deixando entrever o painel por trás. */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: stretch; }
.contact__info {
  background: linear-gradient(155deg, var(--dark-deep) 0%, #2c2a28 100%);
  color: var(--white);
  padding: 56px 52px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact__info::before {
  content: ""; position: absolute; top: -20%; right: -15%; width: 55%; aspect-ratio: 1;
  background: var(--gold); opacity: .18; filter: blur(70px); border-radius: 50%;
}
.contact__info .section__title { color: var(--white); position: relative; }
.contact__info .section__eyebrow { background: rgba(255, 255, 255, .12); color: var(--gold); border-color: rgba(255, 255, 255, .2); backdrop-filter: none; position: relative; }
.contact__lead { color: rgba(255, 255, 255, .72); margin-top: 16px; font-size: 1.05rem; position: relative; }
.contact__list { margin-top: 38px; display: grid; gap: 26px; position: relative; }
.contact__list li { display: flex; gap: 18px; align-items: flex-start; }
.contact__ico {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .14); color: var(--gold); border: 1px solid rgba(255, 255, 255, .22);
}
.contact__ico i, .contact__ico svg { width: 24px; height: 24px; }
.contact__list strong { display: block; color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact__list div { color: rgba(255, 255, 255, .78); }
.contact__list a:hover { color: var(--gold); }

/* Formulário — cartão de vidro ao lado do painel escuro (sem sobreposição) */
.contact__form-wrap {
  background: var(--glass-strong);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-lg);
  padding: 44px;
}
.form__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.55rem; color: var(--dark-deep); margin-bottom: 28px; }
.form__field { margin-bottom: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form__field input, .form__field select, .form__field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid rgba(28, 27, 26, .12); border-radius: var(--radius-sm);
  font-size: .96rem; color: var(--ink); background: rgba(255, 255, 255, .7); transition: border-color .3s, box-shadow .3s, background .3s; resize: vertical;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(196, 30, 44, .15); background: var(--white);
}
.form__field input.is-error, .form__field select.is-error, .form__field textarea.is-error { border-color: #e35d5d; box-shadow: 0 0 0 3px rgba(227, 93, 93, .12); }
.form .btn { margin-top: 6px; }
.form__note { text-align: center; font-size: .82rem; color: var(--gray); margin-top: 14px; }

/* ---------- MAPA ---------- */
.map { position: relative; overflow: hidden; }
.map__cloud { display: none; }

.map__frame { position: relative; width: 100%; height: 380px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-border); box-shadow: var(--shadow-lg); background: var(--white); }
.map__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }
.map__frame--placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--gray); text-align: center; padding: 24px;
}
.map__frame--placeholder i { width: 40px; height: 40px; color: var(--red-dark); }
.map__frame--placeholder p { max-width: 380px; font-size: .95rem; }

/* ---------- FOOTER ---------- */
.footer { background: var(--cream); color: #5a5a5a; border-top: 1px solid rgba(28, 27, 26, .1); padding-top: 76px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.footer__social { display: flex; justify-content: flex-start; gap: 12px; margin-top: 26px; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); color: var(--dark-deep); transition: .3s var(--ease);
}
.footer__social a:hover { background: var(--grad-red); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.footer__social i, .footer__social svg { width: 20px; height: 20px; }
.footer__col h4 { color: var(--dark-deep); font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 22px; font-weight: 600; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a { font-size: .95rem; transition: color .25s, padding .25s; }
.footer__col ul a:hover { color: var(--red); padding-left: 5px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.footer__contact i { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 3px; }

.footer__bottom { border-top: 1px solid rgba(28, 27, 26, .1); padding: 22px 0; }
.footer__bottom p { font-size: .88rem; color: var(--gray); }
.footer__bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; text-align: left; }
.footer__legal-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer__legal-links a,
.footer__legal-btn {
  font-size: .88rem; color: var(--gray);
  background: none; border: none; padding: 0; font: inherit;
  cursor: pointer; transition: color .25s;
}
.footer__legal-links a:hover,
.footer__legal-btn:hover { color: var(--red); }

/* ---------- BOTÃO VOLTAR AO TOPO ---------- */
.back-to-top {
  position: fixed; right: 24px; bottom: 96px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-red); color: var(--white); box-shadow: var(--shadow-red);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s, box-shadow .35s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.back-to-top i { width: 22px; height: 22px; }

/* ---------- FAB WHATSAPP ---------- */
.fab-whatsapp-wrap { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; align-items: center; gap: 12px; }
.fab-whatsapp-tooltip {
  background: var(--glass-strong); color: var(--ink);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  padding: 12px 18px; border-radius: 999px;
  font-size: .88rem; white-space: nowrap;
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateX(8px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, box-shadow .3s var(--ease);
}
.fab-whatsapp-tooltip strong { color: var(--dark-deep); font-weight: 700; }
.fab-whatsapp-wrap:hover .fab-whatsapp-tooltip { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; }
.fab-whatsapp {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  background: #25D366; color: var(--white); box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: fabPulse 2.4s infinite;
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp i { width: 30px; height: 30px; }
@keyframes fabPulse { 0% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }

/* ============================================================
   SCROLL REVEAL (fade-in + movimento, via Intersection Observer)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

[data-anim] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-anim].is-visible { opacity: 1; transform: translateY(0); }

[data-stagger-item] { opacity: 0; transform: translateY(32px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-stagger-item].is-visible { opacity: 1; transform: translateY(0); }

.no-motion [data-reveal],
.no-motion [data-anim],
.no-motion [data-stagger-item] { opacity: 1; transform: none; transition: none; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (min-width: 1600px) { :root { --container: 1340px; } .section { padding: 130px 0; } }

/* Breakpoint próprio do Hero — colapsa para 1 coluna um pouco antes dos
   demais (telas de notebook), evitando o texto do card de estatística
   ficar espremido/cortado nessa faixa intermediária de largura. */
@media (max-width: 1240px) {
  .hero__content { grid-template-columns: 1fr; gap: 48px; }
  .hero__text { max-width: none; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .hero__stats .hero__stat { flex: 1 1 240px; }
}

@media (max-width: 1024px) {
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
  .authority__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { gap: 40px; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__media-box { max-width: 380px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 28px; }
  .contact__info { padding: 48px 40px; }
}

@media (max-width: 900px) {
  :root { --header-h: 84px; }

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

  .header { width: calc(100% - 20px); border-radius: var(--radius-lg); }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 10px auto 10px;
    background: var(--cream);
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    transform: translateY(-16px); opacity: 0; visibility: hidden;
    transition: transform .4s var(--ease), opacity .4s var(--ease), visibility .4s;
    padding: 20px; box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h) - 20px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link {
    display: block; width: 100%; text-align: left; border-radius: var(--radius-sm);
    padding: 15px 14px; color: var(--dark-deep) !important;
    font-size: 1.05rem;
  }

  .header__cta { display: none; }
  .nav__cta-item { display: block; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer__brand { align-items: center; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__col { display: flex; flex-direction: column; align-items: center; }
  .footer__col ul { display: flex; flex-direction: column; align-items: center; }
  .footer__contact li { justify-content: center; }
  .footer__bottom-row { flex-direction: column; gap: 10px; text-align: center; justify-content: center; }
  .footer__legal-links { justify-content: center; }
  .section { padding: 84px 0; }

  .map__frame { height: 300px; }
}

@media (max-width: 600px) {
  :root { --header-h: 84px; }

  .container { padding-inline: 16px; }

  .header { top: 10px; height: 68px; }
  .header__inner { padding-inline: 18px; }
  .header .brand__logo { height: 40px; }
  .header.is-scrolled { height: 62px; }
  .header.is-scrolled .brand__logo { height: 36px; }

  .areas__grid,
  .authority__grid,
  .diff__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form__row { grid-template-columns: 1fr; }

  .hero__inner { padding-top: calc(var(--header-h) + 24px); }
  .hero__eyebrow { font-size: .68rem; letter-spacing: .1em; padding: 7px 14px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; }
  .hero__stat-number { font-size: 1.6rem; }
  .hero__stat-label { font-size: .8rem; }

  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }

  .faq__question { padding: 20px 14px; font-size: .95rem; gap: 14px; }
  .faq__answer p { padding: 0 14px 22px 42px; font-size: .92rem; }

  .contact__info { padding: 36px 22px; }
  .contact__form-wrap { padding: 24px 18px; }
  .contact__list { gap: 20px; }
  .contact__ico { width: 44px; height: 44px; }

  .map__frame { height: 260px; border-radius: var(--radius-sm); }

  .footer { padding-top: 56px; }
  .footer__bottom p { font-size: .82rem; }

  .nav { padding: 16px; }
  .nav__link { padding: 14px 12px; font-size: 1rem; }

  .fab-whatsapp-wrap { right: 16px; bottom: 16px; gap: 10px; }
  .fab-whatsapp { width: 54px; height: 54px; }
  .fab-whatsapp i { width: 26px; height: 26px; }
  .fab-whatsapp-tooltip { padding: 10px 14px; font-size: .8rem; }
  .back-to-top { right: 16px; bottom: 82px; width: 42px; height: 42px; }
  .back-to-top i { width: 20px; height: 20px; }

  .authority__item { padding: 28px 18px; }

  .about__stats { gap: 10px; }
}

@media (max-width: 400px) {
  .container { padding-inline: 14px; }
  .hero__eyebrow { font-size: .62rem; letter-spacing: .08em; padding: 6px 12px; }
  .contact__form-wrap { padding: 20px 14px; }
  .footer__grid { gap: 28px; }
  .fab-whatsapp-tooltip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal], [data-anim], [data-stagger-item] { opacity: 1 !important; transform: none !important; }
  .hero__bg { transform: none; animation: none; }
}

/* ---------- HEADER CTA ---------- */
.header__cta { padding: 10px 20px; font-size: .85rem; gap: 8px; flex-shrink: 0; }
.header__cta i { width: 15px; height: 15px; }

/* ---------- MODAL (usado nas preferências de cookies) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto;
  padding: 5vh 24px;
  background: rgba(28, 27, 26, .45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
body.modal-open { overflow: hidden; }

.modal {
  position: relative; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  background: var(--glass-strong);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 46px 42px;
  transform: translateY(24px) scale(.97); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); opacity: 1; }

.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(28, 27, 26, .06); color: var(--dark-deep);
  transition: background .25s, color .25s, transform .3s var(--ease);
}
.modal__close:hover { background: var(--grad-red); color: var(--white); transform: rotate(90deg); }
.modal__close i { width: 20px; height: 20px; }

.modal__eyebrow { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red-dark); margin-bottom: 10px; }
.modal__title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.5rem, 3vw, 1.9rem); color: var(--dark-deep); margin-bottom: 12px; }
.modal__lead { color: var(--ink); font-size: .95rem; margin-bottom: 30px; }

@media (max-width: 640px) { .modal { padding: 36px 26px; } }
@media (max-width: 480px) {
  .modal-overlay { padding: 3vh 12px; }
  .modal { padding: 30px 20px; max-height: 94vh; }
  .modal__close { top: 12px; right: 12px; }
}

/* ---------- BANNER DE COOKIES ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  padding: 20px;
  transform: translateY(100%); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner__inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  flex-wrap: wrap;
  background: var(--glass-strong);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--glass-border);
  padding: 26px 32px;
}
.cookie-banner__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--dark-deep); margin-bottom: 6px; }
.cookie-banner__text { flex: 1 1 380px; }
.cookie-banner__text p { font-size: .9rem; color: var(--ink); line-height: 1.6; }
.cookie-banner__text a { color: var(--red-dark); font-weight: 600; text-decoration: underline; }
.cookie-banner__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; flex: 0 0 auto; }
.cookie-banner__actions .btn { padding: 12px 22px; font-size: .88rem; white-space: nowrap; }
.cookie-banner__link {
  background: none; border: none; padding: 0; font: inherit;
  font-size: .85rem; color: var(--ink); text-decoration: underline;
  cursor: pointer; transition: color .25s;
}
.cookie-banner__link:hover { color: var(--red-dark); }

.cookie-pref { border: 1px solid rgba(28, 27, 26, .12); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 14px; }
.cookie-pref__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.cookie-pref__head strong { color: var(--dark-deep); font-size: .96rem; }
.cookie-pref__badge {
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--red-dark); background: rgba(196, 30, 44, .12);
  padding: 4px 10px; border-radius: 999px;
}
.cookie-pref p { font-size: .85rem; color: var(--gray); }

.cookie-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-switch__slider { position: absolute; inset: 0; border-radius: 999px; background: var(--light-gray); transition: background .25s var(--ease); }
.cookie-switch__slider::before {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.cookie-switch input:checked + .cookie-switch__slider { background: var(--grad-red); }
.cookie-switch input:checked + .cookie-switch__slider::before { transform: translateX(20px); }
.cookie-switch input:focus-visible + .cookie-switch__slider { outline: 2px solid var(--red-dark); outline-offset: 2px; }

@media (max-width: 640px) {
  .cookie-banner { padding: 12px; }
  .cookie-banner__inner { padding: 22px; flex-direction: column; align-items: stretch; text-align: left; gap: 18px; }
  .cookie-banner__text { flex: none; }
  .cookie-banner__actions { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions .btn { width: 100%; text-align: center; }

  #cookiePrefsModal { padding: 22px 18px; max-height: 88vh; }
  #cookiePrefsModal .modal__close { width: 32px; height: 32px; top: 10px; right: 10px; }
  #cookiePrefsModal .modal__close i { width: 16px; height: 16px; }
  #cookiePrefsModal .modal__eyebrow { font-size: .68rem; margin-bottom: 6px; }
  #cookiePrefsModal .modal__title { font-size: 1.2rem; margin-bottom: 8px; }
  #cookiePrefsModal .modal__lead { font-size: .82rem; margin-bottom: 16px; }
  #cookiePrefsModal .cookie-pref { padding: 10px 12px; margin-bottom: 10px; }
  #cookiePrefsModal .cookie-pref__head { margin-bottom: 3px; }
  #cookiePrefsModal .cookie-pref__head strong { font-size: .84rem; }
  #cookiePrefsModal .cookie-pref__badge { font-size: .62rem; padding: 3px 8px; }
  #cookiePrefsModal .cookie-pref p { font-size: .76rem; }
  #cookiePrefsModal .cookie-switch { width: 38px; height: 21px; }
  #cookiePrefsModal .cookie-switch__slider::before { width: 15px; height: 15px; top: 3px; left: 3px; }
  #cookiePrefsModal .cookie-switch input:checked + .cookie-switch__slider::before { transform: translateX(17px); }
  #cookiePrefsModal #cookieSavePrefs { padding: 12px 18px; font-size: .86rem; }
}

/* ---------- PÁGINA DE TEXTO LEGAL (política de cookies) ---------- */
.legal { padding: 160px 0 100px; }
.legal__header { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.legal__eyebrow { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red-dark); margin-bottom: 12px; }
.legal__title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--dark-deep); margin-bottom: 14px; }
.legal__updated { font-size: .88rem; color: var(--gray); }
.legal__body { max-width: 760px; margin: 0 auto; }
.legal__body h2 { font-family: var(--font-heading); font-weight: 600; font-size: 1.45rem; color: var(--dark-deep); margin: 44px 0 14px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { font-size: .98rem; line-height: 1.75; color: var(--ink); margin-bottom: 14px; }
.legal__body ul { padding-left: 22px; margin-bottom: 14px; }
.legal__body li { font-size: .98rem; line-height: 1.75; color: var(--ink); margin-bottom: 8px; }
.legal__body a { color: var(--red-dark); font-weight: 600; text-decoration: underline; }
.legal__table-wrap { overflow-x: auto; margin-bottom: 20px; border: 1px solid rgba(28, 27, 26, .12); border-radius: var(--radius-sm); }
.legal__table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 520px; }
.legal__table th, .legal__table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--light-gray); }
.legal__table th { background: var(--light-gray); color: var(--dark-deep); font-weight: 700; }
.legal__table tr:last-child td { border-bottom: none; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-size: .92rem; font-weight: 600; color: var(--dark-deep); }
.legal__back:hover { color: var(--red-dark); }
.legal__back i { width: 18px; height: 18px; }

@media (max-width: 640px) { .legal { padding: 130px 0 70px; } }
