/* ============================================================
   DUMONT MOTORES — Home
   Estética: "Blueprint de Engenharia" — branco, grid técnico,
   anotações monoespaçadas, azul elétrico como acento.
   ============================================================ */

:root {
  /* Cores da marca */
  --navy:   #003362;
  --blue:   #1691E8;
  --white:  #ffffff;
  --black:  #030303;
  --red:    #E2231A;       /* acento da bobina do logo */

  /* Derivadas */
  --navy-900: #001f3d;
  --navy-700: #003362;
  --blue-100: #e6f3fd;
  --ink:      #0c1822;
  --muted:    #5b6b78;
  --line:     #d7e0e8;
  --line-strong: #bcc9d4;
  --bg:       #ffffff;
  --bg-alt:   #f4f7fa;

  /* Tipografia */
  --font-display: "Host Grotesk", system-ui, sans-serif;
  --font-tech:    "Orbitron", system-ui, sans-serif;
  --font-body:    "Host Grotesk", system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --section-pad: clamp(80px, 9vw, 130px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 2px 10px rgba(0, 51, 98, 0.06);
  --shadow-md: 0 14px 40px rgba(0, 51, 98, 0.10);
  --shadow-lg: 0 30px 70px rgba(0, 51, 98, 0.16);
}

/* ---------------------- RESET ---------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Barra de rolagem customizada (fundo branco, barrinha azul-marinho e mais fina) */
html { scrollbar-width: thin; scrollbar-color: var(--navy) #ffffff; }
::-webkit-scrollbar { width: 7px; height: 7px; background: #ffffff; }
::-webkit-scrollbar-track { background: #ffffff; box-shadow: none; border: none; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 100px; border: none; box-shadow: none; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-900); }
::-webkit-scrollbar-corner { background: #ffffff; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------------------- HELPERS ---------------------- */
.arrow { display: inline-block; transition: transform .35s var(--ease); }
.eyebrow, .section-tag, .frame-tag, .measure, .stat__num,
.prod-card__idx, .why-card__no, .seg-card__num, .serv-card__tag, .form__tag {
  font-family: var(--font-tech);
}

/* ---------------------- BOTÕES ---------------------- */
.btn {
  --b: var(--navy);
  display: inline-flex; align-items: center; gap: .6em;
  padding: 13px 24px;
  font-weight: 600; font-size: .94rem;
  letter-spacing: .01em;
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn:hover .arrow { transform: translateX(5px); }

.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 8px 22px rgba(0,51,98,.22); }
.btn--primary:hover { background: var(--blue); box-shadow: 0 12px 30px rgba(22,145,232,.34); transform: translateY(-2px); }

.btn--accent { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(22,145,232,.28); }
.btn--accent:hover { background: var(--navy); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); padding: 12px 22px; font-size: .9rem; }
.btn--ghost-light:hover { border-color: var(--blue); background: var(--blue); }

.btn--whatsapp { background: #25D366; color: #06301a; font-weight: 700; }
.btn--whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.4); }

/* ====================================================
   TOP BAR
   ==================================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .76rem;
  letter-spacing: .03em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar__items { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; transition: color .25s; }
.topbar__item:hover { color: var(--blue); }
.topbar__item .ti { color: var(--blue); font-size: .85rem; }
.topbar__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  color: #fff; letter-spacing: .08em; white-space: nowrap;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.7} 70%{transform:scale(3);opacity:0} 100%{opacity:0} }

/* ====================================================
   HEADER
   ==================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 24px; min-height: 84px; transition: min-height .3s var(--ease); }
.header.is-scrolled .header__inner { min-height: 68px; }
.logo__img { height: 42px; width: auto; transition: height .3s var(--ease); }
.header.is-scrolled .logo__img { height: 36px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 13px; font-size: .92rem; font-weight: 500; color: var(--ink);
  border-radius: var(--radius); transition: color .25s; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--navy); font-weight: 600; }
.caret { font-size: .6rem; transition: transform .3s; }
.nav__item--has-menu:hover .caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .28s var(--ease); z-index: 20;
}
.nav__item--has-menu:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
  display: block; padding: 10px 14px; font-size: .9rem; border-radius: var(--radius);
  color: var(--muted); transition: all .2s; position: relative;
}
.nav__dropdown a::before { content: "›"; color: var(--blue); margin-right: 8px; opacity: 0; transition: opacity .2s; }
.nav__dropdown a:hover { background: var(--bg-alt); color: var(--navy); padding-left: 18px; }
.nav__dropdown a:hover::before { opacity: 1; }

.header__cta { margin-left: 8px; }
.cart-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform .35s var(--ease); }
.btn:hover .cart-icon { transform: translateY(-1px) scale(1.08); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.burger span { width: 26px; height: 2px; background: var(--navy); transition: .3s; transform-origin: center; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; width: min(88vw, 360px); height: 100vh;
  background: #fff; z-index: 99; padding: 100px 28px 28px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__link { padding: 14px 12px; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu__cta { margin-top: 20px; justify-content: center; }

/* ====================================================
   GRID DE BLUEPRINT (fundo técnico reutilizável)
   ==================================================== */
.why__grid-bg, .contact__grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 70% 20%, #000 35%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 70% 20%, #000 35%, transparent 75%);
  opacity: .6;
}

/* ====================================================
   SEÇÃO 1 — HERO
   ==================================================== */
.hero {
  position: relative; overflow: hidden; background: var(--bg);
  min-height: calc(100vh - 122px);
  min-height: calc(100svh - 122px);
  display: flex; flex-direction: column; justify-content: center;
}
/* vídeo de fundo */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: right center; z-index: 0;
}
/* clareia o lado esquerdo para o texto ficar legível sobre o vídeo */
.hero__video-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.55) 52%, rgba(255,255,255,0) 70%),
    linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 7%),
    linear-gradient(0deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 22%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  flex: 1; padding: 40px 0;
}
.hero__content { max-width: 620px; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.eyebrow__line { width: 42px; height: 2px; background: var(--blue); }
.eyebrow__txt { font-size: .72rem; letter-spacing: .22em; color: var(--blue); font-weight: 600; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.07; font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 22px;
}
.hero__title .hl { color: var(--navy); position: relative; white-space: nowrap; }
.hero__title .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px;
  background: linear-gradient(90deg, rgba(22,145,232,.28), rgba(22,145,232,.06));
  z-index: -1;
}
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.hero__sub strong { color: var(--navy); font-weight: 700; }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__meta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item .num { font-family: var(--font-tech); font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__meta-item .lbl { font-size: .76rem; color: var(--muted); letter-spacing: .02em; margin-top: 4px; }
.hero__meta-divider { width: 1px; height: 38px; background: var(--line-strong); }

/* Visual / motor */
.hero__visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero__visual-frame {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 1; padding: 38px;
  background:
    radial-gradient(circle at 50% 45%, #fff 0%, var(--bg-alt) 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.frame-tag {
  position: absolute; top: 14px; left: 16px; font-size: .62rem; letter-spacing: .14em;
  color: var(--muted); font-weight: 600;
}
.corner { position: absolute; width: 16px; height: 16px; border: 2px solid var(--blue); }
.corner--tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.corner--tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.corner--bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.corner--br { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.measure { position: absolute; font-size: .6rem; color: var(--muted); letter-spacing: .08em; }
.measure--v { right: 14px; bottom: 16px; display: inline-flex; align-items: center; gap: 6px; }
.measure--v i { width: 28px; height: 1px; background: var(--line-strong); display: inline-block; }

.motor-svg { width: 100%; height: auto; display: block; }
.rotor { transform-origin: 210px 210px; animation: spin 14s linear infinite; }
.coil-arc { transform-origin: 210px 210px; animation: spin 26s linear infinite; }
.coil-arc-2 { transform-origin: 210px 210px; animation: spin-rev 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }
.spark { animation: sparkmove 3.4s ease-in-out infinite; filter: drop-shadow(0 0 6px var(--blue)); }
@keyframes sparkmove {
  0%   { transform: translate(0,0); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translate(0, 100px); opacity: 0; }
}
.shaft-line { stroke-dasharray: 4 4; }

.hero__visual-caption { margin-top: 14px; font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.blink { color: var(--red); animation: blink 1.6s steps(1) infinite; }
@keyframes blink { 50% { opacity: .2; } }

/* Marquee de marcas */
.hero__marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); position: relative; z-index: 2; }
.marquee { overflow: hidden; padding: 20px 0; }
.marquee__track {
  display: flex; align-items: center; width: max-content;
  animation: scroll-x 57s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.brand-mark {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: clamp(130px, 14vw, 190px); height: 56px; padding: 0 clamp(20px, 3vw, 48px);
}
.brand-mark img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  filter: grayscale(1); opacity: .55; transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.brand-mark:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.06); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ====================================================
   SEÇÃO 2 — STATS
   ==================================================== */
.stats { padding: var(--section-pad) 0; }
.stats__bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
}
.stat { padding: 38px 28px; text-align: center; position: relative; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--blue); transition: width .5s var(--ease); }
.stat:hover::before { width: 100%; }
.stat__num { display: block; font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat__num--text { font-size: 2rem; }
.stat__label { display: block; margin-top: 12px; font-size: .86rem; color: var(--muted); }
/* Bloco de história com a foto da fachada */
.about-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: center; margin-top: 56px; }
.about-row__media {
  position: relative; padding: 14px; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 6px;
}
.about-row__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; display: block; aspect-ratio: 16/10; }
.about-row__media .frame-tag { top: 22px; left: 24px; z-index: 2; background: rgba(255,255,255,.86); padding: 3px 8px; border-radius: 3px; }
.about-row__media .corner { z-index: 2; }

.about-row__text .section-tag { margin-bottom: 14px; }
.about-row__title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.12; color: var(--ink); margin-bottom: 16px;
}
.about-row__text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }
.about-row__text p strong { color: var(--navy); }
.about-row__points { display: flex; flex-direction: column; gap: 12px; }
.about-row__points li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 500; }
.about-row__points .tick {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%; background: var(--blue-100); color: var(--navy);
  font-size: .8rem; font-weight: 700;
}

/* ====================================================
   SECTION HEADS (genérico)
   ==================================================== */
.section-head { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-tag { display: inline-block; font-size: .74rem; letter-spacing: .18em; color: var(--blue); font-weight: 600; margin-bottom: 16px; }
.section-title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.1; color: var(--ink);
}
.section-sub { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }
.section-sub strong { color: var(--navy); }
.section-head--light .section-title, .section-head--light .section-sub { color: #fff; }
.section-head--light .section-sub { color: rgba(255,255,255,.78); }
.section-head--light .section-sub strong { color: #fff; }

/* ====================================================
   SEÇÃO 3 — PRODUTOS
   ==================================================== */
.products { padding: var(--section-pad) 0; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.prod-card {
  position: relative; padding: 42px 34px 38px; background: #fff;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease); overflow: hidden;
}
.prod-card:nth-child(3n) { border-right: none; }
.prod-card:nth-child(n+4) { border-bottom: none; }
.prod-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--blue); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
}
.prod-card:hover { background: var(--bg-alt); }
.prod-card:hover::after { transform: scaleY(1); }
.prod-card__idx { position: absolute; top: 22px; right: 26px; font-size: .9rem; color: var(--line-strong); font-weight: 700; transition: color .3s; }
.prod-card:hover .prod-card__idx { color: var(--blue); }
.prod-card__media {
  width: 100%; height: 170px; margin-bottom: 24px; border-radius: 6px;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  transition: border-color .35s var(--ease);
}
.prod-card:hover .prod-card__media { border-color: var(--blue); }
.prod-card__media img {
  max-width: 78%; max-height: 82%; width: auto; height: auto; object-fit: contain;
  mix-blend-mode: multiply; transition: transform .45s var(--ease);
}
.prod-card:hover .prod-card__media img { transform: scale(1.06); }
.prod-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.prod-card__desc { color: var(--muted); font-size: .96rem; margin-bottom: 22px; }
.prod-card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--navy); }
.prod-card__link:hover { color: var(--blue); }
.prod-card__link:hover .arrow { transform: translateX(5px); }

/* ====================================================
   SEÇÃO 4 — POR QUE (fundo navy)
   ==================================================== */
.why { position: relative; padding: var(--section-pad) 0; background: var(--navy); color: #fff; overflow: hidden; }
.why__grid-bg {
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 30% 30%, #000 30%, transparent 75%);
}
.why .container { position: relative; z-index: 2; }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; overflow: hidden; }
.why-card { position: relative; background: var(--navy); padding: 40px 38px; transition: background .35s var(--ease); }
.why-card:hover { background: var(--navy-900); }
.why-card__no { position: absolute; top: 30px; right: 34px; font-size: 1rem; color: rgba(255,255,255,.25); font-weight: 700; }
.why-card__icon { font-size: 2.2rem; display: block; margin-bottom: 18px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.why-card p { color: rgba(255,255,255,.74); font-size: .98rem; }

/* ====================================================
   SEÇÃO 5 — SEGMENTOS
   ==================================================== */
.segments { padding: var(--section-pad) 0; background: var(--bg); }
.seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seg-grid .seg-card:first-child { grid-column: span 2; }
.seg-card {
  position: relative; min-height: 240px; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line); background: #fff; display: flex; align-items: flex-end;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.seg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.seg-card__bg { position: absolute; inset: 0; background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(0,51,98,.03) 22px 23px),
    radial-gradient(circle at 85% 15%, var(--blue-100), transparent 55%);
  transition: opacity .4s; }
.seg-card__num { position: absolute; top: 22px; left: 26px; font-family: var(--font-tech); font-weight: 700; color: var(--line-strong); font-size: 1.1rem; transition: color .3s; }
.seg-card:hover .seg-card__num { color: var(--blue); }
.seg-card__body { position: relative; z-index: 2; padding: 30px; }
.seg-card__body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.seg-card__body p { color: var(--muted); font-size: .96rem; max-width: 520px; margin-bottom: 16px; }
.seg-card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--navy); }
.seg-card__link:hover { color: var(--blue); }
.seg-card__link:hover .arrow { transform: translateX(5px); }

/* ====================================================
   SEÇÃO 6 — SERVIÇOS (fundo escuro)
   ==================================================== */
.services { padding: var(--section-pad) 0; background: linear-gradient(160deg, var(--navy-900), var(--navy)); color: #fff; }
.serv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 44px; }
.serv-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: 38px; transition: all .35s var(--ease);
}
.serv-card:hover { background: rgba(255,255,255,.07); border-color: var(--blue); transform: translateY(-3px); }
.serv-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.serv-card__tag { font-size: .72rem; letter-spacing: .16em; color: var(--blue); font-weight: 600; }
.serv-card__icon { font-size: 1.6rem; color: var(--blue); }
.serv-card h3 { font-family: var(--font-display); font-size: 1.42rem; font-weight: 700; margin-bottom: 14px; }
.serv-card p { color: rgba(255,255,255,.74); margin-bottom: 26px; }
.serv-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 32px 38px; border: 1px dashed rgba(255,255,255,.25); border-radius: 6px;
  background: rgba(22,145,232,.06);
}
.serv-cta p { font-size: 1.1rem; font-weight: 600; max-width: 560px; }

/* ====================================================
   SEÇÃO 7 — PROVA SOCIAL
   ==================================================== */
.social { padding: var(--section-pad) 0; background: var(--bg); }
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 64px; }
.brand-chip {
  display: flex; align-items: center; justify-content: center;
  width: 200px; height: 96px; padding: 22px 30px;
  border: 1px solid var(--line); border-radius: 6px; background: #fff;
  transition: all .3s var(--ease); filter: grayscale(1); opacity: .65;
}
.brand-chip img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.brand-chip:hover { filter: grayscale(0); opacity: 1; border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial {
  position: relative; background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 6px; padding: 40px 38px 34px; border-left: 3px solid var(--blue);
}
.testimonial__mark { position: absolute; top: 8px; right: 28px; font-family: var(--font-display); font-size: 5rem; color: var(--blue); opacity: .14; line-height: 1; }
.testimonial blockquote { font-size: 1.12rem; color: var(--ink); line-height: 1.55; margin-bottom: 22px; font-weight: 500; }
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial__author { font-weight: 700; color: var(--navy); }
.testimonial__role { font-size: .86rem; color: var(--muted); }

/* ====================================================
   SEÇÃO 8 + 9 — CONTATO
   ==================================================== */
.contact { position: relative; padding: var(--section-pad) 0; background: var(--bg-alt); overflow: hidden; }
.contact__grid-bg { opacity: .5; }
.contact .container { position: relative; z-index: 2; }

/* Dois caminhos */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.path-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 40px 36px 34px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.path-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.path-card--wa::before { background: #25D366; }
.path-card--store::before { background: var(--blue); }
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.path-card--wa:hover { border-color: #25D366; }
.path-card--store:hover { border-color: var(--blue); }
.path-card:hover::before { transform: scaleX(1); }

.path-card__badge {
  font-family: var(--font-tech); font-size: .64rem; font-weight: 600; letter-spacing: .14em;
  padding: 6px 12px; border-radius: 100px; margin-bottom: 22px;
}
.path-card--wa .path-card__badge { color: #1a8d47; background: rgba(37,211,102,.12); }
.path-card--store .path-card__badge { color: var(--navy); background: var(--blue-100); }

.path-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 14px; margin-bottom: 22px;
  transition: transform .4s var(--ease);
}
.path-card:hover .path-card__icon { transform: scale(1.08) rotate(-4deg); }
.path-card__icon--wa { background: #25D366; }
.path-card__icon--wa img { width: 38px; height: 38px; }
.path-card__icon--store { background: var(--navy); color: #fff; }
.path-card__icon--store svg { width: 34px; height: 34px; }

.path-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.path-card p { color: var(--muted); font-size: 1rem; margin-bottom: 26px; flex: 1; }
.path-card__cta {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1rem;
}
.path-card--wa .path-card__cta { color: #1a8d47; }
.path-card--store .path-card__cta { color: var(--navy); }
.path-card:hover .path-card__cta .arrow { transform: translateX(6px); }

.contact__info {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 26px;
  margin-top: 44px; color: var(--ink); font-weight: 500; font-size: .96rem;
}
.contact__info a, .contact__info > span { display: inline-flex; align-items: center; gap: 10px; transition: color .25s; }
.contact__info a:hover { color: var(--blue); }
.contact__info span span, .contact__info a span { color: var(--blue); }
.contact__info-sep { width: 1px; height: 18px; background: var(--line-strong); padding: 0 !important; }

/* ====================================================
   FOOTER
   ==================================================== */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { height: 40px; margin-bottom: 20px; }
.footer__col--about p { font-size: .92rem; margin-bottom: 22px; max-width: 340px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  transition: all .3s var(--ease);
}
.footer__social a img { width: 20px; height: 20px; display: block; transition: transform .3s var(--ease); }
.footer__social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 18px rgba(22,145,232,.35); }
.footer__social a:hover img { transform: scale(1.1); }
.footer__col h4 { font-family: var(--font-display); color: #fff; font-size: 1.02rem; font-weight: 700; margin-bottom: 20px; }
.footer__col ul li { margin-bottom: 11px; }
.footer__col ul a { font-size: .9rem; transition: color .2s, padding .2s; }
.footer__col ul a:hover { color: var(--blue); padding-left: 5px; }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer__contact li span { color: var(--blue); }
.footer__hours { font-size: .88rem; margin: 16px 0 18px; line-height: 1.7; }
.footer__map { border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); }
.footer__map iframe { width: 100%; height: 150px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 24px 0; font-size: .82rem; }
.footer__bottom a { transition: color .2s; }
.footer__bottom a:hover { color: var(--blue); }
.footer__bottom .sep { margin: 0 10px; opacity: .4; }

/* ====================================================
   WHATSAPP FLOAT + SCROLL PROGRESS
   ==================================================== */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform .3s var(--ease);
}
.whatsapp-float img { width: 38px; height: 38px; display: block; }
.whatsapp-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: pulse 2.4s infinite; z-index: -1; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float__tip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--navy); color: #fff; font-size: .82rem; font-weight: 600; white-space: nowrap;
  padding: 8px 14px; border-radius: 6px; opacity: 0; visibility: hidden;
  transition: all .3s var(--ease); box-shadow: var(--shadow-md); pointer-events: none;
}
.whatsapp-float__tip::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy);
}
.whatsapp-float:hover .whatsapp-float__tip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--blue), var(--navy)); z-index: 200; transition: width .1s linear; }

/* ====================================================
   REVEAL (animação de scroll)
   ==================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ====================================================
   RESPONSIVO
   ==================================================== */
@media (max-width: 1080px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__col--about { grid-column: span 3; }
  .footer__col--contact { grid-column: span 3; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; }
  .about-row { grid-template-columns: 1fr; gap: 32px; }
  .paths { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .serv-grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .seg-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-grid .seg-card:first-child { grid-column: span 2; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
  .hero { justify-content: flex-start; }
  .hero .hero__inner { align-items: flex-start; padding-top: 50px; }
  .stats__bar { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .prod-card { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .prod-card:nth-child(2n) { border-right: none !important; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--about, .footer__col--contact { grid-column: span 2; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .topbar__items { gap: 14px; font-size: .72rem; }
  .topbar__item--hours { display: none; }
  .hero { min-height: calc(100svh - 96px); }
  .hero__video { object-position: 72% center; }
  .hero__video-fade {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.94) 45%, rgba(255,255,255,.7) 70%, rgba(255,255,255,.4) 100%),
      linear-gradient(0deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 30%);
  }
  .hero__meta { gap: 16px; }
  .hero__meta-divider { display: none; }
  .seg-grid { grid-template-columns: 1fr; }
  .seg-grid .seg-card:first-child { grid-column: span 1; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card { border-right: none !important; }
  .stats__bar { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .serv-cta { flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__col--about, .footer__col--contact { grid-column: span 1; }
}
