/* ACJ Import & Export — estilos do site
   Cores tiradas do globo do logo: azul-marinho #002f6f / #00397c, azul médio #015ea3, céu #91d1ec. */

:root {
  --navy-950: #00132e;
  --navy-900: #00214f;
  --navy-800: #002f6f;
  --navy-700: #00397c;
  --blue-600: #015ea3;
  --blue-500: #0b6fbe;
  --sky-400: #4692ce;
  --sky-300: #7cc4ec;
  --sky-200: #a9dcf3;
  --sky-100: #e2f2fb;
  --sky-50: #f1f8fd;
  --ink: #0b0e1f;
  --text: #253044;
  --muted: #5d687c;
  --line: #e1e7ef;
  --mist: #f4f7fb;
  --white: #fff;

  --font-head: 'Outfit', 'Century Gothic', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(0, 33, 79, .06), 0 2px 8px rgba(0, 33, 79, .05);
  --shadow-md: 0 18px 40px -18px rgba(0, 33, 79, .28);
  --shadow-lg: 0 30px 60px -24px rgba(0, 19, 46, .45);

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --section: clamp(64px, 8vw, 104px);
  --header-h: 84px;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue-600); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--navy-800); }
:focus-visible { outline: 3px solid var(--sky-400); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3, .h3 { font-size: 1.28rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; color: #fff; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Botões e links ---------- */

.btn {
  --btn-bg: var(--blue-600); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .8em 1.35em;
  font: 600 1rem/1.2 var(--font-body);
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd); border-radius: 999px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn .icon { width: 1.1em; height: 1.1em; transition: transform .18s ease; }
.btn:hover { color: var(--btn-fg); transform: translateY(-1px); }
.btn:hover .icon:last-child { transform: translateX(2px); }
.btn--primary { --btn-bg: var(--blue-600); box-shadow: 0 8px 20px -10px rgba(1, 94, 163, .8); }
.btn--primary:hover { --btn-bg: var(--navy-700); }
.btn--sky { --btn-bg: var(--sky-300); --btn-fg: var(--navy-950); box-shadow: 0 10px 24px -12px rgba(124, 196, 236, .9); }
.btn--sky:hover { --btn-bg: #9dd5f3; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy-800); }
.btn--light:hover { --btn-bg: var(--sky-100); }
.btn--ghost-light { --btn-bg: rgba(255, 255, 255, .06); --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .35); }
.btn--ghost-light:hover { --btn-bg: rgba(255, 255, 255, .14); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy-800); --btn-bd: var(--line); }
.btn--outline:hover { --btn-bd: var(--sky-400); }
.btn--lg { padding: .95em 1.6em; font-size: 1.04rem; }
.btn--sm { padding: .6em 1.1em; font-size: .92rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

.text-link {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 600; color: var(--blue-600); text-decoration: none;
}
.text-link .icon { width: 1.05em; height: 1.05em; transition: transform .18s ease; }
.text-link:hover .icon, .cat-card:hover .text-link .icon { transform: translateX(3px); }
.text-link--light { color: var(--sky-200); }
.text-link--light:hover { color: #fff; }

.eyebrow {
  display: inline-block;
  font: 600 .78rem/1.3 var(--font-head);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--sky-300); }

/* ---------- Topbar e cabeçalho ---------- */

.topbar { background: var(--navy-950); color: rgba(255, 255, 255, .78); font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__note { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar__links { list-style: none; display: flex; gap: 22px; }
.topbar__links li { display: flex; align-items: center; }
.topbar a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar .icon { width: 15px; height: 15px; color: var(--sky-300); }
.topbar__hours { gap: 7px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(0, 33, 79, .5); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand { display: block; flex: none; }
.brand__logo { width: auto; height: 68px; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav__list > li { position: relative; display: flex; align-items: center; }
.nav__link {
  display: block; padding: 10px 14px;
  font: 500 1rem/1 var(--font-body); color: var(--ink); text-decoration: none; border-radius: 999px;
}
.nav__link:hover { color: var(--blue-600); background: var(--sky-50); }
.nav__link[aria-current="page"], .nav__link.is-active { color: var(--blue-600); }
.nav__item--dropdown .nav__link { padding-right: 4px; }

.dropdown-toggle {
  display: grid; place-items: center; width: 30px; height: 30px; padding: 0;
  border: 0; background: none; color: var(--ink); cursor: pointer; border-radius: 50%;
}
.dropdown-toggle .icon { width: 16px; height: 16px; transition: transform .2s ease; }
.dropdown-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  width: 380px; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.dropdown::before { content: ''; position: absolute; inset: -12px 0 auto; height: 12px; }
.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:focus-within .dropdown,
.nav__item--dropdown.is-open .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.dropdown__lead {
  display: block; padding: 14px 16px; margin-bottom: 6px;
  background: linear-gradient(135deg, var(--sky-50), var(--sky-100));
  border-radius: 10px; text-decoration: none;
}
.dropdown__lead strong { display: block; color: var(--navy-800); font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; }
.dropdown__lead span { color: var(--muted); font-size: .88rem; }
.dropdown__lead:hover strong { color: var(--blue-600); }
.dropdown__list { list-style: none; }
.dropdown__list a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  color: var(--ink); text-decoration: none; border-radius: 10px; font-weight: 500; font-size: .97rem;
}
.dropdown__list a .icon { color: var(--blue-600); width: 20px; height: 20px; }
.dropdown__list a:hover, .dropdown__list a[aria-current="page"] { background: var(--mist); color: var(--blue-600); }

.nav-toggle {
  display: none; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink); font: 600 .95rem/1 var(--font-body); cursor: pointer;
}
.nav-toggle .icon { width: 20px; height: 20px; }

/* ---------- Hero (home) ---------- */

.hero, .page-hero, .section--navy, .cta-band {
  position: relative; overflow: hidden; color: rgba(255, 255, 255, .86);
  background:
    radial-gradient(900px 520px at 88% 12%, rgba(70, 146, 206, .38), transparent 62%),
    radial-gradient(700px 500px at 0% 100%, rgba(1, 94, 163, .28), transparent 60%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 48%, var(--navy-950) 100%);
}
.hero h1, .page-hero h1, .section--navy h2, .section--navy h3, .cta-band h2 { color: #fff; }

.hero { padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 8vw, 96px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.7rem); font-weight: 600; margin-bottom: 22px; }
.hero .hl { color: var(--sky-300); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.22rem); line-height: 1.6; max-width: 40em; }
.hero .lead { margin-bottom: 32px; }
.hero__facts {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0; margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 26px;
}
.hero__facts li { display: flex; flex-direction: column; padding-right: 30px; margin-right: 30px; border-right: 1px solid rgba(255, 255, 255, .14); }
.hero__facts li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__facts strong { font: 600 1.6rem/1.1 var(--font-head); color: #fff; }
.hero__facts span { font-size: .9rem; color: var(--sky-200); }
.hero__visual { position: relative; }
.globe--hero { width: 100%; max-width: 560px; margin-inline: auto; filter: drop-shadow(0 40px 60px rgba(0, 10, 30, .45)); }

/* Globo: rotas animadas e nós pulsando */
.route { stroke-dasharray: 5 9; animation: route-flow 16s linear infinite; }
.route--2 { animation-duration: 20s; animation-direction: reverse; }
.route--3 { animation-duration: 18s; }
.route--4 { animation-duration: 24s; stroke-opacity: .6; }
.node__pulse { fill: rgba(169, 220, 243, .35); transform-box: fill-box; transform-origin: center; animation: pulse 3.2s ease-out infinite; animation-delay: var(--d, 0s); }
@keyframes route-flow { to { stroke-dashoffset: -280; } }
@keyframes pulse { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(2.4); opacity: 0; } }

/* ---------- Hero interno ---------- */

.page-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 6vw, 80px); }
.page-hero__art { position: absolute; right: -140px; top: 50%; width: 620px; transform: translateY(-50%); opacity: .5; pointer-events: none; }
.page-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: end; }
.page-hero__grid:has(.page-hero__aside) { grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr); }
.page-hero h1 { max-width: 16em; margin-bottom: 18px; }
.page-hero .lead { margin-bottom: 30px; }
.page-hero .lead:last-child { margin-bottom: 0; }

.breadcrumbs { margin-bottom: 26px; font-size: .9rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; color: var(--sky-200); }
.breadcrumbs li + li::before { content: '/'; opacity: .5; }
.breadcrumbs a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }

.glance {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(6px);
}
.glance__title { font: 600 .78rem/1 var(--font-head); letter-spacing: .16em; text-transform: uppercase; color: var(--sky-300); margin-bottom: 12px; }
.glance__list { list-style: none; }
.glance__list a {
  display: flex; align-items: center; gap: 12px; padding: 10px 8px;
  color: #fff; text-decoration: none; font-weight: 500; border-radius: 10px;
}
.glance__list li + li a { border-top: 1px solid rgba(255, 255, 255, .08); }
.glance__list a .icon { color: var(--sky-300); width: 20px; height: 20px; }
.glance__list a span { flex: 1; }
.glance__list .icon--arrow { width: 16px; height: 16px; opacity: .5; transition: transform .18s ease, opacity .18s ease; }
.glance__list a:hover { background: rgba(255, 255, 255, .07); }
.glance__list a:hover .icon--arrow { opacity: 1; transform: translateX(3px); }

/* ---------- Seções ---------- */

.section { padding: var(--section) 0; }
.section--mist { background: var(--mist); }
.section--pull { padding-top: clamp(40px, 5vw, 64px); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 0; }
.section-lead { margin: 16px 0 0; font-size: 1.12rem; color: var(--muted); }
.section--navy .section-lead { color: var(--sky-200); }
.section--navy .eyebrow { color: var(--sky-300); }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 72px); align-items: start; }
.split .section-head { margin-bottom: 0; }
.prose p:last-child { margin-bottom: 0; }
.prose--lg { font-size: 1.1rem; }
.center-note { text-align: center; margin: 40px 0 0; }

.icon-badge {
  display: inline-grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sky-100); color: var(--blue-600);
}
.icon-badge .icon { width: 22px; height: 22px; }
.icon-badge--lg { width: 54px; height: 54px; border-radius: 14px; }
.icon-badge--lg .icon { width: 26px; height: 26px; }
.icon-badge--xl { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 24px; }
.icon-badge--xl .icon { width: 36px; height: 36px; }
.icon-badge--dark { background: rgba(124, 196, 236, .14); color: var(--sky-300); width: 50px; height: 50px; }

/* Pilares / features */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: clamp(40px, 5vw, 60px); }
.section-head + .pillars { margin-top: 0; }
.pillar {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pillar .icon-badge { margin-bottom: 22px; }
.pillar p { color: var(--muted); }
.pillar .text-link { margin-top: auto; }

.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.feature {
  padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); scroll-margin-top: calc(var(--header-h) + 24px);
}
.feature .icon-badge { margin-bottom: 20px; }
.feature > p { color: var(--muted); }

/* Lista com checks */
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.ticks .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--blue-600); stroke-width: 2.2; }
.ticks--lg { gap: 14px; }
.ticks--lg li { font-size: 1.04rem; }

/* Cards de categoria */
.cat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cat-card {
  position: relative; display: flex; flex-direction: column;
  padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-200); }
.cat-card .icon-badge { margin-bottom: 22px; transition: background-color .22s ease, color .22s ease; }
.cat-card:hover .icon-badge { background: var(--blue-600); color: #fff; }
.cat-card h3 { margin-bottom: 8px; }
.cat-card h3 a { color: inherit; text-decoration: none; }
.cat-card p { color: var(--muted); }
.cat-card .text-link { margin-top: auto; padding-top: 18px; }
.stretched::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.chips li { font-size: .82rem; font-weight: 500; padding: 4px 10px; border-radius: 999px; background: var(--mist); color: var(--navy-700); border: 1px solid var(--line); }
.cat-card--alt { background: linear-gradient(160deg, var(--sky-50), #fff); border-style: dashed; border-color: var(--sky-200); }

/* Passos */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; position: relative; counter-reset: step; }
.steps::before {
  content: ''; position: absolute; left: 12%; right: 12%; top: 31px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--sky-200) 0 8px, transparent 8px 16px);
}
.step { position: relative; text-align: center; padding: 0 8px; }
.step__num {
  position: relative; display: inline-grid; place-items: center;
  width: 64px; height: 64px; margin-bottom: 22px; border-radius: 50%;
  font: 600 1.25rem/1 var(--font-head); color: var(--blue-600);
  background: #fff; border: 2px solid var(--sky-200);
  box-shadow: 0 0 0 8px #fff;
}
.section--mist .step__num { box-shadow: 0 0 0 8px var(--mist); }
.step p { color: var(--muted); font-size: .98rem; }

/* Por que ACJ (fundo navy) */
.reasons { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.reason {
  padding: 28px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
}
.reason .icon-badge { margin-bottom: 20px; }
.reason p { font-size: .98rem; color: rgba(255, 255, 255, .74); margin: 0; }

/* Checklist + cartão de contato */
.checklist-wrap { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr); gap: 32px; align-items: center; }
.checklist {
  padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-lg);
  background: var(--mist); border: 1px solid var(--line);
}
.section--mist .checklist { background: #fff; }
.checklist > p { color: var(--muted); }
.checklist h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.checklist .ticks { margin-top: 24px; }
.contact-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: clamp(28px, 3.5vw, 40px); border-radius: var(--radius-lg); color: rgba(255, 255, 255, .8);
  background:
    radial-gradient(420px 260px at 100% 0%, rgba(70, 146, 206, .4), transparent 70%),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-md);
}
.contact-card h3 { color: #fff; font-size: 1.5rem; }
.contact-card .btn { margin: 14px 0 22px; }
.contact-card__list { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
.contact-card__list li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.45; font-size: .98rem; }
.contact-card__list .icon { width: 19px; height: 19px; color: var(--sky-300); margin-top: 1px; }
.contact-card__list a { color: #fff; text-decoration: none; word-break: break-word; }
.contact-card__list a:hover { text-decoration: underline; }
.contact-card__legal { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .85rem; color: var(--sky-200); }
.contact-card--tall { height: 100%; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s ease, box-shadow .2s ease; }
.faq__item[open] { border-color: var(--sky-200); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 { margin: 0; font-size: 1.1rem; font-weight: 500; }
.faq__icon { position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--sky-100); }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px;
  background: var(--blue-600); transform: translate(-50%, -50%); transition: transform .2s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__answer { padding: 0 24px 22px; color: var(--muted); }
.faq__answer p { margin: 0; }
.section--mist .faq-wrap .section-head { margin-bottom: 32px; }

.faq-related { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr); gap: clamp(32px, 5vw, 64px); align-items: start; }

/* Links relacionados */
.related { position: sticky; top: calc(var(--header-h) + 24px); padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.related__title { font: 600 .78rem/1 var(--font-head); letter-spacing: .16em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px; }
.related__list { list-style: none; display: grid; gap: 6px; }
.related__list a { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 12px; text-decoration: none; color: var(--ink); }
.related__list a > .icon:first-child { width: 22px; height: 22px; color: var(--blue-600); }
.related__list a span { flex: 1; display: flex; flex-direction: column; }
.related__list strong { font-weight: 600; font-size: .98rem; }
.related__list small { color: var(--muted); font-size: .85rem; }
.related__list .icon--arrow { width: 16px; height: 16px; color: var(--muted); transition: transform .18s ease; }
.related__list a:hover { background: var(--mist); }
.related__list a:hover .icon--arrow { transform: translateX(3px); color: var(--blue-600); }

/* Produtos (páginas de categoria) */
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product {
  display: flex; flex-direction: column;
  padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); scroll-margin-top: calc(var(--header-h) + 24px);
}
.product:target { border-color: var(--sky-400); box-shadow: 0 0 0 4px var(--sky-100), var(--shadow-md); }
.product__head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.product__head h3 { margin: 0; font-size: 1.4rem; }
.product > p { color: var(--muted); }
.product__spec-title { font: 600 .76rem/1 var(--font-head); letter-spacing: .14em; text-transform: uppercase; color: var(--navy-700); margin: 6px 0 14px; }
.product .ticks { margin-bottom: 22px; font-size: .97rem; }
.product .text-link { margin-top: auto; }

.note {
  display: flex; gap: 20px; align-items: flex-start;
  margin-top: 28px; padding: 28px 32px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sky-100), var(--sky-50)); border: 1px solid var(--sky-200);
}
.note h3 { margin-bottom: 6px; }
.note p { margin: 0; color: var(--text); }

/* Faixa de CTA */
.cta-band { padding: clamp(56px, 7vw, 88px) 0; }
.cta-band__art { position: absolute; right: -80px; bottom: -200px; width: 520px; opacity: .45; pointer-events: none; }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { margin: 0; max-width: 36em; color: var(--sky-200); font-size: 1.1rem; }

/* ---------- Formulário ---------- */

.inquiry { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 48px); align-items: start; }
.inquiry__form .section-head { margin-bottom: 28px; }
.inquiry__form--card { padding: clamp(24px, 4vw, 44px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.inquiry__aside { display: grid; gap: 24px; position: sticky; top: calc(var(--header-h) + 24px); }
.inquiry-form { display: block; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; margin-bottom: 26px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.req { color: var(--blue-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  font: 400 1rem/1.4 var(--font-body); color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.section--mist .inquiry__form:not(.inquiry__form--card) input,
.section--mist .inquiry__form:not(.inquiry__form--card) select,
.section--mist .inquiry__form:not(.inquiry__form--card) textarea { background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23015ea3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.field input::placeholder, .field textarea::placeholder { color: #98a2b3; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky-400); box-shadow: 0 0 0 4px var(--sky-100); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #d64545; }
.field--check { flex-direction: row; align-items: flex-start; gap: 12px; }
.field--check input { width: 20px; height: 20px; margin: 2px 0 0; flex: none; accent-color: var(--blue-600); }
.field--check label { font-weight: 400; color: var(--muted); font-size: .94rem; line-height: 1.5; }
.form-note { margin: 16px 0 0; font-size: .88rem; color: var(--muted); }

.tips { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.tips h3 { font-size: 1.1rem; margin-bottom: 16px; }
.tips .ticks { font-size: .94rem; }

.quick-links { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.quick-links a {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); text-decoration: none; font-weight: 600;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.quick-links a > .icon:first-child { width: 22px; height: 22px; color: var(--blue-600); }
.quick-links a span { flex: 1; }
.quick-links .icon--arrow { width: 16px; height: 16px; color: var(--muted); }
.quick-links a:hover { border-color: var(--sky-300); box-shadow: var(--shadow-sm); }
.quick-links--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); text-align: left; margin-top: 32px; }

/* ---------- Sobre ---------- */

.about-intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-logo { margin: 0; padding: clamp(24px, 4vw, 48px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.company { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr); gap: clamp(28px, 4vw, 48px); align-items: stretch; }
.details { margin: 0; border-top: 1px solid var(--line); }
.details div { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.details dt { font-weight: 600; color: var(--ink); }
.details dd { margin: 0; color: var(--muted); }

/* ---------- Páginas de status e legais ---------- */

.status-page { padding: clamp(72px, 10vw, 128px) 0; background: var(--mist); text-align: center; }
.status-page__inner .lead { margin-inline: auto; color: var(--muted); }
.status-page .btn-row { margin-top: 28px; }
.legal h2 { font-size: 1.4rem; margin-top: 1.6em; }

/* ---------- Rodapé ---------- */

.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .7); font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px; padding-top: 72px; padding-bottom: 56px; }
.footer__logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; margin-bottom: 18px; }
.footer__logo img { border-radius: 12px; }
.footer__logo span { font: 500 1.2rem/1.1 var(--font-head); }
.footer__logo strong { font-weight: 700; }
.footer__brand p { max-width: 30em; margin-bottom: 22px; }
.footer__title { font: 600 .78rem/1 var(--font-head); letter-spacing: .16em; text-transform: uppercase; color: var(--sky-300); margin-bottom: 18px; }
.footer__links { list-style: none; display: grid; gap: 10px; }
.footer__links a, .footer__contact a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.footer__links a:hover, .footer__contact a:hover { color: #fff; text-decoration: underline; }
.footer__contact { list-style: none; display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 10px; line-height: 1.45; }
.footer__contact .icon { width: 17px; height: 17px; color: var(--sky-300); margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); font-size: .85rem; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; }
.footer__bottom p { margin: 0; }
.footer__bottom a { color: rgba(255, 255, 255, .7); }

/* Botão flutuante do WhatsApp */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 14px; border-radius: 999px;
  background: #25d366; color: #fff; font-weight: 600; text-decoration: none;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .45);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-fab .icon { width: 24px; height: 24px; }
.whatsapp-fab:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(0, 0, 0, .5); }

/* ---------- Responsivo ---------- */

@media (max-width: 1100px) {
  .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-nav { gap: 16px; }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .brand__logo { height: 52px; }
  .topbar__note, .topbar__hours { display: none; }
  .topbar__inner { justify-content: center; }

  .nav-toggle { display: inline-flex; }
  /* backdrop-filter prenderia o menu fixo dentro do header — no mobile o header fica sólido */
  .site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-nav {
    position: fixed; inset: var(--nav-top, 112px) 0 0 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 20px;
    padding: 20px var(--gutter) 40px; background: #fff; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { flex-wrap: wrap; border-bottom: 1px solid var(--line); }
  .nav__link { flex: 1; padding: 16px 4px; font-size: 1.1rem; border-radius: 0; }
  .nav__link:hover { background: none; }
  .dropdown-toggle { display: none; }
  .dropdown {
    position: static; width: 100%; padding: 0 0 12px; border: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
  }
  .dropdown::before { display: none; }
  .nav__item--dropdown:hover .dropdown, .nav__item--dropdown:focus-within .dropdown { transform: none; }
  .dropdown__lead { display: none; }
  .nav__cta { justify-content: center; padding: 1em; }
  body.nav-open { overflow: hidden; }
  body.nav-open .whatsapp-fab { display: none; }

  .hero__grid, .split, .checklist-wrap, .inquiry, .faq-related, .about-intro, .company { grid-template-columns: minmax(0, 1fr); }
  .page-hero__grid:has(.page-hero__aside) { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { order: -1; max-width: 360px; margin: -10px auto 0; }
  .page-hero__art { width: 420px; right: -180px; opacity: .35; }
  .pillars, .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .steps::before { display: none; }
  .inquiry__aside, .related { position: static; }
  .quick-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-logo { max-width: 420px; }
}

@media (max-width: 680px) {
  body { font-size: 1rem; }
  .topbar__links { gap: 14px; font-size: .78rem; }
  .topbar__links li:first-child { display: none; }
  .hero__facts li { padding-right: 18px; margin-right: 18px; }
  .hero__facts strong { font-size: 1.3rem; }
  .pillars, .cat-grid, .feature-grid, .product-grid, .reasons, .quick-links, .quick-links--compact { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; padding-top: 56px; }
  .details div { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .btn-row .btn { flex: 1 1 auto; }
  .pillar, .cat-card, .feature, .product { padding: 26px; }
  .note { flex-direction: column; padding: 24px; }
  .whatsapp-fab span { display: none; }
  .whatsapp-fab { padding: 14px; }
  .faq__item summary { padding: 18px; }
  .faq__answer { padding: 0 18px 20px; }
}

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

/* Duas seções seguidas com o mesmo fundo: uma linha fina separa */
.section--mist + .section--mist,
.section:not(.section--mist):not(.section--navy) + .section:not(.section--mist):not(.section--navy) { border-top: 1px solid var(--line); }
