/* ==========================================================================
   Conducab — Design System (Manufec-inspired)
   Brand: #0A2B5B navy + #E77D2F laranja + Open Sans
   ========================================================================== */

:root {
  --color-navy: #0A2B5B;
  --color-navy-dark: #061a3a;
  --color-navy-light: #14457f;
  --color-orange: #E77D2F;
  --color-orange-dark: #c8651a;
  --color-orange-light: #f59147;

  --color-bg: #ffffff;
  --color-bg-soft: #f2f4f7;
  --color-bg-dark: #0a1426;
  --color-text: #1a1f2e;
  --color-text-soft: #4a5468;
  --color-text-muted: #7a8290;
  --color-border: #e5e9f0;
  --color-white: #ffffff;

  --font-base: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-ghost: clamp(5rem, 12vw, 12rem);
  --fs-hero: clamp(2.5rem, 5.5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-lead: clamp(1.0625rem, 1.3vw, 1.1875rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --container-max: 1280px;
  --container-padding: 1.25rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(10, 43, 91, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 43, 91, 0.14);
  --shadow-lg: 0 24px 60px rgba(10, 43, 91, 0.22);

  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-base);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Wraps p/ que diagonais nao deixem espacos brancos na transicao soft<->white */
.cta-strip + .footer,
.page-hero + .section,
.section + .footer { position: relative; }

/* Quando page-hero (clip-path V bottom) eh seguida de .section branca, garantir que o triangulo cortado mostre o branco da section */
.page-hero { z-index: 1; }
.page-hero + section { position: relative; z-index: 2; }
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--color-orange); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--color-navy); }
ul { list-style: none; }

/* ===== Layout helpers ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
  position: relative;
  padding-left: 2.25rem;
}
.eyebrow::before {
  content: ""; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 1.75rem; height: 2px;
  background: var(--color-orange);
}

.eyebrow--light { color: var(--color-orange-light); }
.eyebrow--light::before { background: var(--color-orange-light); }

.section { padding: var(--space-9) 0; position: relative; }
.section--lg { padding: var(--space-10) 0; }
.section--soft {
  background: var(--color-bg-soft);
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  padding: calc(var(--space-9) + 30px) 0;
  margin: -30px 0;
}

/* Modifier: aplicar diagonais em qualquer section que use bg colorido */
.section--clip {
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  padding: calc(var(--space-9) + 30px) 0;
  margin: -30px 0;
}
.section--clip-top {
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% 100%, 0 100%);
  padding-top: calc(var(--space-9) + 30px);
  margin-top: -30px;
}
.section--clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  padding-bottom: calc(var(--space-9) + 30px);
  margin-bottom: -30px;
}

/* Ghost text huge background */
.ghost {
  position: absolute;
  font-size: var(--fs-ghost);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  line-height: 1;
}
.ghost--top { top: 8%; left: 50%; transform: translateX(-50%); }
.ghost--center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ghost--dark { color: rgba(10, 43, 91, 0.06); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 1rem 2rem;
  font-size: var(--fs-body);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-orange-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Botão WhatsApp — usado no estado de sucesso quando o lead escolheu o canal WhatsApp */
.btn--wa {
  background: #25d366;
  color: var(--color-white);
}
.btn--wa:hover {
  background: #1da851;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn--navy:hover {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.0625rem; }
.btn--icon { width: 18px; height: 18px; }

/* ===== Topbar ===== */
.topbar {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.8125rem;
  padding: 6px 0;
  position: relative;
  z-index: 101;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  font-weight: 700;
  transition: opacity var(--t-fast);
}
.topbar__cta:hover { color: var(--color-white); opacity: 0.85; text-decoration: underline; }
.topbar__cta svg { width: 16px; height: 16px; }
.topbar__contacts { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.topbar__item {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--color-white);
  transition: opacity var(--t-fast);
}
.topbar__item:hover { color: var(--color-white); opacity: 0.85; text-decoration: underline; }
.topbar__item svg { width: 14px; height: 14px; }

.topbar__social { display: flex; align-items: center; gap: var(--space-3); }
.topbar__social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--color-white);
  transition: all var(--t-fast);
}
.topbar__social-link:hover { background: var(--color-white); color: var(--color-orange); transform: scale(1.06); }

/* ===== Header ===== */
.header {
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  background: transparent;
  z-index: 50;
  transition: background var(--t-base), box-shadow var(--t-base), top var(--t-base);
}
.header.is-scrolled {
  position: fixed;
  top: 0;
  background: var(--color-navy);
  box-shadow: var(--shadow-md);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-4) 0;
  flex-wrap: nowrap;
}
.brand { display: inline-flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: nowrap;
}
.nav__list {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  flex-wrap: nowrap;
}
.nav__link {
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--fs-body);
  padding: var(--space-2) 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav__link:hover { color: var(--color-orange-light); }
.nav__cta { margin-left: 0; flex-shrink: 0; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}
.hamburger svg { width: 22px; height: 22px; }

/* Wrap hero + info-bar para preencher os triângulos do clip-path com o cinza da info-bar */
.hero-wrap {
  background: var(--color-bg-soft);
  position: relative;
}

/* ===== Trust bar (numeros em destaque sobre fundo escuro) ===== */
.trust-bar {
  background: var(--color-bg-dark);
  padding: var(--space-7) 0 calc(var(--space-7) + 30px);
  color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}
/* Section--soft que vem logo após trust-bar: V topo casa com V bottom do trust-bar */
.trust-bar + .section--soft {
  clip-path: polygon(0 30px, 50% 0, 100% 30px, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  padding-top: calc(var(--space-9) + 60px);
  margin-top: 0;
}
.trust-bar__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.trust-bar__item { text-align: center; }
.trust-bar__num {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.trust-bar__label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===== Why us (pagina Sobre — foto + texto) ===== */
.why-us .why-us__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
}
.why-us__media {
  position: relative;
  isolation: isolate;
}
.why-us__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  max-height: 560px;
  position: relative;
  z-index: 1;
}
.why-us__media::after {
  content: "";
  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-orange);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.why-us__eyebrow {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
  position: relative;
  padding-left: 2.25rem;
}
.why-us__eyebrow::before {
  content: ""; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 1.75rem; height: 2px;
  background: var(--color-orange);
}
.why-us h2 { font-size: var(--fs-h2); margin-bottom: var(--space-4); }
.why-us__text {
  font-size: 1.0625rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* ===== Page hero (páginas internas — Sobre/Produtos/Linha) ===== */
.page-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10, 43, 91, 0.85) 0%, rgba(10, 43, 91, 0.65) 60%, rgba(231, 125, 47, 0.4) 100%),
    var(--hero-bg, url("../img/hero/hero-industrial.webp"));
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: calc(var(--space-10) + 160px) 0 calc(var(--space-9) + 80px);
  margin-top: -120px;
  text-align: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}
.page-hero__inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero__breadcrumb {
  font-size: var(--fs-small);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-3);
}
.page-hero__breadcrumb a { color: var(--color-orange-light); }
.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.page-hero h1 .accent { color: var(--color-orange); }
.page-hero__lead {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  max-width: 700px;
  margin-inline: auto;
}
.page-hero__ctas { display: inline-flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }

/* ===== Grid de produtos detalhados ===== */
.detailed-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.detailed-product {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--t-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.detailed-product:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.detailed-product__media {
  aspect-ratio: 16 / 10;
  background: #ffffff;
  overflow: hidden;
}
.detailed-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-base);
}
.detailed-product:hover .detailed-product__media img { transform: scale(1.05); }
.detailed-product__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.detailed-product__cat {
  font-size: var(--fs-tiny);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 6px;
}
.detailed-product__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.detailed-product__head .detailed-product__title { margin-bottom: 0; flex: 1; min-width: 0; }
.detailed-product__title { font-size: 1rem; color: var(--color-navy); margin-bottom: var(--space-3); line-height: 1.3; }
.detailed-product__specs { font-size: 0.8125rem; color: var(--color-text-soft); margin-bottom: var(--space-3); line-height: 1.5; flex: 1; }
.detailed-product__cta-mini {
  flex-shrink: 0;
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: transparent;
  border: 1px solid var(--color-orange);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-base), color var(--t-base);
  line-height: 1.1;
}
.detailed-product__cta-mini:hover,
.detailed-product__cta-mini:focus-visible {
  background: var(--color-orange);
  color: var(--color-white);
  outline: none;
}
.detailed-product__block { margin-bottom: var(--space-3); }
.detailed-product__block:last-of-type { margin-bottom: var(--space-3); }
.detailed-product__block-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 0 0 4px;
}
.detailed-product__block p {
  font-size: 0.78rem;
  color: var(--color-text-soft);
  line-height: 1.55;
  margin: 0;
}
.detailed-product__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.detailed-product__tag {
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange-dark);
  background: rgba(231, 125, 47, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ===== CTA strip ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(231, 125, 47, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.cta-strip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
  position: relative;
}
.cta-strip h2 { color: var(--color-white); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: var(--space-2); }
.cta-strip p { color: rgba(255, 255, 255, 0.85); font-size: var(--fs-lead); margin: 0; }

/* ===== Hero ===== */
.hero {
  position: relative;
  /* Alternativa A (atual): industrial canteiro com cabos de Aluminio + subestacao (item 6).
     Alternativa B (barracao Conducab Sumare): trocar 'hero-aluminio-industrial.webp' por 'hero-sobre.webp'. */
  background:
    linear-gradient(135deg, rgba(10, 43, 91, 0.9) 0%, rgba(10, 43, 91, 0.7) 60%, rgba(231, 125, 47, 0.3) 100%),
    url("../img/hero/hero-aluminio-industrial.webp");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  overflow: hidden;
  padding: calc(var(--space-10) + 160px) 0 calc(var(--space-10) + 40px);
  text-align: center;
  min-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  margin-top: -120px;
}
.hero .ghost--top { top: 200px; }

/* ===== Info-bar (destaques após hero) ===== */
.info-bar {
  background: var(--color-bg-soft);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}
.info-bar__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.info-bar__item--highlight {
  background: linear-gradient(135deg, rgba(231, 125, 47, 0.08) 0%, rgba(231, 125, 47, 0.16) 100%);
  border: 1px solid rgba(231, 125, 47, 0.25);
  border-radius: var(--radius-md);
}
.info-bar__item--highlight .info-bar__icon { background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%); }
.info-bar__item--highlight .info-bar__text { color: var(--color-orange-dark); }
.info-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
}
.info-bar__icon {
  width: 48px; height: 48px;
  background: var(--color-orange);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}
.info-bar__icon svg { width: 24px; height: 24px; }
.info-bar__text {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

/* ===== Selos ISO / NBR ===== */
.seal {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 8px;
  font-size: var(--fs-small);
  color: var(--color-navy);
  font-weight: 700;
  transition: all var(--t-fast);
}
.seal:hover { border-color: var(--color-orange); transform: translateY(-2px); }
.seal__icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}
.seal__icon svg { width: 22px; height: 22px; }
.seal__title { display: block; font-weight: 800; font-size: 0.9375rem; line-height: 1.1; }
.seal__sub { display: block; font-size: var(--fs-tiny); color: var(--color-text-muted); font-weight: 600; margin-top: 2px; }

.seal--light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-white);
}
.seal--light:hover { border-color: var(--color-orange); background: rgba(255, 255, 255, 0.14); }
.seal--light .seal__sub { color: rgba(255, 255, 255, 0.7); }

.hero__seals {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-5);
  flex-wrap: wrap;
}

/* ===== Linhas de produtos (cards com bg image + CTA) ===== */
.product-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.product-line {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-base);
  text-decoration: none;
  color: var(--color-white);
  isolation: isolate;
  background-color: var(--color-navy);
}
.product-line__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.6s ease;
}
.product-line:hover .product-line__bg { transform: scale(1.08); }
.product-line__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: opacity var(--t-base);
}
.product-line:hover .product-line__overlay { opacity: 0.85; }

.product-line:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-line__icon {
  width: 48px; height: 48px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}
.product-line__icon svg { width: 24px; height: 24px; }

.product-line__count {
  display: inline-block;
  font-size: var(--fs-tiny);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.product-line__name {
  font-size: 1.25rem;
  color: var(--color-white);
  font-weight: 800;
  margin: 0 0 var(--space-3);
  line-height: 1.2;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.product-line__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: color var(--t-fast);
}
.product-line__cta svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.product-line:hover .product-line__cta { color: var(--color-orange-light); }
.product-line:hover .product-line__cta svg { transform: translateX(4px); }

/* Overlay variants — alternar cores */
/* Overlay unificado: gradiente transparente -> navy escuro no rodape (foto respira em cima, texto legivel embaixo). */
.product-line__overlay--navy,
.product-line__overlay--orange,
.product-line__overlay--dual,
.product-line__overlay--dark {
  background: linear-gradient(180deg, rgba(6, 22, 50, 0.0) 0%, rgba(6, 22, 50, 0.0) 35%, rgba(6, 22, 50, 0.55) 65%, rgba(6, 22, 50, 0.92) 100%);
}

/* ===== Dropdown Produtos no nav ===== */
.nav__item { position: relative; }
.nav__has-dropdown > .nav__link::after {
  content: "▾";
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.7;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 280px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-fast);
  z-index: 200;
  list-style: none;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 12px;
  color: var(--color-text);
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.nav__dropdown a:hover { background: var(--color-bg-soft); color: var(--color-orange); }
.nav__dropdown a svg { width: 16px; height: 16px; color: var(--color-orange); flex-shrink: 0; }
.nav__dropdown a.is-divider { border-top: 1px solid var(--color-border); margin-top: 6px; padding-top: 12px; }
.nav__dropdown-sep { height: 1px; background: var(--color-border); margin: 6px 12px; padding: 0; pointer-events: none; }
.nav__dropdown a.is-active { background: var(--color-bg-soft); color: var(--color-orange); font-weight: 800; }
.nav__dropdown a.is-active svg { color: var(--color-orange); }

.products-subtitle {
  text-align: center;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-orange);
  font-weight: 800;
  margin: var(--space-7) 0 var(--space-5);
}
.products-subtitle::before,
.products-subtitle::after {
  content: ""; display: inline-block;
  width: 60px; height: 1px;
  background: var(--color-border);
  vertical-align: middle;
  margin: 0 var(--space-3);
}

/* ===== Footer com bg industrial ===== */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 22, 50, 0.92) 0%, rgba(6, 22, 50, 0.97) 100%),
    url("../img/hero/hero-industrial.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }
.hero__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero__breadcrumb {
  font-size: var(--fs-small);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-4);
}
.hero__breadcrumb a { color: var(--color-orange-light); }
.hero h1 {
  font-size: var(--fs-hero);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--color-orange); }
.hero__lead {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-7);
  max-width: 720px;
  margin-inline: auto;
}
.hero__ctas {
  display: inline-flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Section header centered ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-7);
  max-width: 800px;
  margin-inline: auto;
}
.section-header .eyebrow { padding-left: 0; }
.section-header .eyebrow::before { display: none; }
.section-header .eyebrow::after {
  content: ""; display: block;
  width: 2rem; height: 2px;
  background: var(--color-orange);
  margin: var(--space-2) auto 0;
}
.section-header h2 { font-size: var(--fs-h2); margin-bottom: var(--space-3); }
.section-header p { font-size: var(--fs-lead); color: var(--color-text-soft); }

.intro-ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}

/* ===== Featured cards grid ===== */
.feat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.feat-card {
  border-radius: var(--radius-md);
  padding: var(--space-7);
  min-height: 340px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--t-base);
}
.feat-card:hover { transform: translateY(-4px); }

.feat-card--photo {
  background: linear-gradient(180deg, rgba(10, 43, 91, 0) 0%, rgba(10, 43, 91, 0.45) 40%, rgba(6, 22, 50, 0.95) 90%),
              var(--photo, url("../img/products/cabo-blindado-malha.webp"));
  background-size: cover;
  background-position: center;
  background-color: #061632;
}
.feat-card--photo h3 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.feat-card--photo p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.feat-card--orange {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
}

/* Variants de overlay para cards de foto */
.feat-card--orange-overlay {
  background: linear-gradient(180deg, rgba(231, 125, 47, 0) 0%, rgba(231, 125, 47, 0.55) 40%, rgba(200, 101, 26, 0.95) 90%),
              var(--photo);
  background-size: cover;
  background-position: center;
  background-color: #c8651a;
}
.feat-card--dual-overlay {
  background: linear-gradient(180deg, rgba(10, 43, 91, 0) 0%, rgba(10, 43, 91, 0.45) 35%, rgba(231, 125, 47, 0.9) 90%),
              var(--photo);
  background-size: cover;
  background-position: center;
  background-color: #0A2B5B;
}

.feat-card h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}
.feat-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  margin-bottom: var(--space-4);
}
.feat-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--fs-small);
}
.feat-card__link::before {
  content: ""; width: 28px; height: 28px;
  background: var(--color-white);
  border-radius: 50%;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E77D2F' stroke-width='3'><polyline points='9 18 15 12 9 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.feat-card__link:hover { color: var(--color-orange-light); }
.feat-card--orange .feat-card__link::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A2B5B' stroke-width='3'><polyline points='9 18 15 12 9 6'/></svg>");
}

.feat-grid--small {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.feat-grid--small .feat-card { min-height: 320px; }

/* ===== Dark sliced section (Quality Comes First) ===== */
.dark-slice {
  background:
    linear-gradient(135deg, rgba(10, 43, 91, 0.92) 0%, rgba(10, 43, 91, 0.85) 100%),
    url("../img/hero/hero-industrial.webp");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  margin: var(--space-8) 0;
}
.dark-slice__row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 2;
}
.dark-slice h2 { color: var(--color-white); font-size: var(--fs-h2); margin-bottom: var(--space-4); }
.dark-slice__lead { color: rgba(255, 255, 255, 0.85); font-size: var(--fs-lead); margin-bottom: var(--space-5); }

.circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.circle-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.circle-stat__chart {
  width: 140px; height: 140px;
  position: relative;
  margin-bottom: var(--space-3);
}
.circle-stat__chart svg { transform: rotate(-90deg); }
.circle-stat__chart .bg { stroke: rgba(255, 255, 255, 0.15); }
.circle-stat__chart .progress {
  stroke: var(--color-orange);
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}
.circle-stat__num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
}
.circle-stat__label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 1.0625rem;
}

/* ===== Help split section ===== */
.help-split {
  background: var(--color-bg-soft);
  padding: calc(var(--space-9) + 30px) 0;
  margin: -30px 0;
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  position: relative;
  overflow: hidden;
}
.help-split__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.help-split h2 { font-size: var(--fs-h2); margin-bottom: var(--space-5); }
.help-split__text { color: var(--color-text-soft); font-size: var(--fs-lead); margin-bottom: var(--space-5); }
.help-split__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-6); }

.help-split__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}
.help-split__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.help-split__stat span {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.help-split__visual {
  position: relative;
  padding: var(--space-5);
  background:
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.help-split__visual::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(231, 125, 47, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.help-split__visual-eyebrow {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange-light);
  margin-bottom: var(--space-3);
}
.help-split__visual-title {
  position: relative;
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}
.help-split__visual-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.help-split__visual-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.88);
}
.help-split__visual-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-orange);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.help-split__visual-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.help-split__visual-badge-icon {
  width: 44px; height: 44px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.help-split__visual-badge-icon svg { width: 22px; height: 22px; color: var(--color-white); }
.help-split__visual-badge strong { display: block; font-size: 1.0625rem; color: var(--color-white); }
.help-split__visual-badge span { font-size: var(--fs-tiny); color: rgba(255, 255, 255, 0.7); }

/* ===== How we work ===== */
.process {
  position: relative;
  padding: var(--space-9) 0;
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr 56px 1fr;
  gap: var(--space-3);
  align-items: start;
}
.process__step { text-align: center; }
.process__step-icon {
  width: 96px; height: 96px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-navy);
  color: var(--color-white);
  transition: all var(--t-base);
}
.process__step:nth-child(odd) .process__step-icon {
  background: var(--color-orange);
}
.process__step:hover .process__step-icon {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process__step-icon svg { width: 40px; height: 40px; }
.process__step h4 { color: var(--color-navy); font-size: 1.0625rem; margin-bottom: var(--space-2); }
.process__step p { color: var(--color-text-soft); font-size: var(--fs-small); margin-bottom: var(--space-3); }
.process__step a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-tiny);
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.process__arrow {
  align-self: center;
  color: var(--color-orange);
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.process__arrow svg { width: 28px; height: 28px; }

/* ===== Products section ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-orange);
}
.product-card__media {
  aspect-ratio: 16 / 10;
  background: #ffffff;
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform var(--t-base);
}
.product-card:hover .product-card__media img { transform: scale(1.05); }

.product-card__body { padding: var(--space-5); }
.product-card__cat {
  font-size: var(--fs-tiny);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-2);
}
.product-card__title { font-size: 1.125rem; color: var(--color-navy); margin-bottom: var(--space-3); }
.product-card__link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--fs-small); font-weight: 700; color: var(--color-navy);
}
.product-card__link:hover { color: var(--color-orange); }
.product-card__link::after { content: "→"; transition: transform var(--t-fast); }
.product-card__link:hover::after { transform: translateX(4px); }

/* ===== Industries ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}
.industry-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-3);
  text-align: center;
  transition: all var(--t-base);
}
.industry-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.industry-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-3);
  background: var(--color-navy);
  color: var(--color-orange-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.industry-card__icon svg { width: 28px; height: 28px; }
.industry-card h4 { font-size: 0.875rem; color: var(--color-navy); line-height: 1.3; }

/* ===== Clientes (carrossel infinito) ===== */
.clients-carousel {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-6);
  padding: var(--space-5) 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: clients-scroll 32s linear infinite;
}
.clients-carousel:hover .clients-track { animation-play-state: paused; }

.client-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 96px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: all var(--t-base);
}
.client-logo:hover img { filter: none; opacity: 1; transform: scale(1.05); }

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Map embed dentro do form-intro ===== */
.form-intro__map {
  position: relative;
  margin-top: var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex: 1 1 auto;
  min-height: 240px;
  z-index: 1;
}
.form-intro__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ===== Popup de contato (Conducab) ===== */
.contact-trigger {
  position: fixed;
  right: 24px; bottom: 100px;
  z-index: 90;
  background: var(--color-navy);
  color: var(--color-white);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(10, 43, 91, 0.5);
  border: 3px solid var(--color-orange);
  transition: transform var(--t-base);
  cursor: pointer;
}
.contact-trigger:hover { transform: scale(1.06); }
.contact-trigger svg { width: 28px; height: 28px; }

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  background: rgba(10, 43, 91, 0.45);
  backdrop-filter: blur(6px);
}
.contact-popup[hidden] { display: none !important; }
.contact-popup.is-open { display: flex !important; animation: pop-fade 0.25s ease-out; }
@keyframes pop-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.contact-popup__card {
  width: 100%;
  max-width: 440px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: pop-slide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pop-slide {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.contact-popup__header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
}
.contact-popup__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.contact-popup__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-popup__avatar::after {
  content: ""; position: absolute;
  width: 14px; height: 14px;
  bottom: 0; right: 0;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  z-index: 2;
}
.contact-popup__title { font-size: 1.125rem; font-weight: 800; color: var(--color-white); margin: 0; line-height: 1.3; }
.contact-popup__sub {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.contact-popup__sub::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-popup__close {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--t-fast);
}
.contact-popup__close:hover { background: rgba(255, 255, 255, 0.3); }
.contact-popup__close svg { width: 18px; height: 18px; }

.contact-popup__body {
  padding: var(--space-4) var(--space-5);
  overflow-y: auto;
  flex: 1;
}
.contact-popup__greeting {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--color-text-soft);
  margin-bottom: var(--space-3);
}

.channel-list { display: flex; flex-direction: column; gap: 8px; }
.channel {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 14px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  text-align: left;
  width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-fast);
  font-family: inherit;
  color: inherit;
}
.channel:hover { border-color: var(--color-orange); background: var(--color-white); transform: translateX(4px); }
.channel__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}
.channel__icon svg { width: 18px; height: 18px; }
.channel--wa .channel__icon { background: #25D366; }
.channel--phone .channel__icon { background: var(--color-navy); }
.channel--phone-direct .channel__icon { background: var(--color-navy-light); }
.channel--email .channel__icon { background: var(--color-orange); }
.channel--form .channel__icon { background: var(--color-orange-dark); }

.channel__body { flex: 1; min-width: 0; }
.channel__title { font-weight: 800; color: var(--color-navy); font-size: 0.9375rem; margin: 0; line-height: 1.15; }
.channel__sub { font-size: 0.75rem; color: var(--color-text-muted); margin: 1px 0 0; line-height: 1.2; }
.channel__arrow {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.channel:hover .channel__arrow { color: var(--color-orange); transform: translateX(4px); }
.channel__arrow svg { width: 18px; height: 18px; }

.contact-popup__footer {
  background: var(--color-bg-soft);
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-top: 1px solid var(--color-border);
}
.contact-popup__footer svg { width: 14px; height: 14px; color: var(--color-orange); flex-shrink: 0; }

/* Popup interno: form */
.contact-popup__form-wrap {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
}
.contact-popup__form-wrap.is-active { display: flex; }

/* Popup interno: info (Ligar agora) */
.contact-popup__info-wrap {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
}
.contact-popup__info-wrap.is-active { display: flex; }

.call-info {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.call-info::before {
  content: ""; position: absolute;
  top: -40%; right: -20%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(231, 125, 47, 0.28) 0%, transparent 70%);
  pointer-events: none;
}
.call-info__label {
  display: inline-block;
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange-light);
  margin-bottom: var(--space-3);
  font-weight: 800;
  position: relative;
}
.call-info__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  position: relative;
}
.call-info__number svg { width: 28px; height: 28px; color: var(--color-orange-light); }
.call-info__hours {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  position: relative;
}

.call-tips {
  background: var(--color-bg-soft);
  padding: var(--space-4);
  border-radius: var(--radius-md);
}
.call-tips__title {
  font-size: var(--fs-tiny);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 var(--space-3);
}
.call-tips__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.call-tips__list li {
  font-size: var(--fs-small);
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.call-tips__list li::before {
  content: ""; position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  background: var(--color-orange);
  border-radius: 50%;
}

.call-info__cta {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-3);
}
.contact-popup__form-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  color: var(--color-navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: var(--space-3);
  align-self: flex-start;
  font-weight: 700;
}
.contact-popup__form-back:hover { color: var(--color-orange); }
.contact-popup__form-back svg { width: 16px; height: 16px; }
.contact-popup__form-title {
  font-weight: 800;
  color: var(--color-navy);
  font-size: 1.0625rem;
  margin: 0 0 var(--space-3);
}
.contact-popup__form-wrap .field { margin-bottom: 0; }

/* ===== Form feedback states ===== */
/* Estado de sucesso — substitui o conteúdo do form com card central */
.form-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  animation: form-success-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-success-state__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.35);
  animation: form-success-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
.form-success-state__icon svg { width: 38px; height: 38px; }
.form-success-state__title {
  margin: 0 0 var(--space-2);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
}
.form-success-state__msg {
  margin: 0 0 var(--space-4);
  color: var(--color-text-soft);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 360px;
}
.form-success-state__meta {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}
.form-success-state__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}
@keyframes form-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes form-success-bounce {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Banner de erro inline no topo do form */
.form-error-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: 12px 14px;
  background: #fef3f2;
  border: 1px solid #fda4a4;
  border-left: 4px solid #d92d20;
  border-radius: 8px;
  color: #912018;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: var(--space-3);
  animation: form-error-shake 0.4s ease;
}
.form-error-banner__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #d92d20;
}
.form-error-banner__content { flex: 1; min-width: 0; }
.form-error-banner__title { font-weight: 700; margin-bottom: 2px; }
.form-error-banner__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #912018;
  opacity: 0.6;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.form-error-banner__close:hover { opacity: 1; background: rgba(217, 45, 32, 0.1); }
.form-error-banner__close svg { width: 14px; height: 14px; }
@keyframes form-error-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

/* Toast flutuante (offline / fallback WhatsApp) */
.form-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  max-width: 90vw;
}
.form-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.form-toast--success { background: #27ae60; }
.form-toast--error   { background: #d92d20; }
.form-toast--info    { background: var(--color-navy); }
.form-toast svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Botão "Enviar de novo" no estado de erro */
.form-error-banner__retry {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  color: #912018;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  text-decoration: underline;
}
.form-error-banner__retry:hover { color: #7a1810; }

/* ===== Form ===== */
.form-section {
  background: var(--color-bg-soft);
  padding: calc(var(--space-9) + 30px) 0;
  margin-top: -30px;
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% 100%, 0 100%);
}
/* Quando form-section vem direto apos page-hero, evita conflito de Vs opostos */
.page-hero + .form-section {
  clip-path: none;
  margin-top: 0;
  padding-top: var(--space-9);
}
/* Quando footer vem direto apos form-section, evitar gap branco */
.form-section + .footer {
  margin-top: -30px;
  padding-top: calc(var(--space-9) + 30px);
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% 100%, 0 100%);
  position: relative;
  z-index: 2;
}
/* Idem para outras secoes que possam vir apos page-hero */
.page-hero + .section--soft,
.page-hero + .help-split {
  clip-path: none;
  margin-top: 0;
  padding-top: var(--space-9);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.form-intro {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: var(--space-7);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.form-intro::before {
  content: ""; position: absolute;
  bottom: -40%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(231, 125, 47, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.form-intro h2 { color: var(--color-white); margin-bottom: var(--space-4); font-size: 1.75rem; position: relative; }
.form-intro p { color: rgba(255, 255, 255, 0.88); margin-bottom: var(--space-6); position: relative; }

.contact__channels { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); position: relative; }
.contact__channels li { display: flex; align-items: center; gap: var(--space-3); }
.contact__channels svg { width: 18px; height: 18px; color: var(--color-orange-light); flex-shrink: 0; }
.contact__channels a { color: var(--color-white); font-size: var(--fs-small); }
.contact__channels a:hover { color: var(--color-orange-light); }

.form-body { padding: var(--space-7); }
.form-body h3 { color: var(--color-navy); margin-bottom: var(--space-5); font-size: 1.375rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-row .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.field label { font-size: var(--fs-small); font-weight: 600; color: var(--color-text); }
.field input, .field select, .field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(231, 125, 47, 0.15);
}
.field textarea { resize: vertical; min-height: 96px; }

/* Estado inválido (validação custom) */
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #d92d20;
  background: #fffaf9;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.08);
}
.field input.is-invalid:focus,
.field select.is-invalid:focus,
.field textarea.is-invalid:focus {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.18);
}
.field .field-error {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: -4px;
  color: #b42318;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  animation: field-error-in 0.2s ease;
}
.field .field-error::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'><circle cx='12' cy='12' r='10'/><line x1='12' y1='8' x2='12' y2='12'/><line x1='12' y1='16' x2='12.01' y2='16'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'><circle cx='12' cy='12' r='10'/><line x1='12' y1='8' x2='12' y2='12'/><line x1='12' y1='16' x2='12.01' y2='16'/></svg>") center / contain no-repeat;
}
@keyframes field-error-in {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Popup: ajuste de spacing pro field-error caber bem */
.contact-popup__form-wrap .field .field-error { margin-top: -8px; }

.form-submit { margin-top: var(--space-3); }
.form-note { font-size: var(--fs-tiny); color: var(--color-text-muted); margin-top: var(--space-3); }

/* ===== Footer ===== */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-9) 0 var(--space-5);
  position: relative;
}
/* Quando footer vem depois de cta-strip (navy) ou outra section dark, sem clip; senao, com V top */
.section--soft + .footer,
.section--clip + .footer,
.help-split + .footer,
.form-section + .footer,
.section + .footer:not(.cta-strip + .footer) {
  padding-top: calc(var(--space-9) + 30px);
  margin-top: -30px;
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% 100%, 0 100%);
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-7);
}
.footer__contact-pill {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
}
.footer__contact-icon {
  width: 56px; height: 56px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}
.footer__contact-icon svg { width: 24px; height: 24px; }
.footer__contact-label { font-size: var(--fs-tiny); text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.5); margin-bottom: 4px; }
.footer__contact-value { color: var(--color-white); font-weight: 700; font-size: 1.0625rem; }
.footer__contact-value a { color: var(--color-white); }
.footer__contact-value a:hover { color: var(--color-orange-light); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
.footer__brand { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.footer__brand img { height: 56px; width: auto; }
.footer__about { font-size: var(--fs-small); line-height: 1.6; }
.footer__socials { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer__socials a {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
}
.footer__socials a:hover { background: var(--color-orange); }
.footer__socials svg { width: 14px; height: 14px; }

.footer__col h4 {
  color: var(--color-white);
  font-size: var(--fs-small);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer__list { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__list a { color: rgba(255, 255, 255, 0.75); font-size: var(--fs-small); }
.footer__list a:hover { color: var(--color-orange-light); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--fs-tiny);
  color: rgba(255, 255, 255, 0.55);
}
.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.footer__bottom-right > a:not(.footer__uplevel) { color: rgba(255, 255, 255, 0.6); }
.footer__bottom-right > a:not(.footer__uplevel):hover { color: var(--color-orange-light); }

.footer__uplevel {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t-fast);
}
.footer__uplevel:hover { color: var(--color-white); }
.footer__uplevel span { font-size: var(--fs-tiny); letter-spacing: 0.06em; }
.footer__uplevel img {
  height: 28px;
  width: auto;
  transition: transform var(--t-fast);
}
.footer__uplevel:hover img { transform: scale(1.06); }

/* =========================================================================
   Mapa do Brasil interativo (Representantes — Cobertura nacional)
   ========================================================================= */
.brasil-map {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-7);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.brasil-map__svg-wrap {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
}
.brasil-map__svg {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
}
.brasil-region {
  fill: #d9dde5;
  stroke: #ffffff;
  stroke-width: 0.5;
  transition: fill var(--t-fast);
  cursor: pointer;
}
.brasil-region-group { transition: filter var(--t-base); cursor: pointer; }
.brasil-region-group[data-region="norte"]        .brasil-region { fill: #dde2eb; }
.brasil-region-group[data-region="nordeste"]     .brasil-region { fill: #ced4e0; }
.brasil-region-group[data-region="centro-oeste"] .brasil-region { fill: #d6dbe5; }
.brasil-region-group[data-region="sudeste"]      .brasil-region { fill: #b8c0cf; }
.brasil-region-group[data-region="sul"]          .brasil-region { fill: #c2c9d6; }
.brasil-region-group:hover .brasil-region,
.brasil-region-group.is-active .brasil-region {
  fill: url(#regiaoAtiva);
}
.brasil-region-group:hover { filter: drop-shadow(0 4px 14px rgba(231, 125, 47, 0.35)); }

.brasil-map__pin-dot { fill: var(--color-orange); stroke: var(--color-white); stroke-width: 2; }
.brasil-map__pulse {
  fill: none;
  stroke: var(--color-orange);
  stroke-width: 2;
  opacity: 0.7;
  animation: br-pulse 2.4s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.brasil-map__pulse--2 { animation-delay: 1.2s; }
@keyframes br-pulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  80%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
.brasil-map__pin-label {
  font: 800 0.625rem / 1 var(--font-base);
  fill: var(--color-navy);
  text-anchor: start;
  letter-spacing: 0.06em;
  transform: translate(6px, 4px);
}

.brasil-map__legend {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.brasil-region-card {
  text-align: left;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  transition: all var(--t-fast);
  width: 100%;
  font-family: inherit;
}
.brasil-region-card:hover,
.brasil-region-card.is-active {
  border-color: var(--color-orange);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(231, 125, 47, 0.18);
}
.brasil-region-card__head {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: 4px;
}
.brasil-region-card__head h4 {
  color: var(--color-navy);
  font-size: 1rem;
  margin: 0;
  flex: 1;
}
.brasil-region-card__dot {
  width: 12px; height: 12px;
  background: #d9dde5;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.brasil-region-card:hover .brasil-region-card__dot,
.brasil-region-card.is-active .brasil-region-card__dot { background: var(--color-orange); }
.brasil-region-card__dot--pulse {
  background: var(--color-orange);
  box-shadow: 0 0 0 0 rgba(231, 125, 47, 0.6);
  animation: pin-pulse 2s infinite;
}
@keyframes pin-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(231, 125, 47, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(231, 125, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 125, 47, 0); }
}
.brasil-region-card__tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(231, 125, 47, 0.12);
  color: var(--color-orange-dark);
}
.brasil-region-card__tag--primary { background: var(--color-orange); color: var(--color-white); }
.brasil-region-card p {
  font-size: 0.8125rem;
  color: var(--color-text-soft);
  margin: 0;
  line-height: 1.5;
}
.brasil-region-card--rmc {
  background: linear-gradient(135deg, #fff7ee 0%, #ffece0 100%);
  border-color: var(--color-orange);
}

/* =========================================================================
   Cards de setores (Clientes — Setores Atendidos)
   ========================================================================= */
.setores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
.setor-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 220px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  isolation: isolate;
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: default;
}
.setor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.setor-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.setor-card:hover .setor-card__bg { transform: scale(1.08); }
.setor-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 43, 91, 0) 0%, rgba(10, 43, 91, 0.1) 30%, rgba(6, 22, 50, 0.85) 90%, rgba(6, 22, 50, 0.95) 100%);
  transition: background var(--t-base);
}
.setor-card:hover .setor-card__overlay {
  background: linear-gradient(180deg, rgba(231, 125, 47, 0.18) 0%, rgba(231, 125, 47, 0.25) 30%, rgba(6, 22, 50, 0.88) 90%, rgba(6, 22, 50, 0.96) 100%);
}
.setor-card__icon {
  width: 48px; height: 48px;
  background: var(--color-orange);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  box-shadow: 0 8px 18px rgba(231, 125, 47, 0.35);
  transition: transform var(--t-base);
}
.setor-card:hover .setor-card__icon { transform: scale(1.08) rotate(-4deg); }
.setor-card__icon svg { width: 24px; height: 24px; }
.setor-card__title {
  color: var(--color-white);
  font-size: 1.0625rem;
  font-weight: 800;
  margin: 0 0 4px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.setor-card__sub {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Background images por setor — overlay já cobre com tom navy/orange */
.setor-card--civil      .setor-card__bg { background-image: url("../img/setores/civil.webp"); }
.setor-card--eletrica   .setor-card__bg { background-image: url("../img/setores/eletrica.webp"); }
.setor-card--mecanica   .setor-card__bg { background-image: url("../img/setores/mecanica.webp"); }
.setor-card--textil     .setor-card__bg { background-image: url("../img/setores/textil.webp"); }
.setor-card--auto       .setor-card__bg { background-image: url("../img/setores/automotiva.webp"); }
.setor-card--fogo       .setor-card__bg { background-image: url("../img/setores/incendio.webp"); }
.setor-card--alimenticia .setor-card__bg { background-image: url("../img/setores/alimenticia.webp"); }
.setor-card--quimica    .setor-card__bg { background-image: url("../img/setores/quimica.webp"); }
.setor-card--agro       .setor-card__bg { background-image: url("../img/setores/agro.webp"); }
.setor-card--publico    .setor-card__bg { background-image: url("../img/setores/publico.webp"); }

/* Responsive setores */
@media (max-width: 1024px) {
  .setores-grid { grid-template-columns: repeat(3, 1fr); }
  .brasil-map { grid-template-columns: 1fr; gap: var(--space-5); }
  .brasil-map__svg { max-height: 360px; }
}
@media (max-width: 640px) {
  .setores-grid { grid-template-columns: repeat(2, 1fr); }
  .setor-card { min-height: 180px; padding: var(--space-4); }
  .setor-card__icon { width: 40px; height: 40px; margin-bottom: var(--space-2); }
  .setor-card__icon svg { width: 20px; height: 20px; }
  .setor-card__title { font-size: 0.9375rem; }
  .setor-card__sub { font-size: 0.6875rem; }
}

/* ===== WhatsApp flutuante com anel pulse ===== */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  background: #25D366;
  color: var(--color-white);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-base);
}
.wa-float:hover { transform: scale(1.08); color: var(--color-white); }
.wa-float svg { width: 32px; height: 32px; position: relative; z-index: 2; }

.wa-float::before,
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.wa-float::after { animation-delay: 1.1s; }
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .feat-grid, .feat-grid--small, .dark-slice__row, .help-split__row, .form-grid { grid-template-columns: 1fr; }
  .help-split__divider { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-lines { grid-template-columns: repeat(2, 1fr); }
  .detailed-products { grid-template-columns: repeat(2, 1fr); }
  .why-us .why-us__row { grid-template-columns: 1fr; }
  .why-us__media::after { display: none; }
  .trust-bar__row { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .info-bar__row { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .industries-grid, .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .process__steps { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .process__arrow { display: none; }
  .footer__top, .footer__grid { grid-template-columns: 1fr 1fr; }
  .circles { grid-template-columns: 1fr; }
}

/* =========================================================================
   Mobile (até 768px) — auditoria UX 22/05/2026
   Compacta topbar, transforma header em sticky navy, reduz paddings,
   empilha cards, ajusta tipografia, drawer fullscreen, WA float menor,
   popup com altura segura. Objetivo: corte forte na altura total da home
   (de ~17900px → ~9000px) e zero sobreposição em smartphones reais.
   ========================================================================= */
@media (max-width: 768px) {
  /* === Topbar enxuta, 1 linha === */
  .topbar { padding: 5px 0; font-size: 0.75rem; }
  .topbar__row { flex-wrap: nowrap; justify-content: space-between; gap: var(--space-3); }
  .topbar__cta { flex: 1 1 auto; min-width: 0; font-size: 0.75rem; line-height: 1.2; gap: 6px; }
  .topbar__cta svg { width: 13px; height: 13px; flex-shrink: 0; }
  .topbar__contacts { display: none; }
  .topbar__social { gap: 6px; flex-shrink: 0; }
  .topbar__social-link { width: 24px; height: 24px; }
  .topbar__social-link svg { width: 11px; height: 11px; }

  /* === Header sticky navy (não mais absolute sobre o hero) === */
  .header {
    position: sticky;
    top: 0;
    background: var(--color-navy);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  }
  .header.is-scrolled { position: sticky; top: 0; }
  .header__row { padding: var(--space-3) 0; gap: var(--space-3); }
  .brand img { height: 34px; }
  .hamburger {
    display: inline-flex;
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 260;
  }

  /* === Hero / Page-hero: zerar margin-top negativo (header não é mais absolute) === */
  .hero {
    margin-top: 0;
    padding: var(--space-8) 0 calc(var(--space-7) + 30px);
    min-height: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
  }
  .page-hero {
    margin-top: 0;
    padding: var(--space-8) 0 calc(var(--space-7) + 30px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
  }
  .hero h1, .page-hero h1 {
    font-size: clamp(1.875rem, 7.5vw, 2.375rem);
    line-height: 1.15;
    margin-bottom: var(--space-3);
  }
  .hero__lead, .page-hero__lead { font-size: 0.9375rem; line-height: 1.55; margin-bottom: var(--space-5); }
  .hero__breadcrumb, .page-hero__breadcrumb { font-size: 0.6875rem; margin-bottom: var(--space-3); }
  .hero__ctas, .page-hero__ctas, .intro-ctas {
    flex-direction: column; align-items: stretch; gap: var(--space-3); width: 100%;
  }
  .hero__ctas .btn, .page-hero__ctas .btn, .intro-ctas .btn { width: 100%; justify-content: center; }
  .btn--lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
  .ghost { display: none; }
  .hero__seals { gap: var(--space-2); margin-top: var(--space-4); }
  .seal { font-size: 0.7rem; padding: 6px 12px 6px 6px; }
  .seal__icon { width: 30px; height: 30px; }
  .seal__icon svg { width: 16px; height: 16px; }

  /* === Nav drawer fullscreen === */
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--color-navy);
    padding: 88px var(--space-5) var(--space-7);
    overflow-y: auto;
    z-index: 240;
    animation: nav-slide 0.22s ease-out;
  }
  @keyframes nav-slide { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }
  .nav.is-open .nav__list {
    display: flex; flex-direction: column; gap: 0;
    list-style: none; padding: 0; margin: 0;
    width: 100%;
  }
  .nav.is-open .nav__item { width: 100%; }
  .nav.is-open .nav__link {
    display: flex; align-items: center;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.0625rem; color: var(--color-white);
    white-space: normal;
  }
  .nav.is-open .nav__link:hover { color: var(--color-orange-light); }
  .nav.is-open .nav__cta {
    display: flex; width: 100%; justify-content: center;
    margin-top: var(--space-5);
    padding: var(--space-4) var(--space-5);
    font-size: 1rem;
  }
  /* Dropdown produtos vira accordion no drawer */
  .nav.is-open .nav__has-dropdown { position: relative; }
  .nav.is-open .nav__has-dropdown > .nav__link::after {
    content: "+"; margin-left: auto; font-size: 22px; line-height: 1;
    opacity: 0.7; transition: transform var(--t-base);
  }
  .nav.is-open .nav__has-dropdown.is-open-sub > .nav__link::after { transform: rotate(45deg); }
  .nav.is-open .nav__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radius-sm);
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    margin: 0;
  }
  .nav.is-open .nav__has-dropdown.is-open-sub .nav__dropdown {
    max-height: 720px; padding: var(--space-2);
  }
  .nav.is-open .nav__dropdown a {
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 12px; font-size: 0.875rem;
    border-radius: var(--radius-sm);
  }
  .nav.is-open .nav__dropdown a:hover { background: rgba(255, 255, 255, 0.08); color: var(--color-white); }
  .nav.is-open .nav__dropdown a svg { color: var(--color-orange-light); }
  .nav.is-open .nav__dropdown a.is-divider {
    border-top-color: rgba(255, 255, 255, 0.12); color: var(--color-white); margin-top: 4px;
  }
  body.nav-locked { overflow: hidden; }

  /* === Sections — paddings reduzidos === */
  .section { padding: var(--space-7) 0; }
  .why-us { padding: var(--space-7) 0; }
  .why-us h2 { font-size: 1.5rem; }
  .why-us__eyebrow { font-size: 0.75rem; }
  .why-us__text { font-size: 0.9375rem; }
  .dark-slice {
    padding: var(--space-7) 0;
    clip-path: polygon(0 30px, 50% 0, 100% 30px, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
  }
  .section-header { margin-bottom: var(--space-5); }
  .section-header h2 { font-size: 1.5rem; line-height: 1.25; }
  .section-header p { font-size: 0.9375rem; }

  /* === Info-bar — 1 coluna, ícone alinhado, texto sem corte === */
  .info-bar { padding: var(--space-4) 0; }
  .info-bar__row { grid-template-columns: 1fr; gap: var(--space-2); }
  .info-bar__item { padding: var(--space-3); gap: var(--space-3); align-items: center; }
  .info-bar__icon { width: 40px; height: 40px; }
  .info-bar__icon svg { width: 20px; height: 20px; }
  .info-bar__text { font-size: 0.9375rem; line-height: 1.35; }

  /* === Products grid / lines: 1 col === */
  .products-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .product-lines { grid-template-columns: 1fr; gap: var(--space-3); margin-bottom: var(--space-5); }
  .product-line { min-height: 180px; padding: var(--space-4); }
  .product-line__icon { width: 40px; height: 40px; margin-bottom: var(--space-3); }
  .product-line__icon svg { width: 20px; height: 20px; }
  .product-line__name { font-size: 1.0625rem; margin-bottom: var(--space-2); }
  .product-line__count { font-size: 0.625rem; }
  .product-line__cta { padding-top: var(--space-2); font-size: 0.6875rem; }

  /* === Feat-grid (cards dark-slice e why-us) === */
  .feat-grid, .feat-grid--small { gap: var(--space-3); margin-top: var(--space-5); }
  .feat-card { min-height: 240px; padding: var(--space-5); }
  .feat-grid--small .feat-card { min-height: 220px; }

  /* === Detailed products (1 col, aspecto melhor) === */
  .detailed-products { grid-template-columns: 1fr; gap: var(--space-4); }
  .detailed-product__media { aspect-ratio: 16 / 9; }
  .detailed-product__body { padding: var(--space-4); }
  .detailed-product__title { font-size: 1.0625rem; }

  /* === Process: 1 col compacto === */
  .process { padding: var(--space-7) 0; }
  .process__steps { grid-template-columns: 1fr; gap: var(--space-5); }
  .process__step-icon { width: 64px; height: 64px; }
  .process__step-icon svg { width: 28px; height: 28px; }

  /* === Industries / clients === */
  .industries-snippet, .clients-snippet { padding: var(--space-7) 0; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }

  /* === Trust-bar: 2 col, números menores === */
  .trust-bar { padding: var(--space-6) 0; }
  .trust-bar__row { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .trust-bar__num { font-size: 1.75rem; }
  .trust-bar__label { font-size: 0.6875rem; letter-spacing: 0.08em; }

  /* === Form section === */
  .form-section { padding: var(--space-7) 0; }
  .form-grid { grid-template-columns: 1fr; box-shadow: var(--shadow-sm); }
  .form-intro { padding: var(--space-5); }
  .form-intro h2 { font-size: 1.375rem; }
  .form-intro p { font-size: 0.9375rem; margin-bottom: var(--space-4); }
  .form-body { padding: var(--space-5); }
  .form-body h3 { font-size: 1.125rem; margin-bottom: var(--space-4); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .full { grid-column: 1; }
  .field { margin-bottom: var(--space-3); }
  .form-section + .footer { margin-top: -20px; padding-top: calc(var(--space-7) + 20px); clip-path: polygon(0 40px, 50% 0, 100% 40px, 100% 100%, 0 100%); }

  /* === CTA strip === */
  .cta-strip { padding: var(--space-7) 0; text-align: center; }
  .cta-strip__row { flex-direction: column; align-items: stretch; }
  .cta-strip__row > div { text-align: center; }
  .cta-strip__row .btn { width: 100%; justify-content: center; }

  /* === Footer === */
  .footer { padding: var(--space-7) 0 var(--space-5); }
  .section--soft + .footer,
  .section--clip + .footer,
  .help-split + .footer,
  .form-section + .footer,
  .section + .footer:not(.cta-strip + .footer) {
    padding-top: calc(var(--space-7) + 20px); margin-top: -20px;
    clip-path: polygon(0 40px, 50% 0, 100% 40px, 100% 100%, 0 100%);
  }
  .footer__top, .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-5);
  }
  .footer__contact-pill { padding: var(--space-4); }
  .footer__contact-icon { width: 44px; height: 44px; }
  .footer__contact-icon svg { width: 20px; height: 20px; }
  .footer__contact-value { font-size: 1rem; }
  .footer__brand img { height: 44px; }
  .footer__col h4 { margin-bottom: var(--space-3); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: var(--space-3); text-align: left; }
  .footer__bottom-right { gap: var(--space-3); align-items: center; }

  /* === WhatsApp flutuante (menor + não cobre conteúdo importante) === */
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .wa-float svg { width: 24px; height: 24px; }

  /* === Popup contato === */
  .contact-popup { padding: 0; }
  .contact-popup__card {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
  }
  .contact-popup__header { padding: var(--space-4); gap: var(--space-3); }
  .contact-popup__avatar { width: 48px; height: 48px; }
  .contact-popup__avatar img { width: 100%; height: 100%; object-fit: cover; }
  .contact-popup__title { font-size: 1rem; }
  .contact-popup__sub { font-size: 0.6875rem; }
  .contact-popup__close { width: 36px; height: 36px; }
  .contact-popup__body { padding: var(--space-4); }
  .contact-popup__greeting { font-size: 0.9375rem; margin-bottom: var(--space-3); }
  .contact-popup__form-wrap, .contact-popup__info-wrap { gap: var(--space-3); }

  /* Container padding ligeiramente menor em mobile */
  :root { --container-padding: 1rem; }
}

/* =========================================================================
   Smartphone compacto (até 480px)
   ========================================================================= */
@media (max-width: 480px) {
  .topbar { font-size: 0.6875rem; }
  .topbar__cta { font-size: 0.6875rem; }
  .topbar__cta svg { width: 12px; height: 12px; }
  .topbar__social-link { width: 22px; height: 22px; }
  .topbar__social-link svg { width: 10px; height: 10px; }
  .brand img { height: 30px; }
  .hamburger { width: 38px; height: 38px; }
  .hamburger svg { width: 20px; height: 20px; }

  .hero h1, .page-hero h1 { font-size: 1.75rem; }
  .hero__lead, .page-hero__lead { font-size: 0.875rem; }
  .section-header h2, .why-us h2 { font-size: 1.375rem; }

  .seal { font-size: 0.65rem; padding: 5px 10px 5px 5px; }
  .seal__icon { width: 26px; height: 26px; }
  .seal__icon svg { width: 14px; height: 14px; }
  .seal__title { font-size: 0.8125rem; }
  .seal__sub { font-size: 0.625rem; }

  .product-line { min-height: 160px; padding: var(--space-3); }
  .product-line__name { font-size: 1rem; }

  .feat-card { padding: var(--space-4); min-height: 220px; }
  .feat-card h3 { font-size: 1.125rem; }

  .trust-bar__num { font-size: 1.5rem; }
  .industries-grid, .clients-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2); }

  .btn--lg { padding: 0.85rem 1.25rem; font-size: 0.9375rem; }
}

/* =========================================================================
   Smartphone pequeno (até 380px) — iPhone SE, dispositivos antigos
   ========================================================================= */
@media (max-width: 380px) {
  .topbar__cta { font-size: 0.625rem; gap: 4px; }
  .topbar__cta svg { display: none; }
  .topbar__social { gap: 4px; }
  .container { padding-inline: 0.875rem; }
  .hero h1, .page-hero h1 { font-size: 1.625rem; }
  .section-header h2, .why-us h2 { font-size: 1.25rem; }
  .form-body, .form-intro { padding: var(--space-4); }
}
