/* ============================================================
   Relevância Contábil — REDESIGN v2
   Mesma paleta da marca, composição inspirada em landing premium.
   #025492 azul (marca) · #0466A9 hover · #31B4F2 azul-claro (destaque)
   #4CAF50 verde (ação/WhatsApp) · #26333F texto · #F4F8FC paper
   ============================================================ */

:root {
  --brand:      #025492;
  --brand-2:    #0466A9;
  --brand-deep: #013d6c;
  --bright:     #31B4F2;
  --accent:     #025492;
  --accent-soft:#BCE3FB;
  --accent-tint:#E4F3FC;
  --ink:        #26333F;
  --ink-soft:   #46586A;
  --ink-faint:  #65727F;
  --paper:      #F4F8FC;
  --paper-2:    #E8F1F9;
  --white:      #FFFFFF;
  --wa:         #4CAF50;
  --wa-dark:    #3C9740;
  --line:       #DCE6EF;
  --line-ink:   rgba(255,255,255,.16);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  --maxw: 1220px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(2,84,146,.06), 0 4px 14px rgba(2,84,146,.06);
  --shadow-md: 0 12px 34px rgba(2,84,146,.13);
  --shadow-lg: 0 30px 70px rgba(2,84,146,.24);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin: 0; color: var(--ink); }
h1 { font-size: clamp(2.05rem, 5vw, 3.8rem); text-wrap: balance; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.18rem; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 6px 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--bright); display: inline-block; flex: none; }
.eyebrow.on-ink { color: var(--accent-soft); }
.eyebrow.on-ink::before { background: var(--accent-soft); }

.rule {
  position: relative;
  background: linear-gradient(var(--accent-soft), var(--accent-soft)) no-repeat;
  background-size: 0% .32em; background-position: 0 92%;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding: 0 2px;
  animation: ruleIn .9s var(--ease) .45s forwards;
}
@keyframes ruleIn { to { background-size: 100% .32em; } }

.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--ink-soft); max-width: 54ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(76,175,80,.30); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(76,175,80,.38); }
.btn-ink { background: var(--brand); color: #fff; }
.btn-ink:hover { background: var(--brand-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); transform: translateY(-2px); }
.btn-ghost.on-ink { color: #fff; border-color: var(--line-ink); }
.btn-ghost.on-ink:hover { border-color: var(--accent-soft); }
.btn-sm { padding: 11px 18px; font-size: .92rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--brand-deep);
  color: #a9c3da;
  font-size: .76rem;
  background-image: linear-gradient(90deg, #013d6c 0%, #025492 100%);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 36px; padding-top: 6px; padding-bottom: 6px; }
.topbar .tb-left { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); letter-spacing: .04em; }
.topbar .tb-live { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(76,175,80,.7); animation: pulse 2s infinite; flex: none; }
.topbar .tb-left a { color: var(--accent-soft); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.topbar .tb-left a:hover { color: #fff; }
.topbar .tb-right { display: inline-flex; align-items: center; gap: 22px; }
.topbar .tb-right a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.topbar .tb-right a:hover { color: #fff; }
.topbar .tb-right svg { width: 15px; height: 15px; color: var(--bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,248,252,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 40px; width: auto; }
.brand-text { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.02em; color: #fff; }
.brand-text small { display:block; font-family: var(--font-mono); font-weight:400; font-size:.58rem; letter-spacing:.14em; color: var(--accent-soft); text-transform: uppercase; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a.link { font-size: .96rem; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.nav a.link:hover { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--brand); }
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(44px, 6vw, 84px) 0 clamp(48px, 6vw, 88px); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -18%; right: -8%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(49,180,242,.16), rgba(49,180,242,0) 62%);
  z-index: 0; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; }
.hero-grid > * { min-width: 0; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 24px; }
.hero-secondary { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero-secondary a { font-weight: 700; font-size: .98rem; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; border-bottom: 2px solid var(--accent-soft); padding-bottom: 1px; transition: border-color .2s, color .2s; }
.hero-secondary a:hover { border-color: var(--bright); color: var(--brand); }

/* hero photo composition */
.hero-photo { position: relative; }
.hero-photo .ph-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper-2);
  aspect-ratio: 4 / 4.6;
}
.hero-photo .ph-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.hero-photo .ph-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,84,146,0) 55%, rgba(1,61,108,.42) 100%);
}
.hero-photo .ph-blob {
  position: absolute; inset: auto -22px -26px auto;
  width: 210px; height: 210px; border-radius: 40% 60% 58% 42% / 45% 42% 58% 55%;
  background: linear-gradient(150deg, var(--bright), var(--brand));
  filter: blur(2px); opacity: .18; z-index: -1;
}

/* floating chips over photo */
.chip {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
}
.chip .chip-ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.chip .chip-ic svg { width: 21px; height: 21px; }
.chip .chip-ic.blue { background: var(--accent-tint); color: var(--brand); }
.chip .chip-ic.green { background: rgba(76,175,80,.14); color: var(--wa-dark); }
.chip b { display: block; font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); line-height: 1.1; }
.chip span { display: block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.chip .star { color: #F5A623; }
.chip-tl { top: 20px; left: -26px; }
.chip-br { bottom: 26px; right: -24px; }
/* Identificação discreta do especialista sobre a foto (glassmorphism) */
.photo-id {
  position: absolute; z-index: 2;
  top: 14px; right: 14px;
  background: rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(2, 32, 58, .18);
  padding: 7px 12px;
  text-align: right;
  pointer-events: none;
}
.photo-id b { display: block; font-family: var(--font-display); font-size: .84rem; font-weight: 700; color: #fff; line-height: 1.25; text-shadow: 0 1px 6px rgba(2,32,58,.35); }
.photo-id i { display: block; font-style: italic; font-size: .62rem; color: rgba(255,255,255,.88); letter-spacing: .02em; white-space: nowrap; text-shadow: 0 1px 5px rgba(2,32,58,.35); }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 48px; padding-top: 20px; padding-bottom: 20px; }
.trust-strip .ts-label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-right: 6px; }
.trust-strip .ts-item { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink-soft); font-size: .95rem; }
.trust-strip .ts-item svg { width: 18px; height: 18px; color: var(--bright); flex: none; opacity: .85; }
.trust-strip .ts-item .star { color: #F5A623; font-size: 1.1rem; }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: clamp(60px, 8vw, 108px) 0; }
.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* region cards */
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.region-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden;
}
.region-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--bright); transition: height .3s var(--ease);
}
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.region-card:hover::before { height: 100%; }
.region-card .tag { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bright); }
.region-card h3 { font-size: 1.5rem; }
.region-card p { color: var(--ink-soft); margin: 0; }
.region-card .go { margin-top: auto; font-weight: 700; color: var(--brand); display: inline-flex; align-items: center; gap: 8px; padding-top: 8px; }
.region-card .go svg { width: 18px; height: 18px; transition: transform .2s; }
.region-card:hover .go svg { transform: translateX(4px); }

/* ---------- Services (dark band, core-services style) ---------- */
.services { background: var(--brand); color: #fff; background-image: linear-gradient(165deg, #025492 0%, #013049 100%); position: relative; overflow: hidden; }
.services::before {
  content: ""; position: absolute; top: -20%; left: -10%; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(49,180,242,.22), rgba(49,180,242,0) 65%); pointer-events: none;
}
.services .wrap { position: relative; z-index: 1; }
.services h2 { color: #fff; }
.services .section-head p { color: #cfe0ef; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc {
  background: rgba(255,255,255,.05); border: 1px solid var(--line-ink); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.svc:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); border-color: rgba(49,180,242,.5); }
.svc .ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(49,180,242,.16); color: var(--bright); display: grid; place-items: center; margin-bottom: 4px; }
.svc .ic svg { width: 25px; height: 25px; }
.svc h3 { font-size: 1.2rem; color: #fff; }
.svc p { color: #c8dcee; margin: 0; font-size: .98rem; }
.svc a.svc-link { margin-top: auto; padding-top: 10px; font-weight: 700; color: #9be0a4; display: inline-flex; align-items: center; gap: 7px; font-size: .95rem; transition: gap .2s; }
.svc a.svc-link:hover { gap: 11px; }
.svc a.svc-link svg { width: 17px; height: 17px; }

/* ---------- Marquee ticker ---------- */
.marquee { background: var(--bright); overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; will-change: transform; }
.marquee-group { display: flex; align-items: center; gap: 44px; padding: 16px 44px 16px 0; flex: none; }
.marquee .mq {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em;
  color: var(--brand-deep); white-space: nowrap;
}
.marquee .mq-star { width: 15px; height: 15px; color: var(--brand); opacity: .8; flex: none; }
@keyframes marquee { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---------- About / diferenciais (photo + numbered list) ---------- */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; }
.about-grid > * { min-width: 0; }
.about-photo { position: relative; }
.about-photo .ph-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--paper-2); aspect-ratio: 4 / 4.5;
}
.about-photo .ph-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.about-photo .ph-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,84,146,0) 60%, rgba(1,61,108,.4) 100%); }
.about-photo .ph-accent {
  position: absolute; inset: -18px auto auto -20px; z-index: -1;
  width: 150px; height: 150px; border-radius: var(--radius-lg);
  background: repeating-linear-gradient(45deg, var(--accent-soft) 0 10px, transparent 10px 20px); opacity: .6;
}
.about-photo .badge {
  position: absolute; z-index: 2; left: -28px; bottom: 30px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; max-width: 250px;
}
.about-photo .badge > img { width: 30px; height: 30px; flex: none; object-fit: contain; }
.about-photo .badge b { font-family: var(--font-display); color: var(--ink); font-size: 1rem; display: block; line-height: 1.15; }
.about-photo .badge span { font-size: .8rem; color: var(--ink-soft); display: block; line-height: 1.3; margin-top: 3px; }

.why-list { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.why-item { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.why-item:first-child { border-top: 0; padding-top: 4px; }
.why-item .n { font-family: var(--font-mono); font-size: 1rem; font-weight: 700; color: var(--bright); flex: none; padding-top: 2px; min-width: 34px; }
.why-item h3 { font-size: 1.16rem; margin-bottom: 5px; }
.why-item p { color: var(--ink-soft); margin: 0; font-size: .99rem; }

/* ---------- Brand band / CTA ---------- */
.band-ink { background: var(--brand); color: #fff; background-image: linear-gradient(160deg, #025492 0%, #013d6c 100%); position: relative; overflow: hidden; }
.band-ink::before {
  content: ""; position: absolute; bottom: -30%; right: -8%; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(49,180,242,.2), rgba(49,180,242,0) 62%); pointer-events: none;
}
.band-ink h2 { color: #fff; }
.cta-band { text-align: center; }
.cta-band .wrap { max-width: 780px; position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { color: #d4e4f2; font-size: 1.14rem; margin-bottom: 30px; }
.cta-band .micro { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-top: 26px; }
.cta-band .micro span { font-family: var(--font-mono); font-size: .76rem; color: var(--accent-soft); display: inline-flex; align-items: center; gap: 8px; }
.cta-band .micro .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wa); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.14rem; color: var(--ink); padding: 22px 44px 22px 0; position: relative; letter-spacing: -.01em; }
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 1.5rem; color: var(--brand); transition: transform .3s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { color: var(--ink-soft); padding: 0 44px 24px 0; margin: 0; }
.faq-aside { position: sticky; top: 110px; }
.faq-aside .card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.faq-aside .card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.faq-aside .card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand); color: #c4d8ea; padding: 66px 0 36px; background-image: linear-gradient(160deg, #025492 0%, #013d6c 100%); }
.site-footer .brand-text { margin-bottom: 14px; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-logo { width: 200px; height: auto; max-width: 100%; }
.brand-text .tagline { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: .96rem; color: var(--accent-soft); letter-spacing: -.01em; }
.site-footer p { font-size: .95rem; max-width: 38ch; color: #b6cce0; }
.f-top { display: grid; grid-template-columns: minmax(250px, 330px) auto auto minmax(200px, 280px); justify-content: space-between; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-ink); }
.f-col h4 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-soft); margin: 0 0 16px; }
.f-col a { display: block; color: #c4d8ea; font-size: .96rem; padding: 5px 0; transition: color .2s; }
.f-col a:hover { color: #fff; }
.f-col span { display: block; color: #c4d8ea; font-size: .9rem; padding: 5px 0; }
.f-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; font-family: var(--font-mono); font-size: .74rem; color: #7ea3c4; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Utilitários ---------- */
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.mb-26 { margin-bottom: 26px; }
.mb-34 { margin-bottom: 34px; }
.mb-40 { margin-bottom: 40px; }
.text-soft { color: var(--ink-soft); }
.bg-alt { background: var(--paper-2); }
.bg-alt-strong { background: #D2E6F4; border-top: 1px solid #C2DCEF; border-bottom: 1px solid #C2DCEF; }
.eyebrow.is-center { justify-content: center; }
.chip .chip-ic.white { background: #fff; }
.chip .chip-ic > img { width: 26px; height: 26px; object-fit: contain; }
.chip .star { letter-spacing: 1px; font-size: .86rem; }
.trust-strip .ts-item > img { width: 19px; height: 19px; object-fit: contain; }
.faq-a a { color: var(--wa-dark); font-weight: 700; }
.steps-cta { text-align: center; margin-top: 36px; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: #2E7D33; font-size: 1rem; transition: gap .2s; }
.link-arrow:hover { gap: 11px; }
.link-arrow svg { width: 18px; height: 18px; }

/* ---------- Acessibilidade: foco e skip-link ---------- */
:focus-visible { outline: 3px solid var(--bright); outline-offset: 2px; border-radius: 3px; }
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--brand); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero h1 { text-wrap: normal; }
  .hero-photo { max-width: 460px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-photo { max-width: 460px; margin: 0 auto; width: 100%; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .faq-aside { position: static; }
}
@media (max-width: 760px) {
  .topbar .tb-right { gap: 14px; }
  .topbar .tb-right .tb-hide { display: none; }
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 24px 20px; box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav a.link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { width: 100%; margin-top: 12px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .menu-toggle { display: block; }
  .brand-logo { height: 34px; }
  .region-grid, .svc-grid { grid-template-columns: 1fr; }
  .f-top { grid-template-columns: 1fr; gap: 30px; }
  .chip-tl { left: -8px; }
  .chip-br { right: -8px; }
  .about-photo .badge { left: -8px; }
}
@media (max-width: 460px) {
  .chip { padding: 10px 12px; }
  .chip b { font-size: 1rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .rule { background-size: 100% .32em !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-copy > *, .hero-photo, .chip { opacity: 1 !important; transform: none !important; }
  /* A faixa de destaque continua deslizando (elemento decorativo essencial da marca) */
  .marquee-track { animation: marquee 32s linear infinite !important; }
}

/* ============================================================
   MICROINTERAÇÕES E ENTRADAS (sutis, apenas transform/opacity)
   ============================================================ */
@keyframes dcFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes dcFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Entrada do hero ao carregar (escalonada) */
.hero-copy > * { animation: dcFadeUp .7s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .13s; }
.hero-copy > *:nth-child(3) { animation-delay: .21s; }
.hero-copy > *:nth-child(4) { animation-delay: .29s; }
.hero-copy > *:nth-child(5) { animation-delay: .37s; }
.hero-photo { animation: dcFadeUp .8s var(--ease) .2s both; }
.hero-photo .chip { animation: dcFadeIn .6s ease both; }
.hero-photo .chip-tl { animation-delay: .55s; }
.hero-photo .chip-br { animation-delay: .70s; }
.hero-photo .photo-id { animation: dcFadeIn .6s ease both; animation-delay: .85s; }

/* Reveal escalonado das grades ao scroll */
.svc-grid .reveal:nth-child(2), .region-grid .reveal:nth-child(2),
.why-list .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .09s; }
.svc-grid .reveal:nth-child(3), .why-list .reveal:nth-child(3),
.steps .reveal:nth-child(3) { transition-delay: .18s; }
.svc-grid .reveal:nth-child(4), .why-list .reveal:nth-child(4) { transition-delay: .27s; }

/* Zoom sutil das fotos no hover */
.ph-frame img { transition: transform .7s var(--ease); }
.ph-frame:hover img { transform: scale(1.045); }

/* Sublinhado animado na navegação */
.nav a.link { position: relative; }
.nav a.link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--bright); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center; transition: transform .28s var(--ease);
}
.nav a.link:hover::after { transform: scaleX(1); }

/* Botões: leve "pressionar" ao clicar */
.btn:active { transform: translateY(0) scale(.97); }
.tst-btn:active { transform: translateY(-50%) scale(.94); }

/* Ícones dos serviços sobem no hover do card */
.svc .ic { transition: transform .25s var(--ease); }
.svc:hover .ic { transform: translateY(-3px); }

/* Chip de avaliação: destaque leve no hover da foto */
.hero-photo:hover .chip { transition: box-shadow .3s var(--ease); }

/* Setas do carrossel giram levemente no hover */
.tst-btn svg { transition: transform .25s var(--ease); }
.tst-btn[data-tst="next"]:hover svg { transform: translateX(2px); }
.tst-btn[data-tst="prev"]:hover svg { transform: translateX(-2px); }

/* ---------- Steps (como funciona) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.step .num { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--bright); margin-bottom: 16px; text-transform: uppercase; }
.step h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.18rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* ---------- Objection (troca de contador) ---------- */
.objection {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 52px); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.objection .eyebrow { margin-bottom: 16px; }
.objection ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.objection li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); }
.objection li svg { width: 22px; height: 22px; color: var(--wa); flex: none; margin-top: 2px; }
.objection li b { color: var(--ink); font-weight: 700; }

@media (max-width: 1000px) {
  .objection { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   DEPOIMENTOS / TESTIMONIALS
   ============================================================ */
.tst-head { text-align: center; max-width: 60ch; margin: 0 auto 20px; }
.tst-head .eyebrow { justify-content: center; }
.tst-rating {
  display: inline-flex; align-items: center; gap: 12px; margin: 22px auto 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 20px 9px 14px; box-shadow: var(--shadow-sm);
}
.tst-rating img { width: 24px; height: 24px; object-fit: contain; }
.tst-rating .stars { color: #F5A623; font-size: 1rem; letter-spacing: 1px; }
.tst-rating b { font-family: var(--font-display); color: var(--ink); font-size: 1rem; }
.tst-rating span { font-size: .82rem; color: var(--ink-faint); }

.tst-wrap { position: relative; margin-top: 44px; }
.tst-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px; overflow-x: auto;
  padding: 6px 4px 12px; scrollbar-width: none;
}
.tst-track::-webkit-scrollbar { display: none; }
.tst-card {
  scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px; min-height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.tst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.tst-card .quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: .6; color: var(--accent-soft); height: 26px; }
.tst-card .stars { color: #F5A623; font-size: 1.02rem; letter-spacing: 2px; }
.tst-card blockquote { margin: 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; flex: 1; }
.tst-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.tst-foot .who b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; letter-spacing: -.01em; }
.tst-foot .who span { font-size: .82rem; color: var(--ink-faint); }
.tst-foot .via { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; color: var(--ink-faint); flex: none; }
.tst-foot .via img { width: 18px; height: 18px; object-fit: contain; }

.tst-nav { display: contents; }
.tst-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); color: var(--brand); cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: background .2s, color .2s, border-color .2s;
}
.tst-btn[data-tst="prev"] { left: -22px; }
.tst-btn[data-tst="next"] { right: -22px; }
.tst-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.tst-btn svg { width: 20px; height: 20px; }

@media (max-width: 1000px) {
  .tst-track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 620px) {
  .tst-track { grid-auto-columns: 100%; gap: 14px; padding: 6px 0 12px; }
  .tst-card { padding: 26px 22px; }
  /* setas abaixo do carrossel, sem sobrepor o texto */
  .tst-nav { display: flex; justify-content: center; gap: 14px; margin-top: 18px; }
  .tst-btn { position: static; transform: none; width: 46px; height: 46px; background: var(--white); }
  .tst-btn:active { transform: scale(.94); }
}

/* ============================================================
   MOBILE-FIRST REFINEMENTS (Etapa 2)
   Prioridade: smartphones (320 / 360 / 390 / 414 / 480)
   ============================================================ */

/* Tablet e abaixo: melhor aproveitamento da largura */
@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .section-pad { padding: 54px 0; }
  .hero { padding: 32px 0 44px; }
  .section-head { margin-bottom: 34px; }
  .section-head p { font-size: 1.02rem; }
  .eyebrow { font-size: .68rem; letter-spacing: .18em; }

  /* Topbar compacta, contatos sem quebra */
  .topbar { font-size: .74rem; }
  .topbar .wrap { min-height: 38px; justify-content: space-between; }
  .topbar .tb-right { gap: 16px; }
  .topbar .tb-right a { white-space: nowrap; }
  .topbar .tb-msg { display: none; }
  .topbar .tb-left { gap: 7px; }

  /* Header */
  .site-header .wrap { height: 64px; }

  /* Hero: título e texto proporcionais, CTAs grandes */
  .hero h1 { margin-bottom: 16px; }
  .hero .lead { margin-bottom: 24px; }
  .hero-cta { gap: 12px; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 16px 22px; }

  /* Foto do hero e do sobre um pouco menores no celular */
  .hero-photo, .about-photo { max-width: 380px; }
  .hero-photo .ph-frame { aspect-ratio: 4 / 4.3; }
  .about-photo .ph-frame { aspect-ratio: 4 / 4.2; }

  /* Chips proporcionalmente menores e sempre dentro da tela */
  .chip { padding: 6px 9px; gap: 7px; border-radius: 11px; }
  .chip .chip-ic { width: 26px; height: 26px; border-radius: 8px; }
  .chip .chip-ic img { width: 17px !important; height: 17px !important; }
  .chip .chip-ic svg { width: 15px; height: 15px; }
  .chip b { font-size: .8rem; }
  .chip b .star { font-size: .68rem !important; }
  .chip span { font-size: .6rem; }
  .chip-tl { top: 10px; left: 6px; }
  .chip-br { bottom: 12px; right: 6px; }
  .hero-photo .photo-id { top: 66px; right: 5px; }
  .photo-id { top: 8px; right: 5px; padding: 4px 7px; border-radius: 9px; }
  .photo-id b { font-size: .72rem; }
  .photo-id i { font-size: .6rem; }

  /* Faixa de confiança mais compacta */
  .trust-strip .wrap { gap: 10px 22px; padding-top: 16px; padding-bottom: 16px; }
  .trust-strip .ts-item { font-size: .9rem; }
  .trust-strip .ts-item svg { width: 16px; height: 16px; }

  /* Serviços (banda escura) */
  .svc { padding: 24px 22px; }
  /* Alvos de toque >= 44px */
  .btn { min-height: 46px; }
  .btn-sm { min-height: 44px; }

  /* Sobre / diferenciais */
  .about-photo .badge { left: 6px; bottom: 12px; padding: 8px 11px; max-width: 185px; gap: 8px; border-radius: 12px; }
  .about-photo .badge > img { width: 22px; height: 22px; }
  .about-photo .badge b { font-size: .8rem; }
  .about-photo .badge span { font-size: .64rem; }
  .why-item { padding: 16px 0; gap: 16px; }

  /* Marquee menor */
  .marquee-group { gap: 30px; padding: 13px 30px 13px 0; }
  .marquee .mq { font-size: .95rem; }
  .marquee .mq-star { width: 12px; height: 12px; }

  /* Steps / objeção */
  .step { padding: 26px 22px; }

  /* CTA e cards com botão de largura total */
  .cta-band .btn { width: 100%; justify-content: center; padding: 16px 22px; }
  .cta-band p { font-size: 1.04rem; }
  .faq-aside .card { padding: 24px; }
  .faq-aside .card .btn { width: 100%; justify-content: center; }
  .faq-q { font-size: 1.06rem; padding: 18px 40px 18px 0; }

  /* Rodapé */
  .site-footer { padding: 52px 0 30px; }
  /* Slogan igual ao desktop (abaixo do logo, à esquerda, itálico), só menor e proporcional */
  .footer-logo { width: 170px; }
  .site-footer .brand-text { gap: 8px; }
  .brand-text .tagline { font-size: .88rem; }
}

/* Telas estreitas: 414 e abaixo */
@media (max-width: 430px) {
  .wrap { padding: 0 16px; }
  .section-pad { padding: 48px 0; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.65rem; }
  .hero-photo, .about-photo { max-width: 100%; }
  .brand-logo { height: 30px; }
  .marquee .mq { font-size: .9rem; }
}

/* Serviços em 3 colunas (subpáginas) — responsivo */
.svc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .svc-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px)  { .svc-grid.cols-3 { grid-template-columns: 1fr; } }

/* Muito estreitas: 360 / 320 */
@media (max-width: 360px) {
  h1 { font-size: 1.7rem; }
  .rule { white-space: normal; }
  .chip b { font-size: .9rem; }
  .chip .chip-ic { width: 30px; height: 30px; }
  .trust-strip .ts-item { font-size: .86rem; }
}
