/* =========================================================
   Olimpio Advocacia — estilos
   Paleta: marinho do escudo + dourado do louro, fundo off-white
   ========================================================= */
:root {
  --navy: #0F1E3D;
  --navy-2: #1B2F57;
  --gold: #C9A96E;       /* destaque sobre fundo escuro */
  --gold-ink: #8C6A2F;   /* dourado para texto sobre claro (AA) */
  --bg: #FAF8F3;
  --bg-alt: #F1EDE4;
  --ink: #1C2230;
  --muted: #5A6272;
  --line: #E3DED3;
  --white: #fff;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 4px;
  --shadow: 0 1px 2px rgba(15, 30, 61, .05), 0 12px 32px -12px rgba(15, 30, 61, .18);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1em; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: var(--white); padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: 8px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.eyebrow {
  font: 600 .78rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: 1.1rem; display: inline-flex; align-items: center; gap: .75rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--gold); }

.rule { display: block; width: 48px; height: 1px; background: var(--gold); margin: 1rem auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: 0 1.6rem; border-radius: var(--radius);
  font: 600 .95rem/1 var(--sans); letter-spacing: .01em; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: background .25s var(--ease), color .25s, border-color .25s, transform .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #d6b87f; }
.btn--ghost { border-color: var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--sm { min-height: 42px; padding: 0 1.1rem; font-size: .88rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(250, 248, 243, .92); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .3s, height .3s var(--ease);
}
.header.is-scrolled { border-color: var(--line); --header-h: 64px; }
.header__inner { height: 100%; display: flex; align-items: center; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; margin-right: auto; }
.brand img { width: 48px; height: 48px; transition: width .3s, height .3s; }
.is-scrolled .brand img { width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font: 600 1.55rem/1 var(--serif); color: var(--navy); letter-spacing: .06em; text-transform: uppercase; }
.brand__text small { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); margin-top: .3rem; }

.nav__list { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
.nav__list a { position: relative; text-decoration: none; font-size: .92rem; font-weight: 500; color: var(--ink); padding: .4rem 0; }
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__list a:hover::after { transform: scaleX(1); }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero { padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; right: -10%; top: -20%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 169, 110, .16), transparent 65%); pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; position: relative; }
.hero h1 em { font-style: italic; color: var(--gold-ink); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 36em; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__card {
  background: var(--navy); color: var(--white); padding: 3rem 2.5rem 2.5rem; text-align: center;
  border-radius: var(--radius); box-shadow: var(--shadow); position: relative;
}
.hero__card::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(201, 169, 110, .35); border-radius: 2px; pointer-events: none; }
.hero__card img { width: 180px; height: 180px; margin: 0 auto 1.25rem; filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .35)); }
.hero__card-name { font: 600 1.9rem/1 var(--serif); letter-spacing: .08em; text-transform: uppercase; margin: 0; color: var(--white); }
.hero__facts { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__facts li { display: flex; flex-direction: column; gap: .2rem; padding: 0 .5rem; }
.hero__facts li + li { border-left: 1px solid rgba(201, 169, 110, .3); }
.hero__facts strong { font: 600 1.3rem/1.1 var(--serif); color: var(--gold); }
.hero__facts span { font-size: .78rem; color: rgba(255, 255, 255, .72); }

/* ---------- Faixa ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__grid div { display: flex; align-items: center; justify-content: center; gap: .7rem; padding: 1.4rem .75rem; font-size: .9rem; font-weight: 500; color: var(--navy); text-align: left; }
.strip__grid div + div { border-left: 1px solid var(--line); }
.strip svg { color: var(--gold-ink); width: 1.35em; height: 1.35em; }

/* ---------- Seções ---------- */
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin-bottom: 3.5rem; }
.section__head p:last-child { color: var(--muted); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cards .card { padding: 2rem 1.6rem; }
.cards .card::after { left: 1.6rem; right: 1.6rem; }
@media (max-width: 1100px) { .cards { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem 2rem;
  position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card::after { content: ""; position: absolute; left: 2rem; right: 2rem; top: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card svg { width: 38px; height: 38px; color: var(--gold-ink); stroke-width: 1.3; margin-bottom: 1.4rem; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* Sobre */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about__photo { margin: 0; position: relative; }
.about__photo::before { content: ""; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid var(--gold); border-radius: var(--radius); }
.photo-placeholder, .about__photo > img {
  position: relative; aspect-ratio: 4 / 5; width: 100%; border-radius: var(--radius); object-fit: cover;
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
}
.photo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: rgba(255, 255, 255, .55); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.photo-placeholder img { opacity: .9; }
.about__text > p { color: var(--muted); }
.values { list-style: none; padding: 0; margin: 1.8rem 0; display: grid; gap: .9rem; }
.values li { padding-left: 1.4rem; position: relative; color: var(--muted); }
.values li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.values strong { color: var(--navy); }
.signature { font: italic 600 1.6rem/1 var(--serif); color: var(--navy) !important; margin-top: 2rem; }
.signature span { font: 400 .85rem var(--sans); color: var(--muted); font-style: normal; }

/* Passos */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; counter-reset: s; }
.steps li { border-top: 1px solid var(--line); padding-top: 1.8rem; position: relative; }
.steps li::before { content: ""; position: absolute; top: -1px; left: 0; width: 56px; height: 1px; background: var(--gold); }
.steps__n { font: 500 3.2rem/1 var(--serif); color: var(--gold); display: block; margin-bottom: 1rem; }
.steps p { color: var(--muted); margin: 0; }

/* Faixa CTA */
.band { background: var(--navy-2); color: var(--white); padding: 3.5rem 0; }
.band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.band h2 { color: var(--white); margin: 0 0 .3rem; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.band p { margin: 0; color: rgba(255, 255, 255, .75); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font: 600 1.35rem/1.3 var(--serif); color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after, .faq summary::before { content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 1.5px; background: var(--gold-ink); transition: transform .3s var(--ease); }
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(0); }
.faq details p { color: var(--muted); padding-right: 3rem; margin: -.4rem 0 1.6rem; }

/* Contato */
.section--dark { background: var(--navy); color: rgba(255, 255, 255, .85); }
.section--dark h2 { color: var(--white); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.contact__lead { color: rgba(255, 255, 255, .7); margin-bottom: 2.4rem; }
.channels { list-style: none; padding: 0; margin: 0; display: grid; gap: .25rem; }
.channels a, .channels div { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1rem 0; text-decoration: none; color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, .1); }
.channels a:hover span { color: var(--gold); }
.channels svg { color: var(--gold); width: 22px; height: 22px; margin-top: .2rem; }
.channels span { transition: color .2s; line-height: 1.5; }
.channels small { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-bottom: .15rem; }

.form { background: var(--white); color: var(--ink); padding: 2.5rem; border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5); }
.form h3 { margin-bottom: .3rem; }
.form__hint { font-size: .86rem; color: var(--muted); margin-bottom: 1.6rem; }
.form label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin: 0 0 .4rem; }
.form .opt { font-weight: 400; color: var(--muted); }
.form input:not([type=checkbox]), .form select, .form textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem .95rem; margin-bottom: 1.15rem;
  transition: border-color .2s, box-shadow .2s;
}
.form textarea { resize: vertical; min-height: 90px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold-ink); box-shadow: 0 0 0 3px rgba(201, 169, 110, .25); }
.form [aria-invalid=true] { border-color: #B3261E !important; }
.form .check { display: flex; gap: .65rem; align-items: flex-start; font-weight: 400; color: var(--muted); margin: .2rem 0 1.4rem; }
.form .check input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--navy); }
.form .check a { color: var(--navy); }
.form__error { color: #B3261E; font-size: .88rem; margin: -.4rem 0 1rem; }
.form .btn--gold { background: var(--navy); color: var(--white); }
.form .btn--gold:hover { background: var(--navy-2); }

.map { margin-top: 4rem; height: 340px; border-radius: var(--radius); overflow: hidden; background: var(--navy-2); border: 1px solid rgba(201, 169, 110, .25); display: grid; place-items: center; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(1.05); }
.map__load { display: inline-flex; gap: .6rem; align-items: center; background: transparent; color: var(--gold); border: 1px solid var(--gold); border-radius: var(--radius); padding: .9rem 1.4rem; font: 600 .92rem var(--sans); cursor: pointer; transition: background .25s, color .25s; }
.map__load:hover { background: var(--gold); color: var(--navy); }

/* Footer */
.footer { background: #0A152C; color: rgba(255, 255, 255, .65); font-size: .9rem; padding: 3.5rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1.4fr auto; gap: 2rem; align-items: start; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer__brand { display: flex; gap: 1rem; align-items: center; }
.footer__brand strong { display: block; font: 600 1.35rem/1.1 var(--serif); color: var(--white); letter-spacing: .06em; text-transform: uppercase; }
.footer address { font-style: normal; line-height: 1.8; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__legal p { margin: 1.5rem 0 0; font-size: .78rem; color: rgba(255, 255, 255, .45); }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white); display: grid; place-items: center;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, .35); transition: transform .3s var(--ease);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.07); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: pulse 2.6s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

/* Revelação no scroll */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* Página interna (privacidade) */
.page { padding: clamp(3rem, 8vw, 6rem) 0; }
.page h2 { font-size: 1.7rem; margin-top: 2.5rem; }
.page p, .page li { color: var(--muted); }

/* Link "saiba mais" nos cards */
.card { display: flex; flex-direction: column; }
.card > p { margin-bottom: 0; }
.card__links { display: flex; flex-wrap: wrap; gap: .2rem 1.4rem; margin-top: auto; }
.card > .card__more, .card__links { padding-top: 1.2rem; margin-top: auto; }
.card__more { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; font-weight: 600; color: var(--gold-ink); text-decoration: none; }
.card__more::after { content: "→"; transition: transform .25s var(--ease); }
.card__more:hover::after { transform: translateX(4px); }

/* ---------- Páginas de área ---------- */
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 1.6rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--navy); }
.crumbs span { margin: 0 .45rem; color: var(--line); }

.page-hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -15%; top: -40%; width: 55%; aspect-ratio: 1; background: radial-gradient(circle, rgba(201, 169, 110, .14), transparent 65%); pointer-events: none; }
.page-hero h1 { max-width: 16em; }
.page-hero .lead { margin-bottom: 2rem; }

.article { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2.5rem, 6vw, 5rem); padding-top: clamp(3.5rem, 8vw, 6rem); padding-bottom: clamp(3.5rem, 8vw, 6rem); align-items: start; }
.prose { max-width: 44em; }
.prose h2 { font-size: clamp(1.75rem, 3vw, 2.2rem); margin-top: 3rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.35rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--gold-ink); }
.prose strong { color: var(--ink); font-weight: 600; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.6rem 0 1rem; }
.compare > div { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.compare h3 { margin-top: 0; }
.compare ul { margin: 0; }

.types { display: grid; gap: .9rem; margin: 1.6rem 0; }
.types > div { background: var(--white); border: 1px solid var(--line); border-left: 2px solid var(--gold); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.types h3 { margin: 0 0 .35rem; font-size: 1.25rem; }
.types p { margin: 0; font-size: .96rem; }
.types .tag { display: inline-block; font: 600 .72rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--gold-ink); background: var(--bg-alt); padding: .35rem .55rem; border-radius: 2px; margin-left: .5rem; vertical-align: middle; }

.note { background: var(--bg-alt); border-left: 2px solid var(--gold-ink); padding: 1.1rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.6rem 0; font-size: .95rem; color: var(--ink); }
.note p { margin: 0; color: var(--ink); }

.aside { position: sticky; top: calc(var(--header-h) + 24px); background: var(--navy); color: rgba(255, 255, 255, .8); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow); }
.aside::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(201, 169, 110, .3); border-radius: 2px; pointer-events: none; }
.aside h2 { color: var(--white); font-size: 1.6rem; margin-bottom: .6rem; }
.aside p { font-size: .93rem; margin-bottom: 1.4rem; }
.aside .btn { width: 100%; margin-bottom: .7rem; position: relative; }
.aside .btn--ghost { border-color: rgba(255, 255, 255, .35); color: var(--white); }
.aside .btn--ghost:hover { background: var(--white); color: var(--navy); }
.aside small { display: block; margin-top: .8rem; font-size: .78rem; color: rgba(255, 255, 255, .55); text-align: center; }

.related { border-top: 1px solid var(--line); padding: 3rem 0 4.5rem; }
.related__links { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.related__links a { text-decoration: none; border: 1px solid var(--line); background: var(--white); padding: .7rem 1.1rem; border-radius: var(--radius); font-size: .92rem; font-weight: 500; color: var(--navy); transition: border-color .2s; }
.related__links a:hover { border-color: var(--gold); }

.footer__nav { display: grid; grid-template-columns: repeat(2, auto); gap: .5rem 1.8rem; align-content: start; }

/* ---------- Responsivo ---------- */
@media (max-width: 1000px) {
  .header__cta { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .nav__toggle span { width: 24px; height: 1.5px; background: var(--navy); transition: transform .3s, opacity .3s; }
  .nav__toggle[aria-expanded=true] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle[aria-expanded=true] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded=true] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav__list {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 0; background: var(--bg);
    border-bottom: 1px solid var(--line); padding: .5rem 24px 1.5rem; box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all .3s var(--ease);
  }
  .nav__list.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__list a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__list a::after { display: none; }

  .hero__grid, .about, .contact { grid-template-columns: 1fr; }
  .hero__card { max-width: 440px; }
  .about__photo { max-width: 420px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__grid div:nth-child(3) { border-left: 0; }
  .strip__grid div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr; }
  .article { grid-template-columns: 1fr; }
  .aside { position: relative; top: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .cards, .steps { grid-template-columns: 1fr; }
  .steps { gap: 2.2rem; }
  .hero__actions .btn { width: 100%; }
  .hero__card { padding: 2.5rem 1.5rem 2rem; }
  .hero__card img { width: 140px; height: 140px; }
  .strip__grid { grid-template-columns: 1fr; }
  .strip__grid div { justify-content: flex-start; border-left: 0 !important; }
  .strip__grid div + div { border-top: 1px solid var(--line); }
  .form { padding: 1.8rem 1.4rem; }
  .brand__text strong { font-size: 1.35rem; }
  .band__inner .btn { width: 100%; }
  .wa-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .compare { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
