/* =========================================================================
   MÁXIMO DESPACHANTE — Design system
   Preto #0d0d0f · Vermelho #e31e24 · Branco
   ========================================================================= */

:root {
  --black: #0d0d0f;
  --black-2: #151519;
  --black-3: #1e1e24;
  --red: #e31e24;
  --red-600: #c4161c;
  --red-soft: rgba(227, 30, 36, .12);
  --white: #ffffff;
  --paper: #f6f7f9;
  --paper-2: #eceef2;
  --ink: #15161a;
  --ink-2: #454750;
  --ink-3: #74767f;
  --line: #e4e6eb;
  --line-2: #d2d5dd;
  --ok: #12855a;

  --sans: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --disp: "Manrope", var(--sans);

  --wrap: 1180px;
  --gut: clamp(18px, 4.5vw, 44px);
  --sec: clamp(58px, 8vw, 104px);
  --r: 10px;
  --r-lg: 16px;
  --hdr: 80px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --sh-sm: 0 4px 16px -6px rgba(13, 13, 15, .18);
  --sh-md: 0 16px 42px -20px rgba(13, 13, 15, .32);
  --sh-lg: 0 32px 74px -34px rgba(13, 13, 15, .5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr) + 14px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--white); color: var(--ink-2);
  line-height: 1.68; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
/* rede de segurança: SVG inline sem regra própria não estoura o container */
svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

/* ---- tipos ---- */
h1, h2, h3, h4 { font-family: var(--disp); color: var(--ink); line-height: 1.16; font-weight: 800; letter-spacing: -.025em; }
.h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h2 { font-size: clamp(1.65rem, 3.2vw, 2.5rem); }
.h3 { font-size: clamp(1.12rem, 1.7vw, 1.35rem); }
.lead { font-size: clamp(1rem, 1.25vw, 1.13rem); }
p a { color: var(--red); font-weight: 600; }
p a:hover { text-decoration: underline; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px; font-size: .73rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: var(--red);
}
.kicker::before { content: ""; width: 20px; height: 3px; border-radius: 3px; background: var(--red); }
.kicker--light { color: #ff8f93; }
.kicker--light::before { background: var(--red); }

/* ---- layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec); position: relative; }
.section--alt { background: var(--paper); }
.section--dark { background: var(--black); color: rgba(255,255,255,.76); }
.section--dark h2, .section--dark h3 { color: #fff; }
.sec-head { max-width: 700px; margin-bottom: clamp(30px, 4.5vw, 50px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin-top: 12px; }
.sec-head p { margin-top: 13px; }

/* =========================================================================
   BOTÕES
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--r); font-weight: 700; font-size: .93rem;
  border: 2px solid transparent; transition: all .25s var(--ease); white-space: nowrap;
  font-family: var(--disp); letter-spacing: -.01em;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--wa { background: #25d366; color: #06331c; }
.btn--wa:hover { background: #1fbb59; color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(37,211,102,.7); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 14px 32px -14px rgba(227,30,36,.7); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--black-3); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn--ghost-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* =========================================================================
   HEADER
   ========================================================================= */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 90; height: var(--hdr);
  background: rgba(13,13,15,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08); transition: height .3s var(--ease);
}
.hdr.stuck { height: 66px; box-shadow: 0 8px 26px -14px rgba(0,0,0,.7); }
.hdr__in { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 40px); height: 100%; }
.hdr__logo { flex: none; }
.hdr__logo img { height: 52px; width: auto; transition: height .3s var(--ease); }
.hdr.stuck .hdr__logo img { height: 42px; }
.hdr__nav { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 24px); margin-right: auto; }
.hdr__nav a {
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.78); position: relative; padding: 6px 0;
  transition: color .2s; white-space: nowrap;
}
.hdr__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 100%; border-radius: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.hdr__nav a:hover, .hdr__nav a[aria-current="page"] { color: #fff; }
.hdr__nav a:hover::after, .hdr__nav a[aria-current="page"]::after { transform: scaleX(1); }
.hdr__cta { padding: 11px 20px; font-size: .85rem; }
.burger { display: none; width: 46px; height: 46px; position: relative; border-radius: 8px; }
.burger span { position: absolute; left: 12px; width: 22px; height: 2.5px; border-radius: 3px; background: #fff; transition: .3s var(--ease); }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--hdr) 0 auto; z-index: 88; background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.1); padding: 10px var(--gut) 24px; max-height: calc(100dvh - var(--hdr)); overflow-y: auto;
  transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.drawer.open { transform: none; opacity: 1; visibility: visible; }
.drawer a { display: block; font-family: var(--disp); font-weight: 700; font-size: 1.06rem; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.drawer a:last-of-type { border-bottom: 0; }
.drawer a.btn { display: flex; padding: 15px 24px; margin-top: 16px; border-bottom: 0; justify-content: center; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; padding-top: var(--hdr); background: var(--black); overflow: hidden; color: #fff; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; opacity: .34; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(13,13,15,.97) 0%, rgba(13,13,15,.92) 42%, rgba(13,13,15,.6) 72%, rgba(13,13,15,.4) 100%);
}
.hero__glow { position: absolute; z-index: 0; width: 60vw; max-width: 700px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,36,.24), transparent 66%); top: -18%; right: -8%; pointer-events: none; }
.hero__in { position: relative; z-index: 2; padding-block: clamp(52px, 8vw, 104px); }
.hero__in > * { max-width: 660px; }
.hero h1 { color: #fff; margin: 16px 0 18px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero p.hero__sub { color: rgba(255,255,255,.8); font-size: clamp(1rem, 1.3vw, 1.14rem); }
.hero__cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; max-width: none; }
.hero__badges { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; max-width: none; }
.hero__badges span {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); font-size: .8rem; color: rgba(255,255,255,.88);
}
.hero__badges svg { width: 15px; height: 15px; color: var(--red); flex: none; }

/* faixa de credibilidade */
.strip { background: var(--red); color: #fff; }
.strip__in { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 4vw, 48px); flex-wrap: wrap; padding: 16px 0; }
.strip b { font-family: var(--disp); font-weight: 800; font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; }
.strip svg { width: 17px; height: 17px; }

/* =========================================================================
   DIFERENCIAIS
   ========================================================================= */
.feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.feat:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--red); }
.feat__i { width: 44px; height: 44px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; margin-bottom: 14px; }
.feat__i svg { width: 22px; height: 22px; }
.feat h3 { font-size: 1.03rem; }
.feat p { font-size: .88rem; color: var(--ink-3); margin-top: 6px; }

/* =========================================================================
   BLOCO EDITORIAL (quebra a monotonia de grades)
   ========================================================================= */
.edito { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.edito--top { align-items: start; }
.edito--top .edito__txt { padding-top: 6px; }
.edito__txt h2 { margin-bottom: 16px; }
.edito__txt p + p { margin-top: 13px; }
.edito__txt .btn { margin-top: 24px; }
.pull {
  position: relative; background: var(--black); color: #fff; border-radius: var(--r-lg);
  padding: clamp(26px, 3.5vw, 38px); overflow: hidden;
}
.pull::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,36,.28), transparent 70%); top: -110px; right: -70px; }
.pull__q { position: relative; font-family: var(--disp); font-weight: 800; font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.28; color: #fff; }
.pull__q b { color: var(--red); }
.pull p { position: relative; color: rgba(255,255,255,.72); font-size: .93rem; margin-top: 14px; }
.pull .btn { position: relative; margin-top: 20px; }

/* lista de checagem (substitui grade de cards genéricos) */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 34px; }
.checks div { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line); }
.checks svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 3px; }
.checks b { display: block; font-family: var(--disp); font-weight: 700; color: var(--ink); font-size: .97rem; }
.checks span { font-size: .87rem; color: var(--ink-3); }

/* passos em linha, sem caixas */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); counter-reset: f; }
.flow__i { position: relative; padding-top: 22px; border-top: 2px solid rgba(255,255,255,.16); }
.flow__i b { display: block; font-family: var(--disp); font-weight: 800; font-size: .78rem; letter-spacing: .12em; color: var(--red); margin-bottom: 9px; }
.flow__i h3 { font-size: 1.1rem; color: #fff; }
.flow__i p { font-size: .89rem; color: rgba(255,255,255,.64); margin-top: 7px; }

/* =========================================================================
   SERVIÇOS
   ========================================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px 24px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--red); }
.svc__i { width: 46px; height: 46px; border-radius: 12px; background: var(--black); color: var(--red); display: grid; place-items: center; margin-bottom: 15px; }
.svc__i svg { width: 23px; height: 23px; }
.svc h3 { font-size: 1.08rem; }
.svc p { font-size: .89rem; color: var(--ink-3); margin-top: 8px; flex: 1; }
.svc__go { margin-top: 16px; font-size: .84rem; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.svc__go svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.svc:hover .svc__go svg { transform: translateX(4px); }
.svc__link { position: absolute; inset: 0; border-radius: var(--r-lg); }

/* =========================================================================
   PASSOS
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
.step { position: relative; padding: 26px 22px; background: var(--black-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); }
.step b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--disp); font-weight: 800; margin-bottom: 14px; }
.step h3 { font-size: 1.02rem; color: #fff; }
.step p { font-size: .87rem; color: rgba(255,255,255,.66); margin-top: 6px; }

/* =========================================================================
   DEPOIMENTOS
   ========================================================================= */
.revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px; display: flex; flex-direction: column; }
.rev__stars { color: #f5a623; letter-spacing: 2px; font-size: .95rem; }
.rev p { font-size: .92rem; color: var(--ink-2); margin: 12px 0 16px; flex: 1; }
.rev__who { display: flex; align-items: center; gap: 11px; }
.rev__av { width: 40px; height: 40px; border-radius: 50%; background: var(--black); color: #fff; display: grid; place-items: center; font-family: var(--disp); font-weight: 800; font-size: .95rem; flex: none; }
.rev__who b { display: block; font-size: .9rem; color: var(--ink); font-family: var(--disp); }
.rev__who span { font-size: .78rem; color: var(--ink-3); }
.revs-more { text-align: center; margin-top: 28px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .25s; }
.faq details[open] { border-color: var(--red); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; position: relative;
  font-family: var(--disp); font-weight: 700; color: var(--ink); font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 10px; height: 10px; margin-top: -6px;
  border-right: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red); transform: rotate(45deg); transition: transform .28s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .faq__a { padding: 0 20px 20px; font-size: .94rem; color: var(--ink-2); }

/* =========================================================================
   CTA FAIXA
   ========================================================================= */
.cta { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(227,30,36,.22), transparent 68%); top: -150px; right: -80px; }
.cta__in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: clamp(38px, 5.5vw, 62px); }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.76); margin-top: 7px; }

/* =========================================================================
   FORMULÁRIOS
   ========================================================================= */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3.5vw, 36px); box-shadow: var(--sh-sm); }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--ink); }
.field label span { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: var(--r);
  background: #fff; font-size: .96rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 112px; resize: vertical; line-height: 1.6; }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2374767f' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.field.err input, .field.err select, .field.err textarea { border-color: var(--red); }
.check { display: flex; gap: 11px; align-items: flex-start; grid-column: 1 / -1; }
.check input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--red); cursor: pointer; }
.check label { font-size: .85rem; font-weight: 400; color: var(--ink-2); cursor: pointer; }
.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 22px; flex-wrap: wrap; }
.form-msg { margin-top: 15px; padding: 14px 16px; border-radius: var(--r); font-size: .9rem; display: none; }
.form-msg.on { display: block; }
.form-msg--ok { background: #e8f6ef; color: var(--ok); border: 1px solid #b9e3d0; }
.form-msg--err { background: #fdecef; color: var(--red-600); border: 1px solid #f7c6cf; }

/* =========================================================================
   CONTATO
   ========================================================================= */
.contact__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: start; }
.cinfo { display: grid; gap: 12px; }
.citem { display: flex; gap: 13px; align-items: flex-start; padding: 17px 19px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); transition: border-color .25s, transform .25s var(--ease); }
.citem:hover { border-color: var(--red); transform: translateX(3px); }
.citem__i { width: 42px; height: 42px; border-radius: 11px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex: none; }
.citem__i svg { width: 20px; height: 20px; }
.citem b { display: block; font-family: var(--disp); font-weight: 700; color: var(--ink); font-size: .94rem; }
.citem span, .citem a { font-size: .9rem; color: var(--ink-2); }
.hours { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; }
.hours h3 { font-size: 1rem; margin-bottom: 12px; }
.hours dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; font-size: .89rem; }
.hours dt { color: var(--ink-2); }
.hours dd { color: var(--ink); font-weight: 600; }
.hours dd.closed { color: var(--ink-3); font-weight: 400; }
.map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 300px; border: 0; display: block; }

/* =========================================================================
   PÁGINAS INTERNAS
   ========================================================================= */
.phero { background: var(--black); color: #fff; padding-top: var(--hdr); position: relative; overflow: hidden; }
.phero::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(227,30,36,.2), transparent 68%); top: -180px; right: -100px; }
.phero__in { position: relative; padding-block: clamp(40px, 6vw, 76px); }
.phero h1 { color: #fff; margin-top: 14px; max-width: 20ch; }
.phero p { color: rgba(255,255,255,.78); margin-top: 14px; max-width: 62ch; }
.crumb { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: rgba(255,255,255,.6); flex-wrap: wrap; }
.crumb a:hover { color: #fff; }
.crumb svg { width: 13px; height: 13px; opacity: .6; }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-top: 38px; }
.prose h3 { font-size: 1.14rem; margin-top: 26px; }
.prose p { margin-top: 14px; }
.prose ul, .prose ol { margin-top: 14px; padding-left: 4px; display: grid; gap: 9px; }
.prose li { list-style: none; display: flex; gap: 10px; font-size: .96rem; }
.prose li::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--red); flex: none; margin-top: 9px; }
.prose ol { counter-reset: n; }
.prose ol li { counter-increment: n; }
.prose ol li::before { content: counter(n); width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: #fff; font-size: .72rem; font-weight: 700; display: grid; place-items: center; margin-top: 2px; }
.prose .note { margin-top: 22px; padding: 18px 20px; background: var(--paper); border-left: 3px solid var(--red); border-radius: 0 var(--r) var(--r) 0; font-size: .94rem; }

.page__grid { display: grid; grid-template-columns: 1fr 320px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.aside { position: sticky; top: calc(var(--hdr) + 18px); display: grid; gap: 14px; }
.abox { background: var(--black); color: #fff; border-radius: var(--r-lg); padding: 24px 22px; }
.abox h3 { color: #fff; font-size: 1.08rem; }
.abox p { font-size: .88rem; color: rgba(255,255,255,.74); margin-top: 7px; }
.abox .btn { margin-top: 15px; }
.abox--red { background: var(--red); }
.abox--red p { color: rgba(255,255,255,.86); }
.alist { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; }
.alist h3 { font-size: .95rem; margin-bottom: 10px; }
.alist a { display: block; font-size: .88rem; padding: 7px 0; color: var(--ink-2); border-bottom: 1px solid var(--line); transition: color .2s; }
.alist a:last-child { border-bottom: 0; }
.alist a:hover { color: var(--red); }

/* blog */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.post:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--red); }
.post__tag { aspect-ratio: 16/9; background: var(--black); color: var(--red); display: grid; place-items: center; overflow: hidden; }
.post__tag svg { width: 46px; height: 46px; }
.post__tag img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.post:hover .post__tag img { transform: scale(1.05); }
.post__b { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.post__k { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.post h3 { font-size: 1.05rem; margin-top: 8px; }
.post p { font-size: .87rem; color: var(--ink-3); margin-top: 8px; flex: 1; }
.post__go { margin-top: 14px; font-size: .83rem; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.post__go svg { width: 15px; height: 15px; flex: none; transition: transform .25s var(--ease); }
.post:hover .post__go svg { transform: translateX(4px); }
.post__link { position: absolute; inset: 0; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.ft { background: var(--black); color: rgba(255,255,255,.66); padding-top: clamp(44px, 6vw, 68px); }
.ft__in { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.ft__logo { height: 50px; width: auto; margin-bottom: 16px; }
.ft__brand p { font-size: .87rem; max-width: 34ch; }
.ft__social { display: flex; gap: 10px; margin-top: 16px; }
.ft__social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; transition: all .25s var(--ease); }
.ft__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.ft__social svg { width: 18px; height: 18px; }
.ft h4 { color: #fff; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 13px; font-weight: 700; }
.ft__col a, .ft__col p { display: block; font-size: .87rem; padding: 5px 0; transition: color .2s; }
.ft__col a:hover { color: var(--red); }
.ft__bot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-block: 20px; font-size: .79rem; color: rgba(255,255,255,.5); }
.ft__bot a { display: inline-block; padding: 10px 2px; }
.ft__bot a:hover { color: #fff; }

/* whatsapp flutuante */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 80; display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px 13px 14px; border-radius: 100px; background: #25d366; color: #06331c; font-weight: 800;
  font-family: var(--disp); font-size: .9rem; box-shadow: 0 14px 32px -10px rgba(0,0,0,.45); transition: transform .28s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float svg { width: 26px; height: 26px; flex: none; }

/* cookies */
.cookies {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95; max-width: 560px;
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 18px 20px; display: none; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cookies.on { display: flex; }
.cookies p { font-size: .85rem; flex: 1 1 260px; }
.cookies .btn { padding: 10px 18px; font-size: .84rem; }

/* =========================================================================
   REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =========================================================================
   RESPONSIVO
   ========================================================================= */
@media (max-width: 1080px) {
  .feats { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .revs, .posts { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .page__grid { grid-template-columns: 1fr; }
  .aside { position: static; grid-template-columns: 1fr 1fr; }
  .ft__in { grid-template-columns: 1fr 1fr; }
  .ft__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  :root { --hdr: 68px; }
  .hdr__nav, .hdr__cta { display: none; }
  .burger { display: block; margin-left: auto; flex: none; }
  .contact__in { grid-template-columns: 1fr; }
  .cta__in { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .hero__bg::after { background: linear-gradient(180deg, rgba(13,13,15,.93) 0%, rgba(13,13,15,.9) 55%, rgba(13,13,15,.86) 100%); }
  .feats, .svc-grid, .revs, .posts, .steps { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .aside { grid-template-columns: 1fr; }
  .ft__in { grid-template-columns: 1fr; gap: 24px; }
  .hero__cta .btn, .form-actions .btn, .cta__in .btn { width: 100%; }
  .ft__col a, .ft__col p { padding: 10px 0; }
  .wa-float { padding: 12px; right: 14px; bottom: 14px; }
  .wa-float span { display: none; }
  .cookies { left: 12px; right: 12px; bottom: 12px; }
  .cookies .btn { width: 100%; }
  .hours dl { grid-template-columns: 1fr auto; }
}

@media (max-width: 900px) {
  .edito { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 6px; }
  .flow__i { padding-top: 18px; }
}

/* =========================================================================
   FOTOS (bloco editorial, artigos)
   ========================================================================= */
.edito__media { position: relative; }
.edito__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-md); aspect-ratio: 4/3; object-fit: cover; }
.edito__badge {
  position: absolute; left: 16px; right: 16px; bottom: 16px; background: rgba(13, 13, 15, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff;
  border-radius: var(--r); padding: 18px 20px; border: 1px solid rgba(255,255,255,.12);
}
.edito__badge p { font-size: .95rem; color: rgba(255,255,255,.82); }
.edito__badge b { color: #fff; font-family: var(--disp); }
.edito__badge a { display: inline-block; margin-top: 9px; font-size: .84rem; font-weight: 700; color: var(--red); }
.edito__badge a:hover { text-decoration: underline; }

.post-hero { margin-bottom: 30px; }
.post-hero img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-sm); aspect-ratio: 16/9; object-fit: cover; }

@media (max-width: 700px) {
  .edito__media img { aspect-ratio: 4/3.2; }
  .edito__badge { left: 12px; right: 12px; bottom: 12px; padding: 15px 16px; }
  .post-hero img { aspect-ratio: 16/10; }
}
