/* GSS Soluções — Brand tokens + shared styles */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700&display=swap");

:root {
  /* === GSS visual identity === */
  --brand-dark:  #030223;   /* Dark Blue — títulos e superfícies escuras */
  --brand-cyan:  #0c85c6;   /* Cyan — ícones e detalhes de acento */
  --brand-cyan-dark: #0a6ea4;
  --brand-green: #97d105;   /* Verde — botões CTA */
  --brand-green-dark: #83b703;

  /* Navy scale — remapeada para a identidade (escuro = #030223, médios = cyan) */
  --navy-950: #020117;
  --navy-900: #06052a;
  --navy-800: #030223;   /* títulos / texto escuro */
  --navy-700: #0e1a44;   /* hover escuro */
  --navy-600: #0c85c6;   /* cyan — eyebrows, avatares */
  --navy-500: #2a9fd6;   /* cyan claro */
  --navy-300: #8fcdec;
  --navy-100: #cfe7f6;
  --navy-50:  #e8f4fb;

  /* Accent — used sparingly */
  --accent: #f6a623;        /* warm gold for star ratings */
  --accent-soft: #fdf3dc;

  /* Neutrals */
  --ink-900: #0c1726;
  --ink-700: #2b3648;
  --ink-500: #5a6478;
  --ink-400: #7c869a;
  --ink-300: #aeb6c5;
  --ink-200: #d3d9e3;
  --ink-100: #e7ebf2;
  --ink-50:  #f4f6fa;
  --white:   #ffffff;

  /* Semantic */
  --success: #16a34a;
  --warning: #f59e0b;
  --danger:  #dc2626;

  /* Type */
  --font-display: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --gutter: 24px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(2, 42, 80, 0.06);
  --shadow:    0 4px 16px rgba(2, 42, 80, 0.08);
  --shadow-lg: 0 14px 44px rgba(2, 42, 80, 0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: #fbfcfe;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  color: var(--navy-800);
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.03em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; letter-spacing: -0.015em; }
p  { margin: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

/* ============== Top bar ============== */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 36px;
}
.topbar a { color: inherit; transition: color 0.2s var(--ease); }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right a { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-left { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============== Header / Nav ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.brand {
  display: inline-flex; align-items: center;
}
.brand img { height: 38px; width: auto; }

.nav-links {
  display: flex; gap: 6px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 10px;
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links > li > a:hover, .nav-links > li > button:hover {
  color: var(--navy-800);
  background: var(--navy-50);
}
.nav-links > li.has-menu > button::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
}
.nav-links a.active {
  color: var(--navy-800);
  background: var(--navy-50);
}

.megamenu {
  position: absolute; top: 100%; left: -10px;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.nav-links > li.has-menu:hover .megamenu,
.nav-links > li.has-menu:focus-within .megamenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.megamenu a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s var(--ease);
}
.megamenu a:hover { background: var(--navy-50); }
.megamenu .mm-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--brand-cyan);
  color: #fff;
  flex-shrink: 0;
}
.mm-title { font-weight: 600; color: var(--navy-800); font-size: 0.92rem; }
.mm-sub { font-size: 0.8rem; color: var(--ink-500); margin-top: 2px; }
.megamenu-compact a {
  align-items: center;
  padding: 11px 12px;
}
.megamenu-compact .mm-icon {
  width: 34px;
  height: 34px;
}
.megamenu-compact .mm-title {
  font-size: 0.94rem;
  line-height: 1.25;
}

/* Serviços — megamenu 5 colunas (4 categorias + atendimento local) */
/* li sem position:relative para o megamenu ancorar no header (centralizado) */
.nav-links > li.has-megaservices { position: static; }
.megamenu-services {
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1180px, calc(100vw - 36px));
  max-width: 1180px;
  padding: 20px 22px 14px;
}
.nav-links > li.has-menu:hover .megamenu-services,
.nav-links > li.has-menu:focus-within .megamenu-services {
  transform: translateX(-50%) translateY(0);
}
.megamenu-services .mm-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px 14px;
}
.megamenu-services .mm-col { --mm-accent: #0c85c6; }
.megamenu-services .mm-col-title {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mm-accent);
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--ink-100);
}
.megamenu-services .mm-col-list,
.megamenu-services .mm-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.megamenu-services .mm-srv {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 8px;
  border-radius: 9px;
  transition: background 0.15s var(--ease);
}
.megamenu-services .mm-srv:hover { background: var(--navy-50); }
.megamenu-services .mm-srv-ic {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 7px;
  display: grid; place-items: center;
  background: var(--navy-50);
  background: color-mix(in srgb, var(--mm-accent) 13%, #fff);
  color: var(--mm-accent);
}
.megamenu-services .mm-srv-ic .icon { width: 15px; height: 15px; }
.megamenu-services .mm-srv-tx { display: flex; flex-direction: column; line-height: 1.2; }
.megamenu-services .mm-srv-title { font-size: 0.85rem; font-weight: 600; color: var(--navy-800); }
.megamenu-services .mm-srv-desc { font-size: 0.72rem; color: var(--ink-400); margin-top: 2px; }
.megamenu-services .mm-sublist { margin: 0 0 2px 35px; }
.megamenu-services .mm-sublist a {
  display: block;
  padding: 3px 8px;
  border-radius: 7px;
  font-size: 0.76rem;
  color: var(--ink-500);
  position: relative;
  transition: color 0.15s var(--ease);
}
.megamenu-services .mm-sublist a::before {
  content: "↳";
  position: absolute;
  left: -10px;
  color: var(--ink-200);
}
.megamenu-services .mm-sublist a:hover { color: var(--mm-accent); }
.megamenu-services .mm-allservices {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-cyan, #0c85c6);
}
.megamenu-services .mm-allservices:hover { background: var(--navy-800); }
.megamenu-services .mm-allservices .mm-arrow { transition: transform 0.2s var(--ease); }
.megamenu-services .mm-allservices:hover .mm-arrow { transform: translateX(3px); }
@media (max-width: 1240px) {
  .megamenu-services .mm-cols { grid-template-columns: repeat(3, 1fr); }
}

/* Topbar — dois telefones + WhatsApp */
.topbar-left a { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-left b { font-weight: 700; color: #fff; }
.topbar-wpp { color: #6ee7a0 !important; }
.topbar-wpp:hover { color: #25d366 !important; }
@media (max-width: 720px) {
  .topbar .container { height: auto; padding-top: 6px; padding-bottom: 6px; }
  .topbar-left { gap: 14px; flex-wrap: wrap; font-size: 0.78rem; }
}

/* Drawer — serviços agrupados */
.mobile-drawer .drawer-group {
  font-weight: 700 !important;
  color: var(--navy-800) !important;
  margin-top: 6px;
}
.mobile-drawer .drawer-sub {
  padding-left: 14px !important;
  font-size: 0.92rem;
  color: var(--ink-500) !important;
}
.mobile-drawer .drawer-allservices {
  font-weight: 700 !important;
  color: var(--brand-cyan, #0c85c6) !important;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-green);
  color: var(--brand-dark);
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(3,2,35,0.12), 0 6px 16px rgba(151,209,5,0.28);
}
.btn-primary:hover {
  background: var(--brand-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(3,2,35,0.16), 0 12px 26px rgba(151,209,5,0.34);
}
.btn-ghost {
  background: var(--navy-50);
  color: var(--navy-800);
}
.btn-ghost:hover { background: var(--navy-100); }
.btn-outline {
  background: transparent;
  color: var(--navy-800);
  box-shadow: inset 0 0 0 1.5px var(--ink-200);
}
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--navy-800); }
.btn-wpp {
  background: #25d366;
  color: #fff;
}
.btn-wpp:hover { background: #1ebe57; transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 14px; font-size: 0.875rem; }

.icon { width: 18px; height: 18px; stroke-width: 1.75; }
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 22px; height: 22px; }

/* ============== Hamburger / mobile nav ============== */
.menu-toggle { display: none; }

@media (max-width: 1100px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--navy-50);
    color: var(--navy-800);
  }
}

/* ============== Sections ============== */
section { padding: 88px 0; }
.section-title-block { max-width: 720px; margin-bottom: 48px; }
.section-title-block.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title-block h2 { margin-top: 10px; }
.section-title-block p { color: var(--ink-500); margin-top: 14px; font-size: 1.05rem; }

/* ============== Footer ============== */
.footer {
  background: #010118;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 30px;
  font-size: 0.92rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-green));
}

/* --- top: 5 columns (brand + 4 link cols) --- */
.foot-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot-brand { max-width: 320px; }
.foot-brand img { height: 42px; width: auto; }
.foot-brand p {
  margin-top: 22px;
  color: rgba(255,255,255,0.46);
  font-size: 0.9rem;
  line-height: 1.65;
}
.foot-socials {
  display: flex; gap: 10px;
  margin-top: 22px;
}
.foot-socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.foot-socials a:hover {
  background: var(--brand-cyan);
  border-color: var(--brand-cyan);
  color: #fff;
}
.foot-socials .icon { width: 18px; height: 18px; }

.foot-col h5 {
  color: rgba(255,255,255,0.42);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 6px 0 20px;
  font-family: var(--font-body);
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.foot-col a {
  color: rgba(255,255,255,0.66);
  font-size: 0.92rem;
  line-height: 1.4;
  transition: color 0.2s var(--ease), padding 0.2s var(--ease);
}
.foot-col a:hover { color: var(--brand-green); padding-left: 3px; }

.foot-divider {
  height: 1px;
  background: rgba(255,255,255,0.09);
  margin: 52px 0 40px;
}

/* --- 3 unit cards --- */
.foot-units {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.foot-unit {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.foot-unit:hover { border-color: rgba(12,133,198,0.45); background: rgba(12,133,198,0.05); }
.foot-unit-ic {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(12,133,198,0.14);
  color: var(--brand-cyan);
  display: grid; place-items: center;
}
.foot-unit-ic .icon { width: 20px; height: 20px; }
.foot-unit-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.foot-unit-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-cyan);
}
.foot-unit-body strong { color: #fff; font-size: 0.95rem; font-weight: 600; }
.foot-unit-addr { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.45; }
.foot-unit-phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-green);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 5px;
  transition: color 0.2s var(--ease);
}
.foot-unit-phone .icon { width: 14px; height: 14px; }
.foot-unit-phone:hover { color: #b8ef2c; }

/* --- 4º quadrado: certificações --- */
.foot-unit-cert .foot-unit-body { gap: 10px; }
.foot-cert-line {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.foot-cert-line .icon { width: 18px; height: 18px; color: var(--brand-cyan); flex-shrink: 0; }
.foot-cert-line > span { display: flex; flex-direction: column; line-height: 1.2; }
.foot-cert-line strong { color: #fff; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.02em; }
.foot-cert-line em { font-style: normal; color: rgba(255,255,255,0.5); font-size: 0.72rem; }

/* --- legal / copyright --- */
.foot-legal {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px 28px; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(255,255,255,0.42);
}
.foot-legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-legal-links a { color: rgba(255,255,255,0.55); transition: color 0.2s var(--ease); }
.foot-legal-links a:hover { color: #fff; }

@media (max-width: 1080px) {
  .foot-main { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; max-width: 460px; }
  .foot-units { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .foot-units { grid-template-columns: 1fr; }
  .foot-legal { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .foot-main { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ============== Cards & UI atoms ============== */
.card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card.hoverable:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--navy-100);
}
.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-cyan);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.icon-tile svg { width: 24px; height: 24px; }
.icon-tile.solid {
  background: var(--brand-dark);
  color: #fff;
}

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy-50);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.chip.dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-cyan);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.2s var(--ease);
}
.link-arrow:hover { gap: 10px; }
.link-arrow::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

/* ============== Page header ============== */
.page-hero {
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(47,109,181,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-800) 100%);
  color: #fff;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask: radial-gradient(circle at 30% 50%, #000 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; max-width: 880px; }
.page-hero .crumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 24px;
}
.page-hero .crumb a { color: rgba(255,255,255,0.85); }
.page-hero .crumb a:hover { color: #fff; }
.page-hero .lede {
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  max-width: 640px;
  margin-top: 18px;
  line-height: 1.55;
}

/* ============== CTA banner ============== */
.cta-banner {
  background:
    radial-gradient(600px 220px at 90% 0%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.cta-banner h3 {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  max-width: 580px;
}
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 8px; max-width: 540px; }
.cta-banner .actions { display: flex; gap: 12px; flex-shrink: 0; }
.cta-banner .btn-outline {
  color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.32);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7);
}

@media (max-width: 760px) {
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
}

/* ============== Reveal animation ============== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============== Page background variants ============== */
.bg-soft { background: var(--ink-50); }
.bg-navy { background: var(--navy-950); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

/* ============== Forms ============== */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.input-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
  display: block;
}
.input, .textarea, .select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--ink-200);
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink-900);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--navy-800);
  box-shadow: 0 0 0 4px rgba(2,42,80,0.10);
}
.textarea { min-height: 130px; resize: vertical; }

/* ============== Utility classes ============== */
.show-mobile { display: none; }
@media (max-width: 720px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: initial; }
  section { padding: 64px 0; }
}

/* ============== Mobile menu drawer ============== */
.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(2, 16, 38, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
  z-index: 100;
}
.mobile-drawer.open { opacity: 1; visibility: visible; }
.mobile-drawer .panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(360px, 90vw);
  background: #fff;
  padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open .panel { transform: none; }
.mobile-drawer h6 {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-400); margin: 18px 12px 6px;
}
.mobile-drawer a, .mobile-drawer .drawer-link {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink-900);
  font-weight: 500;
}
.mobile-drawer a:hover { background: var(--navy-50); color: var(--navy-800); }
.mobile-drawer .top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.mobile-drawer .top img { height: 32px; }
.mobile-drawer .close {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ink-50);
  display: grid; place-items: center;
}

/* Certificações ISO no rodapé (LOCAL 6) */
.foot-certs { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.foot-certs-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.foot-certs-row { display: flex; gap: 12px; flex-wrap: wrap; }
.foot-cert {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-width: 130px; padding: 10px 18px; gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
}
.foot-cert strong { color: #fff; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.02em; }
.foot-cert span { color: rgba(255,255,255,0.55); font-size: 0.7rem; }
