﻿@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@700;900&family=Barlow+Condensed:wght@700;900&display=swap');

:root {
  --font-display: 'Barlow', 'Inter', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --blue: #144196;
  --blue-mid: #144196;
  --blue-dark: #0A2F7A;
  --yellow: #FFF000;
  --white: #FFFFFF;
  --metal: #144196;
  --graphite: #144196;
  --green: #25D366;
  --done: #22C55E;
  --panel: rgba(20, 65, 150, .06);
  --panel-strong: rgba(20, 65, 150, .10);
  --line: rgba(20, 65, 150, .18);
  --line-strong: rgba(20, 65, 150, .34);
  --shadow: 0 8px 36px rgba(20, 65, 150, .10);
  --shadow-card: 0 4px 18px rgba(20, 65, 150, .09);
  --radius: 14px;
  --radius-lg: 20px;
  --glow-blue: 0 0 40px rgba(20, 65, 150, .18);
  --glow-yellow: 0 0 28px rgba(255, 240, 0, .35);
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --text: #144196;
  --text-sub: #2E5096;   /* contraste 6.5:1 no branco — WCAG AAA */
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.intro-pending, html.intro-pending body { overflow: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-body);
  background: #FFFFFF;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
}
h1 { font-weight: 900; }
h2 { font-weight: 900; }
h3 { font-weight: 700; }
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { color: var(--blue-dark); background: var(--yellow); }

header,
main,
.floating-whatsapp {
  transition: opacity .6s ease, transform .6s ease;
}

body.intro-active header,
body.intro-active main,
body.intro-active .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
}

body.intro-active main {
  transform: translateY(10px);
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 22%, rgba(20,65,150,.34), transparent 30%),
    linear-gradient(135deg, rgba(7,18,35,.98), rgba(4,12,24,.96));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .6s ease, visibility .6s ease;
}
html.intro-pending .intro-screen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.intro-screen::before,
.intro-screen::after,
.intro-screen-grid,
.intro-screen-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro-screen::before {
  content: "";
  background:
    linear-gradient(rgba(174,183,194,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,183,194,.04) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: .26;
  transition: opacity .5s ease;
}
.intro-screen::after {
  content: "";
  inset: auto 12% 26%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,240,0,.44), transparent);
  opacity: .28;
  animation: introLineDrift 5.4s ease-in-out infinite;
}
.intro-screen-grid {
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255,240,0,.08) 48%, transparent 50%),
    radial-gradient(circle at 78% 18%, rgba(20,65,150,.22), transparent 26%);
  transition: opacity .5s ease;
}
.intro-screen-glow {
  inset: auto 50% 14%;
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,0,.1), transparent 68%);
  transform: translateX(-50%);
}
.intro-screen-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(100%, 1000px);
  text-align: center;
}
.intro-screen-logo {
  width: min(320px, 56vw);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  filter: drop-shadow(0 18px 46px rgba(0,0,0,.24));
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}
.intro-screen-text {
  position: relative;
  max-width: min(100%, 940px);
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.03em;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0,0,0,.28);
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px) scale(.98);
  transition: opacity .52s ease, transform .52s ease, filter .52s ease;
}
.intro-screen-text::after {
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: min(240px, 36%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,240,0,0), rgba(255,240,0,.42), rgba(255,240,0,0));
  content: "";
  opacity: .5;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .56s cubic-bezier(.22,1,.36,1), opacity .4s ease;
}
.intro-screen.is-active .intro-screen-text {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.intro-screen.is-active .intro-screen-text::after {
  transform: translateX(-50%) scaleX(1);
}
.intro-screen.is-leaving .intro-screen-text {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(-10px) scale(.992);
}
.intro-screen.is-final.is-active .intro-screen-logo {
  opacity: 1;
  transform: translateY(0) scale(1.02);
  filter: drop-shadow(0 20px 54px rgba(0,0,0,.3)) drop-shadow(0 0 20px rgba(255,240,0,.12));
}
.intro-screen.is-final .intro-screen-text {
  max-width: none;
  color: rgba(255,255,255,.96);
  text-shadow: 0 18px 52px rgba(0,0,0,.32);
}
.intro-screen.is-final .intro-screen-text::after {
  width: min(220px, 32%);
  opacity: .34;
}
.intro-screen.is-final.is-active .intro-screen-text {
  background-image: linear-gradient(102deg, rgba(245,247,250,.9) 0%, #fff 42%, rgba(255,255,255,.98) 49%, #fff 56%, rgba(245,247,250,.9) 100%);
  background-size: 220% 100%;
  background-position: 140% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: introTextSweep 1.15s ease-out .22s 1 forwards;
}
.intro-screen-emphasis {
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(255,240,0,.14);
}
.intro-screen.is-exiting {
  opacity: 0;
  visibility: hidden;
}
body.intro-complete .site-header,
body.intro-complete main,
body.intro-complete .floating-whatsapp,
body.intro-complete .hero-content,
body.intro-complete .hero-panel {
  animation: siteIntroIn .78s cubic-bezier(.22,1,.36,1) both;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px clamp(20px, 5vw, 64px);
  color: #fff;
  background: transparent;
  transition: padding .25s ease, background .35s ease, box-shadow .35s ease;
}
.site-header::before {
  position: absolute;
  inset: 6px clamp(10px, 1.8vw, 20px);
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  content: "";
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, inset .25s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled, .site-header.menu-open { padding-block: 10px; }
.site-header.is-scrolled::before, .site-header.menu-open::before {
  border-color: rgba(255,255,255,.18);
  background: #144196;
  box-shadow: 0 14px 44px rgba(20,65,150,.26);
  backdrop-filter: blur(20px);
}
.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 4px 0;
  margin-left: 4px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(0);
  opacity: 0;
  animation: brandIntro .72s cubic-bezier(.22,1,.36,1) .08s forwards;
  transition: transform .24s ease, filter .24s ease;
}
.brand::before,
.brand::after { display: none; }
.brand:hover {
  transform: translateY(-1px) scale(1.04);
}
.brand img {
  position: relative;
  z-index: 1;
  width: 214px;
  filter:
    drop-shadow(0 0 18px rgba(255,240,0,.45))
    drop-shadow(0 6px 22px rgba(0,0,0,.55))
    drop-shadow(0 0 6px rgba(255,240,0,.25));
  transform-origin: center left;
  transition: transform .24s ease, filter .24s ease;
}
.brand:hover img {
  transform: scale(1.04);
  filter:
    drop-shadow(0 0 26px rgba(255,240,0,.7))
    drop-shadow(0 8px 28px rgba(0,0,0,.6))
    drop-shadow(0 0 10px rgba(255,240,0,.4));
}
.main-nav {
  position: relative;
  z-index: 2;
  justify-self: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 32px);
  align-items: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.main-nav > a { position: relative; padding: 10px 0; color: rgba(245,247,250,.78); transition: color .2s ease; }
.main-nav > a::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav > a:hover { color: #fff; }
.main-nav > a:hover::after { transform: scaleX(1); }

/* ── Dropdown "Soluções" ── */
.nav-dropdown { position: relative; z-index: 2; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  background: none;
  border: none;
  color: rgba(245,247,250,.78);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease;
}
.nav-dropdown-toggle:hover { color: #fff; }
.nav-chevron {
  width: 13px; height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease;
  flex-shrink: 0;
}
.nav-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: #144196;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 52px rgba(20,65,150,.32), 0 0 0 1px rgba(255,255,255,.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(245,247,250,.76);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-panel a::after { display: none !important; }
.nav-dropdown-panel a:hover { background: rgba(255,240,0,.08); color: #fff; }
.nav-dropdown-panel a i { color: rgba(255,240,0,.52); width: 16px; text-align: center; font-size: .88rem; }
.nav-dropdown-panel a:hover i { color: var(--yellow); }

/* ── Header end: carreiras + sociais ── */
.header-end {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-careers-btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(245,247,250,.2);
  background: rgba(245,247,250,.06);
  color: rgba(245,247,250,.76);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.nav-careers-btn:hover {
  border-color: rgba(255,240,0,.38);
  color: var(--yellow);
  background: rgba(255,240,0,.07);
}
.header-socials {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.header-social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(245,247,250,.16);
  color: rgba(245,247,250,.7);
  background: rgba(245,247,250,.05);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.header-social-link:hover {
  border-color: rgba(255,240,0,.4);
  color: var(--yellow);
  background: rgba(255,240,0,.07);
}
.header-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245,247,250,.25);
  border-radius: var(--radius);
  background: rgba(245,247,250,.08);
  color: #fff;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 999px; background: currentColor; }
.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  overflow: hidden;
  padding: 150px clamp(24px, 5vw, 72px) 64px;
  background: var(--blue-dark);
}
.hero-video-wrap, .hero-bg, .hero-shade, .industrial-grid, .industrial-particles, .hero-light { position: absolute; inset: 0; }
.hero-video-wrap {
  background:
    linear-gradient(100deg, rgba(10,26,51,.82), rgba(10,26,51,.28)),
    url("assets/slide.webp") center / cover no-repeat;
}
.hero-bg {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  filter: saturate(.96) contrast(1.14) brightness(.72);
}
.watermark-mask {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42vw, 560px);
  height: min(26vh, 260px);
  background: linear-gradient(135deg, transparent 0%, rgba(10,26,51,.72) 58%, rgba(10,26,51,.98));
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.hero-shade {
  background:
    linear-gradient(100deg, rgba(10,26,51,.92) 0%, rgba(10,26,51,.62) 52%, rgba(10,26,51,.24) 100%),
    linear-gradient(0deg, var(--blue-dark) 0%, transparent 56%);
}
.industrial-grid {
  opacity: .22;
  background:
    linear-gradient(rgba(174,183,194,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,183,194,.05) 1px, transparent 1px);
  background-size: 62px 62px, 62px 62px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero-light {
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,240,0,.14), transparent 64%);
  transform: translate(-50%, -50%);
  opacity: .5;
  pointer-events: none;
}
.industrial-particles { pointer-events: none; }
.industrial-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .12;
  animation: particleDrift 9s linear infinite;
}
.industrial-particles span:nth-child(1){left:12%;top:28%;animation-delay:0s}.industrial-particles span:nth-child(2){left:29%;top:72%;animation-delay:2s}.industrial-particles span:nth-child(3){left:48%;top:18%;animation-delay:1s}.industrial-particles span:nth-child(4){left:66%;top:58%;animation-delay:3s}.industrial-particles span:nth-child(5){left:80%;top:31%;animation-delay:4s}.industrial-particles span:nth-child(6){left:90%;top:82%;animation-delay:1.7s}
.hero-content, .hero-panel { position: relative; z-index: 2; min-width: 0; }
.hero-content { max-width: 870px; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: .76rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; font-family: var(--font-body); }
.hero .eyebrow, .page-banner .eyebrow, .intro-screen .eyebrow { color: var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
.hero h1, .section h2, .analysis-band h2, .social-section h2 { margin: 0; line-height: 1.02; letter-spacing: 0; overflow-wrap: break-word; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 5rem); font-weight: 900; text-shadow: 0 18px 48px rgba(0,0,0,.32); }
.hero-text { max-width: 700px; margin: 24px 0 0; color: rgba(245,247,250,.9); font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.7; text-shadow: 0 10px 30px rgba(0,0,0,.28); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--yellow); color: var(--blue-dark); box-shadow: 0 18px 44px rgba(255,240,0,.24); }
.btn.secondary { border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.10); color: #fff; backdrop-filter: blur(12px); }
.btn.outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn.outline:hover { background: var(--blue); color: #FFFFFF; box-shadow: 0 8px 24px rgba(20,65,150,.20); }
.cta-band .btn.secondary { background: #FFFFFF; color: #144196; border-color: #FFFFFF; font-weight: 900; }
.cta-band .btn.secondary:hover { background: rgba(255,255,255,.88); border-color: rgba(255,255,255,.88); }
.hero-panel {
  padding: 24px;
  border: 1px solid rgba(245,247,250,.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245,247,250,.13), rgba(245,247,250,.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-panel span { display: block; margin-bottom: 10px; color: var(--yellow); font-weight: 900; text-transform: uppercase; font-size: .78rem; }
.hero-panel strong { display: block; font-size: 1.25rem; line-height: 1.35; }
.hero-panel a { display: inline-flex; align-items: center; justify-content: center; margin-top: 18px; color: var(--yellow); font-size: 1.35rem; font-weight: 900; line-height: 1; white-space: nowrap; }
.hero-animate { animation: heroIn .72s ease both; }
.hero-text { animation-delay: .08s; }.hero-actions { animation-delay: .16s; }.hero-panel { animation-delay: .24s; }.hero-badges { animation-delay: .28s; }

.section, .social-section { padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 64px); }
.section-heading { max-width: 960px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow), .section-copy p, .analysis-band p, .contact-copy p { max-width: 690px; color: var(--text-sub); line-height: 1.8; }
.section h2, .analysis-band h2, .social-section h2 { font-size: clamp(1.8rem, 3vw, 3.2rem); }
.intro {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(30px, 4vw, 56px);
  overflow: hidden;
  padding: clamp(120px, 12vw, 144px) clamp(18px, 5vw, 64px) clamp(72px, 9vw, 104px);
  background: rgba(20, 65, 150, .05);
}
.intro::before,
.intro::after {
  display: none;
}
.intro-visual {
  position: relative;
  display: grid;
  gap: 14px;
}
.intro-media {
  position: relative;
  min-height: clamp(520px, 56vw, 650px);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20,65,150,.14);
  background: var(--bg);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.intro-media::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,240,0,.16));
  content: "";
  pointer-events: none;
  transition: right .72s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms);
}
.intro-media.is-visible::after { right: 0; }
.intro-media:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(20,65,150,.28);
  box-shadow: 0 40px 96px rgba(20,65,150,.18);
}
.intro-image, .intro-overlay, .intro-grid {
  position: absolute;
  inset: 0;
}
.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  filter: saturate(.9) contrast(1.04) brightness(.86);
  transition: transform .6s ease, filter .28s ease;
}
.intro-media:hover .intro-image {
  transform: scale(1.06);
  filter: saturate(.94) contrast(1.06) brightness(.9);
}
.intro-overlay {
  background:
    linear-gradient(180deg, rgba(7,18,35,.08) 0%, rgba(7,18,35,.18) 58%, rgba(7,18,35,.34) 100%),
    linear-gradient(135deg, rgba(20,65,150,.16), transparent 46%, rgba(7,18,35,.14) 100%);
}
.intro-grid { display: none; }
.intro-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding-top: 18px;
}
.intro-copy {
  position: relative;
  max-width: 700px;
  padding: 0 0 0 2px;
}
.intro-copy::before {
  position: absolute;
  left: 2px;
  top: -18px;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,240,0,.16));
  content: "";
}
.intro-copy .eyebrow {
  margin-bottom: 16px;
}
.intro-title {
  max-width: 14ch;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.04;
  color: var(--text);
}
.intro-text {
  max-width: 60ch;
  margin-top: 22px;
  color: rgba(245,247,250,.78);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.78;
}
.intro-eyebrow { --reveal-delay: 0ms; }
.intro-title { --reveal-delay: 100ms; }
.intro-text { --reveal-delay: 190ms; }
.intro-media { --reveal-delay: 120ms; }
.intro-location { --reveal-delay: 240ms; }
.intro-eyebrow.reveal,
.intro-title.reveal,
.intro-text.reveal {
  transform: translateY(26px);
}
.intro-media.reveal {
  opacity: 0;
  transform: translateX(40px) scale(.98);
  transition:
    opacity .82s cubic-bezier(.22,1,.36,1),
    transform .82s cubic-bezier(.22,1,.36,1),
    box-shadow .28s ease,
    border-color .28s ease;
}
.intro-media.reveal.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.intro-media.reveal.is-visible:hover {
  transform: translateY(-2px) scale(1.02);
}
.intro-location.reveal {
  transform: translateY(24px);
}
.intro-location {
  position: relative;
  z-index: 1;
  max-width: 360px;
  justify-self: end;
  padding: 16px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.intro-location::before {
  position: absolute;
  left: 20px;
  top: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
}
.intro-location span, .product-detail span, .contact-list span, .product-detail small {
  display: block;
  margin-bottom: 6px;
  color: var(--metal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.intro-location strong {
  display: block;
  color: var(--text);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.45;
}

.metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; background: transparent; }
.metric-card {
  position: relative;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  cursor: default;
  transition: transform .22s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.metric-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,240,0,.3));
  border-radius: 999px;
  transition: width .48s cubic-bezier(.22,1,.36,1);
}
.metric-card:hover {
  border-color: rgba(20,65,150,.40);
  box-shadow: 0 14px 38px rgba(20,65,150,.16), 0 0 0 1px rgba(20,65,150,.14);
  background: var(--surface);
}
.metric-card:hover::after { width: 100%; }
.metric-icon {
  font-size: 1.5rem;
  color: rgba(20, 65, 150, .38);
  margin-bottom: 8px;
  transition: color .22s ease, transform .22s ease;
}
.metric-card:hover .metric-icon {
  color: var(--blue);
  transform: scale(1.2) translateY(-3px);
}
.metric-card strong {
  color: var(--blue);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  transition: text-shadow .22s ease;
}
.metric-card:hover strong {
  text-shadow: 0 0 24px rgba(20,65,150,.22);
}
.metric-card span { font-weight: 800; margin-top: 4px; color: var(--text); }
.metric-sub {
  margin: 6px 0 0;
  color: var(--text-sub);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.4;
  transition: color .22s ease;
}
.metric-card:hover .metric-sub { color: var(--text); }

.segments { background: #144196; }
.segments .section-heading .eyebrow { color: var(--yellow); }
.segments .section-heading h2,
.segments .section-heading p:not(.eyebrow) { color: #FFFFFF; }
.segments .btn.secondary { border-color: rgba(255,255,255,.40); background: rgba(255,255,255,.12); color: #fff; }
/* Segment cards — full-bleed photo with overlaid text */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  grid-auto-rows: 260px;
  gap: 10px;
}
.segment-grid .segment-card:first-child {
  grid-row: span 1;
  grid-column: span 2;
}
.segment-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0a1535;
  cursor: pointer;
  border: none;
}
.segment-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .75s cubic-bezier(.25,.46,.45,.94), filter .45s ease;
  filter: saturate(.78) brightness(.68);
}
.segment-card:hover img {
  transform: scale(1.09);
  filter: saturate(1.05) brightness(.52);
}
.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,12,40,.96) 0%, rgba(5,12,40,.48) 42%, rgba(10,24,70,.08) 100%);
  z-index: 1;
  transition: background .42s ease;
}
.segment-card:hover::before {
  background: linear-gradient(to top, rgba(5,12,40,.98) 0%, rgba(5,12,40,.70) 55%, rgba(20,65,150,.18) 100%);
}
.segment-card::after { display: none; }
.seg-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #FFF000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .48s cubic-bezier(.22,1,.36,1);
  z-index: 3;
}
.segment-card:hover .seg-accent { transform: scaleX(1); }
.seg-num {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  color: rgba(255,255,255,.50);
  font-family: var(--font-body);
}
.seg-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 26px 22px 22px;
}
.seg-body strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
  font-family: var(--font-display);
}
.seg-body p {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: .84rem;
  line-height: 1.50;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .42s ease, opacity .36s ease, margin .36s ease;
}
.segment-card:hover .seg-body p { max-height: 120px; opacity: 1; margin-top: 8px; }
.seg-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: .78rem;
  font-weight: 900;
  color: #FFF000;
  letter-spacing: .04em;
  transition: max-height .38s ease .08s, opacity .30s ease .08s, margin .35s ease .08s;
}
.segment-card:hover .seg-cta { max-height: 40px; opacity: 1; margin-top: 14px; }
.seg-cta i { font-size: .68rem; transition: transform .22s ease; }
.segment-card:hover .seg-cta i { transform: translateX(5px); }

.analysis-band { display: grid; grid-template-columns: minmax(0,.95fr) minmax(320px,.75fr); align-items: center; gap: clamp(36px,8vw,110px); padding: clamp(72px,10vw,124px) clamp(18px,5vw,64px); background: #FFF000; }
.analysis-band .eyebrow { color: var(--blue); }
.analysis-band h2, .analysis-band p:not(.eyebrow) { color: #144196; }
.analysis-band .btn { background: #144196; color: #FFFFFF; border-color: #144196; box-shadow: 0 8px 24px rgba(20,65,150,.28); }
.analysis-band .btn:hover { background: #0d2e6e; border-color: #0d2e6e; box-shadow: 0 12px 32px rgba(20,65,150,.38); transform: translateY(-2px); }
.analysis-band img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 42%; border-radius: var(--radius); box-shadow: var(--shadow); filter: saturate(.92) brightness(.9); }

.products { background: #FFFFFF; }
.product-showcase { display: grid; grid-template-columns: minmax(280px,.9fr) minmax(300px,.7fr); gap: 18px; align-items: stretch; }
.product-image { min-height: 520px; grid-row: span 3; border: 1px solid var(--line); border-radius: var(--radius); background-image: var(--product-image, linear-gradient(rgba(10,26,51,.1), rgba(10,26,51,.65)), url("assets/produto-epoxi.webp")); background-position: var(--product-position, center); background-size: cover; box-shadow: var(--shadow); transition: background-image .28s ease, filter .28s ease; }
.product-list { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.product-pill { min-height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: var(--surface); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); cursor: pointer; font-weight: 900; transition: .2s ease; }
.product-pill.active, .product-pill:hover { border-color: var(--yellow); color: var(--blue-dark); background: var(--yellow); }
.product-detail, .radar-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.product-detail { padding: 24px; opacity: 1; transition: opacity .18s ease, transform .18s ease; }
.product-detail.is-changing { opacity: .2; transform: translateY(4px); }
.product-detail strong { display: block; color: var(--text); font-size: 2rem; }
.product-detail p { color: var(--text-sub); line-height: 1.72; }
.product-detail ul { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.product-detail li { position: relative; padding-left: 18px; color: var(--text-sub); }
.product-detail li::before { position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); content: ""; }
.radar-card { display: grid; justify-items: center; padding: 18px; overflow: visible; position: relative; }
.radar-card canvas { width: min(100%, 440px); height: auto; }

/* Tooltip interativo do radar */
.radar-tooltip {
  display: none;
  position: absolute;
  padding: 7px 14px 8px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  pointer-events: none;
  z-index: 10;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
}
.radar-tooltip span {
  display: block;
  color: var(--text-sub);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.radar-tooltip strong {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
}

/* Pulse sutil na borda do card */
@keyframes radarCardPulse {
  0%, 100% { border-color: var(--line); }
  50% { border-color: rgba(20,65,150,.30); }
}
.radar-card { animation: radarCardPulse 3.6s ease-in-out infinite; }

.quality-flow { background: transparent; overflow: hidden; }
.flow-track { position: relative; min-height: 230px; display: grid; grid-template-columns: repeat(7, minmax(118px, 1fr)); gap: 12px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow); overflow-x: auto; }
.flow-line { position: absolute; left: 7%; right: 7%; top: 50%; height: 3px; border-radius: 999px; background: rgba(20,65,150,.12); }
.flow-line span { display: block; width: var(--progress, 0%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--yellow), var(--done)); box-shadow: 0 0 24px rgba(255,240,0,.26); transition: width 1.45s cubic-bezier(.22,1,.36,1); }
.flow-vehicle { position: absolute; left: calc(7% + (86% * var(--progress-ratio, 0))); top: calc(50% - 38px); width: 38px; height: 22px; border-radius: 6px 10px 6px 6px; background: var(--yellow); transform: translateX(-50%); transition: left 1.45s cubic-bezier(.22,1,.36,1); box-shadow: 0 0 22px rgba(255,240,0,.4); }
.flow-vehicle::before { position: absolute; right: -8px; bottom: 0; width: 14px; height: 14px; border-radius: 3px 8px 3px 0; background: var(--yellow); content: ""; }
.flow-vehicle::after { position: absolute; left: 6px; right: 4px; bottom: -5px; height: 6px; border-radius: 999px; background: linear-gradient(90deg, #144196 0 6px, transparent 6px 24px, #144196 24px 30px); content: ""; }
.flow-step { position: relative; z-index: 2; min-width: 118px; display: grid; place-items: center; gap: 12px; color: var(--text-sub); text-align: center; }
.flow-step span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(20,65,150,.2); border-radius: 50%; background: var(--bg); color: var(--text-sub); font-weight: 900; transition: background .45s ease, color .45s ease, border-color .45s ease, box-shadow .45s ease, transform .45s ease; }
.flow-step strong { font-size: .82rem; color: var(--text); }
.flow-step.active span { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 0 22px rgba(20,65,150,.28); transform: translateY(-2px); }
.flow-step.final.active span { background: var(--done); color: #fff; box-shadow: 0 0 18px rgba(34,197,94,.24); }

.social-section { background: #FFF000; }
.social-section .section-heading .eyebrow { color: var(--blue); }
.social-section .section-heading h2,
.social-section .section-heading p:not(.eyebrow) { color: #144196; }
.social-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }
.social-card { min-height: 280px; display: grid; gap: 18px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease; }
.social-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.social-preview { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 8px; }
.social-preview img { width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius); filter: brightness(.78) saturate(.88); }
.social-card span { color: var(--blue); font-weight: 900; text-transform: uppercase; font-size: .78rem; }
.social-card strong { display: block; margin-top: 6px; font-size: 1.2rem; color: var(--text); }
.whatsapp-card { place-items: center; text-align: center; }
.whatsapp-logo { width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 38px rgba(37,211,102,.32); animation: pulseWhatsapp 2.8s ease-in-out infinite; }
.whatsapp-logo::before { display: block; width: 38px; height: 38px; content: ""; background: #fff; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.01 3.2A12.76 12.76 0 0 0 5.02 22.43L3.2 28.8l6.54-1.72A12.75 12.75 0 1 0 16.01 3.2Zm0 2.28a10.48 10.48 0 0 1 8.93 15.98 10.5 10.5 0 0 1-13.72 3.42l-.47-.25-3.88 1.02 1.04-3.76-.28-.49A10.48 10.48 0 0 1 16.01 5.48Zm-4.1 5.3c-.24 0-.62.09-.95.44-.33.36-1.25 1.22-1.25 2.98s1.28 3.46 1.46 3.7c.18.24 2.47 3.96 6.12 5.39 3.03 1.19 3.65.95 4.31.89.66-.06 2.12-.86 2.42-1.7.3-.84.3-1.56.21-1.7-.09-.15-.33-.24-.69-.42-.36-.18-2.12-1.05-2.45-1.17-.33-.12-.57-.18-.81.18-.24.36-.93 1.17-1.14 1.41-.21.24-.42.27-.78.09-.36-.18-1.52-.56-2.9-1.78-1.07-.96-1.8-2.14-2.01-2.5-.21-.36-.02-.56.16-.74.16-.16.36-.42.54-.63.18-.21.24-.36.36-.6.12-.24.06-.45-.03-.63-.09-.18-.8-1.94-1.1-2.65-.29-.7-.58-.6-.8-.61h-.67Z"/></svg>') center / contain no-repeat; }

.contact { display: grid; grid-template-columns: minmax(0,.9fr) minmax(320px,.72fr); gap: clamp(34px,7vw,90px); background: rgba(20, 65, 150, .05); }
.contact-list { display: grid; gap: 18px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-list li { padding: 16px 18px; border-left: 4px solid var(--blue); border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 16px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel-strong); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; font-weight: 900; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(20,65,150,.18); border-radius: var(--radius); padding: 13px 14px; color: var(--text); background: var(--bg); }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(20,65,150,.28); border-color: var(--blue); }
.form-note { margin: 0; color: var(--text-sub); font-size: .9rem; }
.site-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 28px clamp(18px,5vw,64px); color: #FFFFFF; background: #144196; border-top: none; }
.site-footer img { width: 170px; }
.site-footer p { margin: 0; color: rgba(255,255,255,.58); font-size: .78rem; }
.site-footer > a { color: #FFF000; font-weight: 800; font-size: .82rem; }
.footer-links { display: flex; gap: 18px; align-items: center; }
.footer-links a { color: rgba(245,247,250,.52); font-size: .78rem; font-weight: 600; transition: color .2s ease; }
.footer-links a:hover { color: rgba(245,247,250,.88); }
.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 45; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 6px 14px 6px 7px; border-radius: 999px; background: var(--green); color: #fff; font-size: .88rem; font-weight: 900; line-height: 1; white-space: nowrap; box-shadow: 0 14px 34px rgba(37,211,102,.28); animation: pulseWhatsapp 3.4s ease-in-out infinite; }
.floating-whatsapp strong { display: block; line-height: 1; }
.floating-whatsapp .whatsapp-logo { width: 34px; height: 34px; box-shadow: none; animation: none; }.floating-whatsapp .whatsapp-logo::before { width: 20px; height: 20px; }
.segments-ticker {
  overflow: hidden;
  background: #FFF000;
  padding: 13px 0;
  border-top: none;
  border-bottom: none;
}
.segments-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
  white-space: nowrap;
}
.segments-ticker-track:hover { animation-play-state: paused; }
.segments-ticker-track span {
  padding: 0 28px;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #144196;
  font-family: var(--font-body);
}
.segments-ticker-track .ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #144196;
  flex-shrink: 0;
  padding: 0;
  opacity: .5;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes heroIn { from { opacity: 1; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes introTextSweep {
  0% { background-position: 140% 50%; }
  100% { background-position: -30% 50%; }
}
@keyframes introLineDrift {
  0%, 100% { transform: translateX(-18px); opacity: .18; }
  50% { transform: translateX(18px); opacity: .42; }
}
@keyframes introFloat {
  0%, 100% { transform: translateY(0) scale(1.04); }
  50% { transform: translateY(-6px) scale(1.045); }
}
@keyframes introSweep {
  0%, 100% { transform: translateX(-16px); opacity: .14; }
  50% { transform: translateX(16px); opacity: .36; }
}
@keyframes siteIntroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes brandIntro {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes particleDrift { from { transform: translateY(50px); opacity: 0; } 20%,70% { opacity: .3; } to { transform: translateY(-80px); opacity: 0; } }
@keyframes pulseWhatsapp { 0%,100% { transform: scale(1); box-shadow: 0 18px 48px rgba(37,211,102,.28); } 50% { transform: scale(1.025); box-shadow: 0 20px 58px rgba(37,211,102,.42); } }

@media (max-width: 1060px) {
  .segment-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-showcase, .analysis-band, .contact, .social-grid { grid-template-columns: 1fr; }
  .product-image { grid-row: auto; min-height: 360px; }
  .intro {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
    gap: 26px;
  }
  .intro-title { max-width: 12ch; }
  .intro-image { object-position: center 40%; }
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .site-header::before { inset: 8px 12px; }
  .brand { min-height: 60px; padding: 6px 0; margin-left: 0; }
  .brand img { width: 206px; }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav, .header-end { display: none; }
  .site-header.menu-open .main-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-self: stretch;
    gap: 0;
    padding: 8px 18px 14px;
  }
  .site-header.menu-open .main-nav > a,
  .site-header.menu-open .nav-dropdown-toggle {
    padding: 13px 0;
    border-top: 1px solid rgba(245,247,250,.1);
    width: 100%;
    justify-content: space-between;
  }
  /* Dropdown no mobile vira accordion */
  .site-header.menu-open .nav-dropdown-panel {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    min-width: 0;
    background: rgba(245,247,250,.05);
    box-shadow: none;
    backdrop-filter: none;
    border: none;
    border-radius: 8px;
    padding: 2px 0 6px 14px;
    display: none;
  }
  .site-header.menu-open .nav-dropdown.is-open .nav-dropdown-panel { display: block; }
  .site-header.menu-open .nav-dropdown-panel a { padding: 9px 10px; font-size: .78rem; border-radius: 6px; }
  /* Link de carreiras no fim do menu mobile */
  .site-header.menu-open .main-nav::after {
    content: "";
    display: block;
    border-top: 1px solid rgba(245,247,250,.1);
    margin-top: 4px;
    padding-top: 12px;
  }
  .hero { grid-template-columns: 1fr; min-height: 100svh; padding-top: 128px; }
  .hero-panel { max-width: 620px; }
  .intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 118px;
    padding-bottom: 72px;
  }
  .intro::after {
    top: auto;
    bottom: 18%;
    right: 16px;
    width: 180px;
  }
  .intro-content { padding-top: 0; }
  .intro-copy { max-width: 720px; }
  .intro-title { max-width: 14ch; font-size: clamp(2.7rem, 6vw, 4.4rem); }
  .intro-media {
    min-height: 460px;
  }
  .intro-media.reveal {
    transform: translateY(26px) scale(.985);
  }
  .intro-media.reveal.is-visible {
    transform: translateY(0) scale(1);
  }
  .intro-location {
    max-width: none;
    justify-self: stretch;
  }
  .intro-visual { animation-duration: 9.2s; }
  /* Fluxo: layout vertical no mobile — sem scroll horizontal */
  .flow-track {
    grid-template-columns: 1fr !important;
    min-height: auto;
    overflow: visible;
    padding: 24px 20px 24px 32px;
    gap: 0;
  }
  /* Esconde a linha horizontal animada e o veículo */
  .flow-line, .flow-vehicle { display: none; }
  /* Linha vertical simples no lado esquerdo */
  .flow-track::before {
    content: "";
    position: absolute;
    left: 48px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: rgba(20,65,150,.12);
    border-radius: 999px;
  }
  /* Cada etapa: círculo à esquerda, texto à direita */
  .flow-step {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    text-align: left;
    padding: 10px 0;
    scroll-snap-align: none;
  }
  .flow-step span {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    font-size: .82rem;
  }
  .flow-step strong { font-size: .9rem; }
}
@media (max-width: 640px) {
  .intro-screen { padding: 18px; }
  .intro-screen::after { inset: auto 10% 22%; }
  .intro-screen-content { gap: 18px; }
  .intro-screen-text {
    max-width: 90vw;
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -.02em;
  }
  .intro-screen-logo { width: min(260px, 62vw); }
  .site-header { gap: 14px; padding-inline: 14px; }
  .site-header::before { inset: 6px 8px; }
  .brand { min-height: 46px; padding: 4px 0; }
  .brand img { width: min(42vw, 168px); }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { padding: 120px 16px 44px; }
  .hero h1 { font-size: 2rem; line-height: 1.08; }
  .hero-actions, .btn { width: 100%; }
  .section, .social-section { padding: 72px 16px; }
  .intro {
    padding: 104px 16px 56px;
  }
  .intro-content { order: 1; }
  .intro-visual { order: 2; }
  .intro-media {
    min-height: 320px;
    border-radius: 20px;
  }
  .intro-image {
    object-position: center 38%;
    transform: scale(1.02);
  }
  .intro-media:hover {
    transform: translateY(-1px) scale(1.01);
  }
  .intro-grid { opacity: .2; }
  .intro-copy {
    padding: 0;
  }
  .intro-copy::before {
    left: 0;
    top: -16px;
    width: 62px;
  }
  .intro-title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.06;
  }
  .intro-text {
    margin-top: 18px;
    font-size: .98rem;
    line-height: 1.72;
  }
  .intro-location {
    max-width: none;
    padding: 16px 16px 18px;
    border-radius: 16px;
  }
  .metrics { grid-template-columns: 1fr; }
  .segment-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .segment-card { min-height: 220px; }
  .segment-card:first-child { grid-column: span 1; }
  .metric-card { min-height: 138px; }
  .social-preview { grid-template-columns: 1fr 1fr; }
  .social-preview img:first-child { grid-column: 1 / -1; }
  .floating-whatsapp { left: 12px; right: 12px; justify-content: center; }
  .site-footer { padding-bottom: 96px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .intro-media::after { right: 0; }
  .intro-media.reveal, .intro-media.reveal.is-visible { transform: none; }
  .intro-image, .intro-media:hover .intro-image { transform: none; }
  .intro-visual { animation: none; }
  .intro-screen::after { animation: none; }
  .intro-screen::before,
  .intro-screen-grid,
  .intro-screen-glow,
  .intro-screen-text,
  .intro-screen-logo { transition-duration: .001ms !important; }
}

/* ================================================================
   VISUAL ENHANCEMENTS — Hero, Cards, Industrial Details
   ================================================================ */


.hero-content::before { display: none; }

/* Hero eyebrow — linha amarela + texto */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(255,240,0,.6);
  flex-shrink: 0;
}

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(245,247,250,.72);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-badges span i {
  color: var(--yellow);
  font-size: .9rem;
}
.hero-badges { animation-delay: .28s; }

/* Hero h1 — profundidade extra na sombra */
.hero h1 {
  text-shadow: 0 22px 58px rgba(0,0,0,.38), 0 0 70px rgba(20,65,150,.1);
}

/* Botão primário — shimmer ao hover */
.btn.primary::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -120%; width: 60%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-15deg);
  transition: left .55s ease;
}
.btn.primary:hover::after { left: 160%; }

/* Metric cards */
.metric-card {
  position: relative;
  transition: transform .14s ease, border-color .25s ease;
}
.metric-card::before { display: none; }
[data-tilt].metric-card {
  transform: perspective(640px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
[data-tilt].metric-card:hover {
  border-color: rgba(20,65,150,.30);
  box-shadow: 0 26px 64px rgba(20,65,150,.16);
}

/* Segment cards — hover via CSS puro, sem tilt JS */

.analysis-band { position: relative; }

/* Novos keyframes */
@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 7px rgba(255,240,0,.7), 0 0 14px rgba(255,240,0,.28); }
  50% { opacity: .42; box-shadow: 0 0 3px rgba(255,240,0,.18); }
}

/* Prefers-reduced-motion — desliga novos efeitos */
@media (prefers-reduced-motion: reduce) {
  .hero-scan::before, .hero-scan::after { animation: none !important; opacity: 0 !important; }
  .hero .eyebrow::before { animation: none !important; }
  [data-tilt].metric-card { transform: none !important; }
  .segment-card img { transition: none; }
  .seg-body p, .seg-cta { max-height: none !important; opacity: 1 !important; margin-top: 6px !important; }
  .seg-accent { display: none; }
  .btn.primary::after { display: none; }
}


