/* Inter variável, auto-hospedada. Sem isso a página caía no Roboto no Android
   (maioria do tráfego) e os pesos 690/750 colapsavam para 700, achatando a
   hierarquia que o design pressupõe. 47 kB cobrindo latin + acentos do pt-BR. */
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-950: #152343;
  --navy-900: #213b62;
  --navy-850: #24406e;
  --navy-800: #27417f;
  --blue-600: #1b6d9b;
  --blue-500: #2e85a5;
  --cyan-400: #58b7cd;
  --cyan-300: #6ec5d2;
  --ice-100: #e8f2f6;
  --ice-50: #f2f8fa;
  --sand-50: #faf9f6;
  --white: #ffffff;
  --ink: #213b62;
  --slate: #54637c;
  --slate-light: #77839a;
  --line: #dae3ec;
  --success: #25d366;
  --shadow-sm: 0 10px 30px rgba(17, 28, 54, 0.08);
  --shadow-lg: 0 28px 80px rgba(15, 25, 48, 0.17);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 82px;
  --font: "Inter var", Inter, "Avenir Next", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  caret-color: var(--blue-600);
  scrollbar-color: var(--cyan-400) var(--ice-100);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  accent-color: var(--blue-600);
  color: var(--ink);
  background: var(--sand-50);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.22rem;
}

::selection {
  color: var(--navy-950);
  background: var(--cyan-300);
}

:focus-visible {
  outline: 3px solid var(--navy-900);
  outline-offset: 3px;
  /* O halo claro garante o contraste do anel também sobre as seções navy. */
  box-shadow: 0 0 0 6px var(--cyan-300);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: var(--blue-600);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--cyan-300);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 34, 64, 0.18);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--primary {
  color: var(--navy-950);
  background: var(--cyan-300);
}

.button--primary:hover {
  background: #9fdbe4;
  box-shadow: 0 14px 34px rgba(88, 183, 205, 0.26);
}

.button--large {
  min-height: 59px;
  padding: 0 28px;
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Topbar and header */
.topbar {
  color: #d9e8f0;
  background: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.topbar__dot {
  width: 6px;
  height: 6px;
  background: var(--cyan-300);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110, 197, 210, 0.1);
}

.topbar a {
  color: var(--cyan-300);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(250, 249, 246, 0.93);
  border-bottom: 1px solid rgba(23, 35, 66, 0.08);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(17, 27, 52, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand img {
  flex: 0 0 auto;
}

.site-header .brand img {
  width: auto;
  height: 58px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 36px);
  margin-inline: auto;
}

.nav a {
  position: relative;
  color: #374a68;
  font-size: 0.84rem;
  font-weight: 640;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button--header {
  min-height: 46px;
  padding-inline: 20px;
}

/* CTA que aparece somente dentro do menu mobile. */
.nav__cta {
  display: none;
}

/* Botão de retorno usado na página de política de privacidade. */
.button--back {
  min-height: 44px;
  margin-left: auto;
  padding-inline: 18px;
  font-size: 0.8rem;
}

.button--back svg {
  order: -1;
}

.button--back:hover svg {
  transform: translateX(-3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-950);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden; /* Fallback para navegadores sem suporte a overflow: clip. */
  overflow: clip visible; /* Corta só na horizontal: a faixa de fatos pode avançar sobre a seção seguinte. */
  padding: 72px 0 0;
  color: var(--white);
  background: var(--navy-900);
}

.hero::before {
  position: absolute;
  inset: 0;
  /* Curvas de nível topográficas, referência ao estudo do terreno. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='180'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.05)'%3E%3Cpath d='M0 26q65-18 130 0t130 0'/%3E%3Cpath d='M0 71q65-14 130 0t130 0'/%3E%3Cpath d='M0 116q65-18 130 0t130 0'/%3E%3Cpath d='M0 161q65-14 130 0t130 0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 180px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 0;
  left: -360px;
  width: 800px;
  height: 440px;
  background: radial-gradient(circle 400px at 400px 40px, rgba(46, 133, 165, 0.12) 96%, transparent 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 54px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 30px 0 74px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.05rem, 5vw, 5.35rem);
  font-weight: 620;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero h1 em {
  color: var(--cyan-300);
  font-style: normal;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #c6d4e4;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #d6e1ee;
  font-size: 0.87rem;
  font-weight: 680;
}

.hero__link span {
  color: var(--cyan-300);
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.hero__link:hover span {
  transform: translateY(4px);
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 660px;
  margin-right: calc((100vw - min(calc(100vw - 40px), var(--container))) / -2);
  overflow: hidden;
  border-radius: 30px 0 0 0;
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: 61% center;
}

.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-900) 0%, rgba(6, 47, 72, 0.78) 6%, rgba(6, 47, 72, 0) 35%),
    linear-gradient(0deg, rgba(14, 22, 44, 0.42), transparent 45%);
}

.hero__badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 270px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero__badge-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-500);
  background: var(--ice-100);
  border-radius: 50%;
}

.hero__badge-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero__badge > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero__badge strong {
  color: var(--navy-950);
  font-size: 0.83rem;
}

.hero__badge small {
  margin-top: 3px;
  color: var(--slate);
  font-size: 0.67rem;
}

/* Intro */
.intro {
  background: var(--sand-50);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: end;
}

.intro__heading h2 {
  max-width: 620px;
}

.intro__copy {
  padding-bottom: 4px;
}

.intro__copy p {
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 1rem;
}

.intro__copy p:last-child {
  margin-bottom: 0;
}

/* Clientes (prova social) */
.clients {
  padding: 54px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients__label {
  margin: 0 0 30px;
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Cada logo mora num quadro uniforme: mesmo tamanho, centralizado, alinhado. */
.client {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.client:hover {
  border-color: rgba(7, 154, 197, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

/* A logo se ajusta dentro do quadro sem estourar, mantendo a proporção. */
.client img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client span {
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  text-align: center;
}

/* Services */
.services {
  position: relative;
  color: var(--white);
  background: var(--navy-950);
}

.services::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(circle at 90% 10%, rgba(78, 166, 192, 0.12), transparent 34%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='180'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.045)'%3E%3Cpath d='M0 26q65-18 130 0t130 0'/%3E%3Cpath d='M0 71q65-14 130 0t130 0'/%3E%3Cpath d='M0 116q65-18 130 0t130 0'/%3E%3Cpath d='M0 161q65-14 130 0t130 0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 260px 180px;
  content: "";
}

.services .container {
  position: relative;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading--split h2 {
  color: var(--white);
}

.section-heading--split > p {
  max-width: 450px;
  margin: 0 0 4px auto;
  color: #a3b3c8;
  font-size: 0.96rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 36px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.35s ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(110, 197, 210, 0.1);
  border-radius: 50%;
  content: "";
  transition: transform 0.35s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.service-card:hover::after {
  transform: scale(1.22);
}

.service-card--featured {
  background: var(--blue-600);
}

.service-card--featured:hover {
  background: #17608a;
}

.service-card__number {
  position: absolute;
  top: 38px;
  right: 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 45px;
  color: var(--cyan-300);
  border: 1px solid rgba(110, 197, 210, 0.25);
  border-radius: 50%;
  place-items: center;
}

.service-card--featured .service-card__icon {
  color: var(--white);
}

.service-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.service-card h3 {
  max-width: 360px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.5rem;
}

.service-card p {
  max-width: 440px;
  margin: 0;
  color: #a3b3c8;
  font-size: 0.87rem;
}

.service-card--featured p {
  color: #e6f0f8;
}

.service-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

/* Explain (custo + diagrama do poço) */
.explain {
  background: var(--white);
}

.explain__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.explain__content h2 {
  margin-bottom: 22px;
}

.explain__lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--slate);
}

.cost-list {
  display: grid;
  gap: 17px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.cost-list li {
  position: relative;
  padding-left: 46px;
  counter-increment: cost;
}

.cost-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--blue-500);
  content: counter(cost, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.cost-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-950);
  font-size: 0.97rem;
  letter-spacing: -0.02em;
}

.cost-list span {
  color: var(--slate);
  font-size: 0.82rem;
  line-height: 1.6;
}

.explain__figure {
  padding: 28px 24px 20px;
  margin: 0;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.well-diagram {
  display: block;
  width: 100%;
  height: auto;
}

/* Legenda em HTML: existe só no mobile, onde as chamadas dentro do SVG
   ficariam abaixo de 9px. Mesma informação, em tamanho legível. */
.well-legend {
  display: none;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.well-legend li {
  display: flex;
  flex-direction: column;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.well-legend strong {
  color: var(--navy-950);
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.well-legend span {
  color: var(--slate);
  font-size: 0.78rem;
}

/* Água viva no diagrama: fluxo nas fraturas, nível oscilando e bolhas. */
@keyframes fracture-flow {
  to { stroke-dashoffset: -26; }
}

.diagram-fracture {
  stroke-dasharray: 7 6;
  animation: fracture-flow 1.6s linear infinite;
}

@keyframes water-bob {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

.diagram-water {
  animation: water-bob 4.5s ease-in-out infinite alternate;
}

@keyframes bubble-rise {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  12% { opacity: 0.9; }
  85% { opacity: 0.9; }

  100% {
    opacity: 0;
    transform: translateY(-218px);
  }
}

.diagram-bubble {
  animation: bubble-rise 4.4s linear infinite;
}

.diagram-bubble--2 {
  animation-delay: 1.5s;
  animation-duration: 5.1s;
}

.diagram-bubble--3 {
  animation-delay: 2.9s;
  animation-duration: 3.9s;
}

.explain__figure figcaption {
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.75rem;
  line-height: 1.6;
}

.explain__figure figcaption strong {
  color: var(--navy-950);
}

/* Galeria "Nosso trabalho de perto" */
.gallery {
  background: var(--sand-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 340px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-md);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Faixa fotográfica */
.photo-band {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--navy-950);
}

.photo-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.photo-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 30, 47, 0.92), rgba(3, 30, 47, 0.15) 62%);
  content: "";
}

.photo-band__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 50px;
  color: var(--white);
}

.photo-band__content p {
  max-width: 680px;
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.photo-band__content small {
  color: #a8c6d2;
  font-size: 0.78rem;
  font-weight: 620;
}

/* Process */
.process {
  background: var(--white);
}

.section-heading--center {
  max-width: 740px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--slate);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline__item {
  position: relative;
  padding: 0 24px 0 0;
}

.timeline__item::before {
  position: absolute;
  top: 19px;
  right: 0;
  left: 48px;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline__item:last-child::before {
  display: none;
}

.timeline__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--blue-600);
  background: var(--ice-100);
  border: 1px solid #d2e2ec;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 760;
  place-items: center;
}

.timeline h3 {
  min-height: 48px;
  margin-bottom: 12px;
  font-size: 1.04rem;
  letter-spacing: -0.025em;
}

.timeline p {
  margin: 0;
  color: var(--slate);
  font-size: 0.79rem;
  line-height: 1.65;
}

/* Audience */
.audiences {
  position: relative;
  color: var(--white);
  background: var(--navy-900);
}

.audiences::after {
  position: absolute;
  top: 50%;
  left: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(110, 197, 210, 0.1);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  box-shadow:
    0 0 0 70px rgba(110, 197, 210, 0.03),
    0 0 0 140px rgba(110, 197, 210, 0.02);
}

.audiences__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: center;
}

.audiences__content h2 {
  margin-bottom: 26px;
  color: var(--white);
}

.audiences__content > p {
  max-width: 470px;
  margin-bottom: 34px;
  color: #aabdd0;
}

.audience-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.audience-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  align-items: start;
  padding: 25px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease;
}

.audience-item > * {
  transition: transform 0.25s ease;
}

.audience-item:hover > * {
  transform: translateX(10px);
}

.audience-item:hover {
  background: rgba(255, 255, 255, 0.035);
}

.audience-item > span {
  color: var(--cyan-300);
  font-size: 0.68rem;
  font-weight: 760;
}

.audience-item h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.12rem;
}

.audience-item p {
  margin: 0;
  color: #a3b3c8;
  font-size: 0.8rem;
}

/* História (sobre a empresa) */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.about__story h2 {
  margin-bottom: 26px;
}

.about__story p {
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 1rem;
}

.about__marcos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  padding: 26px 0 0;
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about__marcos li {
  display: flex;
  flex-direction: column;
}

.about__marcos strong {
  color: var(--blue-600);
  font-variant-numeric: tabular-nums;
  font-size: 1.7rem;
  font-weight: 730;
  letter-spacing: -0.03em;
}

.about__marcos span {
  margin-top: 2px;
  color: var(--slate);
  font-size: 0.78rem;
}

.about__highlight {
  position: relative;
  padding: 40px 38px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__highlight-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--cyan-300);
  background: rgba(113, 217, 239, 0.09);
  border: 1px solid rgba(113, 217, 239, 0.2);
  border-radius: 50%;
  place-items: center;
}

.about__highlight-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.about__highlight-quote {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 680;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.about__highlight-text {
  margin: 0;
  color: #b3ccd5;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Equipamentos (frota) */
.equipment {
  color: var(--white);
  background: var(--navy-950);
}

.equipment .section-heading--split h2 {
  color: var(--white);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.equipment-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.equipment-card:hover {
  border-color: rgba(113, 217, 239, 0.35);
  transform: translateY(-5px);
}

.equipment-card__photo {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--navy-900);
}

.equipment-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.equipment-card:hover .equipment-card__photo img {
  transform: scale(1.05);
}

.equipment-card__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 13px;
  color: var(--navy-950);
  background: var(--cyan-300);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.06em;
}

.equipment-card__body {
  padding: 24px 24px 28px;
}

.equipment-card__body h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.15rem;
}

.equipment-card__specs {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.equipment-card__specs li {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
}

.equipment-card__specs strong {
  color: var(--cyan-300);
  font-variant-numeric: tabular-nums;
  font-size: 1.12rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.equipment-card__specs span {
  margin-top: 1px;
  color: #8fa8b5;
  font-size: 0.64rem;
  font-weight: 640;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Caminhões de apoio */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.support-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.support-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: linear-gradient(135deg, #58b7cd 0%, #2e85a5 46%, #24406e 46%, #27417f 100%);
  border-radius: 16% 50% 50% 50%;
  place-items: center;
  transform: rotate(45deg);
}

.support-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transform: rotate(-45deg);
}

.support-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
}

.support-card p {
  margin: 0;
  color: #9fb9c4;
  font-size: 0.85rem;
  line-height: 1.65;
}

.equipment-card__body p {
  margin: 0;
  color: #9fb9c4;
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Coverage */
.coverage {
  overflow: hidden;
  background: var(--ice-50);
}

.coverage__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: center;
}

.coverage__visual {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.map-shape {
  position: relative;
  width: min(82vw, 470px);
}

.map-shape__svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 55px rgba(28, 49, 92, 0.28));
}

.map-shape__label {
  position: absolute;
  top: 46%;
  left: 50%;
  color: rgba(255, 255, 255, 0.11);
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.map-shape__pin {
  /* Posição geográfica real de Divinópolis dentro do contorno do estado. */
  position: absolute;
  top: 68%;
  left: 55%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.78rem;
}

.map-shape__pin i {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  background: var(--white);
  border: 3px solid var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(110, 197, 210, 0.16);
}

.map-shape__pin b {
  padding: 7px 10px;
  background: rgba(17, 27, 52, 0.8);
  border-radius: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.map-shape__pulse {
  position: absolute;
  z-index: 1;
  top: calc(68% - 20px);
  left: calc(55% - 20px);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  animation: map-pulse 2.6s ease-out infinite;
}

.map-shape__pulse--two {
  animation-delay: 1.3s;
}

@keyframes map-pulse {
  0% { opacity: 0.8; transform: scale(0.2); }
  100% { opacity: 0; transform: scale(2.1); }
}

.coverage__content h2 {
  margin-bottom: 26px;
}

.coverage__content > p {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--slate);
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 20px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.region-list li {
  position: relative;
  padding-left: 19px;
  color: #3a4c6c;
  font-size: 0.81rem;
  font-weight: 630;
}

.region-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  gap: 10px;
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 730;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Compliance */
.compliance {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ice-50);
}

.compliance__box {
  display: grid;
  grid-template-columns: 76px 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 38px 44px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.compliance__icon {
  display: grid;
  width: 62px;
  height: 62px;
  color: var(--cyan-300);
  background: rgba(110, 197, 210, 0.09);
  border: 1px solid rgba(110, 197, 210, 0.2);
  border-radius: 50%;
  place-items: center;
}

.compliance__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.compliance__box > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan-300);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.compliance__box h2 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.compliance__box > p {
  margin: 0;
  color: #b0c1d4;
  font-size: 0.78rem;
}

.compliance__box > p a {
  display: inline;
  color: var(--cyan-300);
  font-weight: 700;
}

/* FAQ */
.faq {
  background: var(--ice-50);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq__heading h2 {
  margin-bottom: 24px;
}

.faq__heading > p {
  margin-bottom: 30px;
  color: var(--slate);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 25px 4px;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.accordion__item summary::-webkit-details-marker {
  display: none;
}

.accordion__item summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #bfccdc;
  border-radius: 50%;
}

.accordion__item summary i::before,
.accordion__item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--blue-600);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.accordion__item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion__item[open] summary {
  color: var(--blue-600);
}

.accordion__content {
  overflow: hidden;
}

.accordion__content p {
  max-width: 700px;
  padding: 0 55px 25px 4px;
  margin: 0;
  color: var(--slate);
  font-size: 0.87rem;
}

/* Contact */
.contact {
  padding-top: 0;
  background:
    linear-gradient(to bottom, var(--ice-50) 0%, var(--ice-50) 50%, var(--navy-950) 50%, var(--navy-950) 100%);
}

.contact__shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 76px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 32px;
  box-shadow: 0 35px 100px rgba(14, 23, 45, 0.3);
}

.contact__shell::before {
  position: absolute;
  top: -300px;
  left: -300px;
  width: 680px;
  height: 680px;
  background: rgba(88, 183, 205, 0.08);
  border: 1px solid rgba(110, 197, 210, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(110, 197, 210, 0.02),
    0 0 0 140px rgba(110, 197, 210, 0.02);
  content: "";
}

.contact__content,
.contact__card {
  position: relative;
  z-index: 1;
}

.contact__content h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.contact__content > p {
  max-width: 480px;
  margin-bottom: 31px;
  color: #b3c6d8;
}

.contact__content ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact__content li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7e2ec;
  font-size: 0.8rem;
  font-weight: 620;
}

.contact__content li svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact__card {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 21px;
  box-shadow: 0 24px 70px rgba(10, 18, 38, 0.22);
}

.contact__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.contact__card-top span {
  color: var(--navy-950);
  font-size: 1.04rem;
  font-weight: 730;
}

.contact__card-top small {
  color: var(--blue-600);
  font-size: 0.65rem;
  font-weight: 700;
}

.contact__steps {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.contact__steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.contact__steps li > span {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--blue-600);
  background: var(--ice-100);
  border: 1px solid #d2e2ec;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 760;
  place-items: center;
}

.contact__steps p {
  margin: 2px 0 0;
  color: var(--slate);
  font-size: 0.79rem;
  line-height: 1.55;
}

.contact__steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-950);
  font-size: 0.9rem;
}

.button--whatsapp {
  width: 100%;
  min-height: 55px;
  color: var(--white);
  background: #117538;
  border: 0;
}

.button--whatsapp:hover {
  background: #0e6330;
  box-shadow: 0 14px 34px rgba(1, 48, 24, 0.28);
}

.button--whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.button--whatsapp:hover svg {
  transform: none;
}

.contact__phone {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 620;
  text-align: center;
}

.contact__phone a {
  color: var(--blue-600);
  font-weight: 730;
}

.contact__note {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 0.81rem;
  line-height: 1.5;
  text-align: center;
}

.contact__note a {
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom a:hover {
  color: var(--cyan-300);
}

/* Legal (política de privacidade) */
.container--narrow {
  width: min(calc(100% - 40px), 760px);
}

.legal {
  padding: 64px 0 100px;
  background: var(--sand-50);
}

.legal h1 {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.legal__updated {
  margin-bottom: 34px;
  color: var(--slate-light);
  font-size: 0.78rem;
}

.legal h2 {
  margin: 42px 0 12px;
  font-size: 1.3rem;
}

.legal p,
.legal li {
  color: var(--slate);
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 22px;
  margin: 0 0 18px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--blue-600);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal strong {
  color: var(--ink);
}

/* Página 404 */
.notfound {
  display: grid;
  padding: 90px 0 110px;
  background: var(--sand-50);
  place-items: center;
}

.notfound__inner {
  max-width: 640px;
  text-align: center;
}

.notfound__code {
  margin: 0 0 6px;
  color: var(--cyan-400);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  line-height: 1;
}

.notfound h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.notfound__lead {
  margin: 0 auto 34px;
  max-width: 460px;
  color: var(--slate);
  font-size: 1rem;
}

.notfound__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
}

.notfound .hero__link {
  color: var(--blue-600);
}

.notfound .hero__link span {
  color: var(--blue-600);
}

.notfound__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.notfound__links a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--slate);
  font-size: 0.84rem;
  font-weight: 650;
}

.notfound__links a:hover {
  color: var(--blue-600);
}

/* Footer */
.footer {
  color: #a9b8cc;
  background: var(--navy-950);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.9fr 0.9fr;
  gap: 58px;
  padding-top: 28px;
  padding-bottom: 70px;
}

/* No rodapé escuro, o logo completo ganha uma placa clara para manter contraste. */
.brand--footer img {
  width: 150px;
  height: auto;
  padding: 18px;
  background: var(--ice-50);
  border-radius: 16px;
}

.footer__brand > p {
  max-width: 280px;
  margin: 20px 0 0;
  font-size: 0.75rem;
}

.footer__nav,
.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__nav strong,
.footer__cta strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.79rem;
}

.footer__nav a,
.footer__nav span,
.footer__cta p {
  margin: 0;
  font-size: 0.7rem;
}

.footer__nav a:hover {
  color: var(--cyan-300);
}

.footer__cta .button {
  min-height: 42px;
  margin-top: 7px;
  padding-inline: 17px;
  font-size: 0.72rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  margin: 0;
  color: #8291a8;
  font-size: 0.62rem;
}

/* Floating CTA */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  color: var(--white);
  background: #117538;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(1, 48, 24, 0.28);
  font-size: 0.74rem;
  font-weight: 720;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 38px rgba(1, 48, 24, 0.38);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* Cookies */
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: min(calc(100% - 40px), 480px);
  padding: 20px;
  color: #dde7f0;
  background: rgba(17, 27, 52, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(12, 20, 40, 0.35);
  backdrop-filter: blur(16px);
}

.cookie-banner p {
  margin-bottom: 14px;
  font-size: 0.72rem;
}

.cookie-banner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 680;
  cursor: pointer;
}

.cookie-button--accept {
  color: var(--navy-950);
  background: var(--cyan-300);
  border-color: var(--cyan-300);
}

/* Entrada do hero: cascata única no carregamento da página. */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes visual-unveil {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes visual-settle {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.js .hero__content > * {
  animation: rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .hero__content > .eyebrow { animation-delay: 0.05s; }
.js .hero__content > h1 { animation-delay: 0.16s; }
.js .hero__content > .hero__lead { animation-delay: 0.28s; }
.js .hero__content > .hero__actions { animation-delay: 0.4s; }
.js .hero__visual {
  animation: visual-unveil 0.9s cubic-bezier(0.65, 0, 0.2, 1) 0.3s both;
}

.js .hero__visual img {
  animation: visual-settle 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.js .hero__badge {
  animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both;
}

.js /* Reveal ao rolar */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Cartões da mesma fileira entram em sequência, não em bloco. */


.js .service-grid .reveal:nth-child(4),

.js .timeline .reveal:nth-child(2) { transition-delay: 0.09s; }
.js .timeline .reveal:nth-child(3) { transition-delay: 0.18s; }
.js .timeline .reveal:nth-child(4) { transition-delay: 0.27s; }
.js .timeline .reveal:nth-child(5) { transition-delay: 0.36s; }

/* Figuras entram assentando, com leve escala. */
.js .explain__figure,
.js .coverage__visual {
  transform: translateY(26px) scale(0.965);
}

/* Ícones moldados na gota do logo: tile em forma de gota com facetas da marca. */
.hero__badge-icon,
.service-card__icon,
.compliance__icon {
  color: var(--white);
  background: linear-gradient(135deg, #58b7cd 0%, #2e85a5 46%, #24406e 46%, #27417f 100%);
  border: 0;
  border-radius: 16% 50% 50% 50%;
  transform: rotate(45deg);
}

.hero__badge-icon svg,
.service-card__icon svg,
.compliance__icon svg {
  transform: rotate(-45deg);
}

/* Números de etapa em gota suave, na mesma linguagem. */
.timeline__number,
.contact__steps li > span {
  position: relative;
  z-index: 1;
  background: none;
  border: 0;
}

.timeline__number::before,
.contact__steps li > span::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ice-100);
  border: 1px solid #d2e2ec;
  border-radius: 16% 50% 50% 50%;
  content: "";
  transform: rotate(45deg);
}

/* Tablet */
@media (max-width: 1050px) {
  :root { --container: 940px; }

  .nav { gap: 18px; }
  .nav a { font-size: 0.77rem; }
  .button--header { padding-inline: 16px; }

  .hero__grid { gap: 24px; }
  .hero__visual { min-height: 610px; }
  .hero h1 { font-size: clamp(2.8rem, 5.3vw, 4.6rem); }

  .intro__grid,
  .coverage__grid,
  .faq__grid { gap: 60px; }

  .audiences__grid { gap: 60px; }

  .timeline { grid-template-columns: repeat(3, 1fr); gap: 42px 0; }
  .timeline__item:nth-child(3)::before { display: none; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-auto-rows: 260px; }
  .equipment-card__photo { height: 180px; }

  .contact__shell { gap: 45px; padding: 54px; }
  .footer__top { grid-template-columns: 1.2fr 0.7fr 0.9fr; }
}

/* Mobile navigation and layout */
@media (max-width: 880px) {
  :root { --header-height: 72px; }

  .section { padding: 82px 0; }
  .container { width: min(calc(100% - 30px), var(--container)); }

  .topbar__inner { justify-content: center; min-height: 32px; text-align: center; }
  .topbar a { display: none; }

  .header__inner { justify-content: space-between; }
  .button--header { display: none; }
  .menu-toggle { display: block; order: 3; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 25px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(17, 27, 52, 0.13);
    transform: translateY(-14px);
    transition:
      opacity 0.25s ease,
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.3s ease;
  }

  .nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav a { padding: 15px 5px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
  .nav a::after { display: none; }
  .nav .nav__cta {
    display: inline-flex;
    justify-content: center;
    padding: 0 22px;
    margin-top: 18px;
    border-bottom: 0;
    font-size: 0.88rem;
  }

  .hero { padding-top: 54px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 18px 0 26px; }
  .hero h1 { max-width: 680px; }
  .hero__lead { max-width: 650px; }
  .hero__visual {
    min-height: 510px;
    margin-right: calc((100vw - min(calc(100vw - 30px), var(--container))) / -2);
    margin-left: calc((100vw - min(calc(100vw - 30px), var(--container))) / -2);
    border-radius: 0;
  }
  .hero__visual-overlay { background: linear-gradient(0deg, rgba(14, 22, 44, 0.45), transparent 50%); }
  .intro__grid,
  .explain__grid,
  .coverage__grid,
  .faq__grid,
  .audiences__grid,
  .contact__shell { grid-template-columns: 1fr; }

  .explain__grid { gap: 44px; }
  .photo-band { height: 400px; }

  .intro__grid { gap: 34px; }
    .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .section-heading--split > p { margin-left: 0; }
  .service-card { min-height: 300px; }

  .audiences__grid { gap: 55px; }

  .coverage__grid { gap: 35px; }
  .coverage__visual { min-height: 440px; order: 2; }
  .coverage__content { order: 1; }

  .compliance__box { grid-template-columns: 62px 1fr; }
  .compliance__box > p { grid-column: 1 / -1; }

  .faq__grid { gap: 50px; }
  .faq__heading { position: static; }

  .contact__shell { gap: 42px; padding: 45px; }

  .footer__top { grid-template-columns: 1.3fr 0.7fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .section { padding: 70px 0; }

  .site-header .brand img { height: 48px; }

  .hero { padding-top: 42px; }
  .hero__content { padding-top: 10px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); line-height: 1.01; }
  .hero__lead { font-size: 1rem; line-height: 1.62; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .button--large { width: 100%; }
  .hero__link { justify-content: center; }
  .hero__visual { min-height: 400px; }
  .hero__visual img { object-position: 63% center; }
  .hero__badge { right: 15px; bottom: 15px; left: 15px; min-width: 0; }
      .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; padding: 29px; }
  .service-card__icon { margin-bottom: 35px; }

  .section-heading--center { margin-bottom: 50px; text-align: left; }
  .section-heading--center .eyebrow { justify-content: flex-start; }
  .section-heading--center > p { margin-left: 0; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline__item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 0 0 34px; }
  .timeline__item::before { top: 39px; bottom: 0; left: 19px; width: 1px; height: auto; }
  .timeline__item:nth-child(3)::before { display: block; }
  .timeline__item:last-child::before { display: none; }
  .timeline__number { margin: 0; }
  .timeline h3 { min-height: 0; margin: 1px 0 8px; }

  .audience-item { grid-template-columns: 35px 1fr; padding-inline: 0; }
  .audience-item:hover > * { transform: translateX(6px); }

  .explain__figure { padding: 18px 14px 14px; overflow: hidden; }
  .well-diagram__callouts { display: none; }
  /* 460/310: o desenho ocupa 0–310 do viewBox, então esta escala o faz
     preencher a largura e joga a coluna de chamadas para fora do recorte. */
  .well-diagram { width: 148.4%; }
  .well-legend { display: block; }
  .photo-band { height: 340px; }
  .photo-band__content { padding-bottom: 38px; }

  .coverage__visual { min-height: 340px; }
  .map-shape { width: 340px; max-width: 98%; }
  .map-shape__label { font-size: 5rem; }
  .region-list { grid-template-columns: 1fr; }

  .compliance { padding: 0; }
  .compliance__box { grid-template-columns: 1fr; padding: 30px 25px; border-radius: 20px; }
  .compliance__box > p { grid-column: auto; }

  .accordion__item summary { padding-block: 21px; font-size: 0.92rem; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client { height: 88px; padding: 16px; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__highlight { padding: 32px 26px; }

  .equipment-grid { grid-template-columns: 1fr; gap: 16px; }
  .equipment-card__photo { height: 200px; }
  .support-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
  .support-card { padding: 22px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }

  .contact__shell { width: 100%; padding: 55px 20px; border-radius: 0; }
  .contact__card { padding: 27px 20px; }
  .contact__card-top { align-items: flex-start; flex-direction: column; gap: 4px; }

  .footer__top { grid-template-columns: 1fr 1fr; padding-bottom: 45px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 6px; }

  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
}

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

@media print {
  .topbar,
  .site-header,
  .floating-whatsapp,
  .cookie-banner { display: none !important; }
  .section { padding: 40px 0; }
  .js .reveal { opacity: 1; transform: none; }
}
