/* ================================
   GRUPO ZOLET — Apple-style site
   Paleta: preto/branco/lima
   Tipografia: DM Sans
   Motion: scroll-driven + reveal
================================ */

:root {
  --black:       #0A0A0A;
  --black-2:     #111111;
  --ink:         #0A0A0A;
  --text:        #0A0A0A;
  --muted:       #5C5F66;
  --line:        #E4E4E4;
  --bg:          #F1F1F1;
  --bg-soft:     #FFFFFF;
  --bg-dark:     #0A0A0A;
  --lime:        #CAFF01;
  --lime-deep:   #B6E600;

  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow:      0 16px 48px rgba(10, 10, 10, 0.10);
  --shadow-sm:   0 4px 18px rgba(10, 10, 10, 0.05);
  --container:   1200px;

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

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

/* === Tipografia === */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6.8vw, 92px); font-weight: 700; }
h2 { font-size: clamp(30px, 4.4vw, 56px); }
h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--lime); border-radius: 50%;
}
.eyebrow--light { color: rgba(255,255,255,.7); }
.eyebrow--light::before { background: var(--lime); }

.lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55; color: var(--muted);
  max-width: 580px;
}
.lead--light { color: rgba(255,255,255,.75); }
.br-desk { display: inline; }
@media (max-width: 640px) { .br-desk { display: none; } }

.hl { color: var(--lime); }
.hl-lime { color: var(--lime); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 18px 32px; font-size: 16px; }

.btn--primary { background: var(--lime); color: var(--ink); }
.btn--primary:hover { background: var(--lime-deep); box-shadow: 0 12px 30px rgba(202, 255, 1, .35); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--lime-deep); box-shadow: 0 12px 30px rgba(202, 255, 1, .35); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1a1a1a; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--bg); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

/* === Topbar === */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.topbar__inner {
  display: flex; gap: 24px; align-items: center;
  justify-content: flex-end;
  height: 38px;
}
.topbar__item--cta { color: var(--lime); font-weight: 600; }

/* === Header === */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241, 241, 241, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(241, 241, 241, 0.92);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 120px;
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo img { height: 96px; width: auto; }

.nav { display: flex; gap: 32px; }
.nav a {
  font-weight: 500; font-size: 15px; color: var(--ink);
  position: relative;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--muted); }

.header__cta { padding: 12px 20px; }
.header__burger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.header__burger span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* === HERO === */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('assets/hero-truck.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(1.05);
  transform: scale(1.05);
  will-change: transform, opacity;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.55) 60%, rgba(10,10,10,.92) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
}
.hero__content { max-width: 880px; }
.hero h1 {
  color: #fff;
  letter-spacing: -0.035em;
  margin: 22px 0 22px;
}
.hero h1 .hl { display: block; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.04em;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}
.badge::before {
  content: ""; width: 6px; height: 6px;
  background: var(--lime); border-radius: 50%;
}
.hero .lead { color: rgba(255,255,255,.82); max-width: 580px; font-size: 18px; }
.hero__ctas { display: flex; gap: 12px; margin: 32px 0 40px; flex-wrap: wrap; }
.hero__stats {
  list-style: none; display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 28px; max-width: 580px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-size: 36px; font-weight: 600; color: var(--lime); line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stats span { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 6px; }

.hero__visual {
  display: grid; place-items: center;
  position: relative;
}
.hero__card {
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid; place-items: center;
  text-align: center;
  box-shadow: 0 30px 90px rgba(202, 255, 1, .25);
  position: relative;
  transform: rotate(-6deg);
  font-weight: 600;
}
.hero__card-num {
  position: absolute; top: 18%; font-size: clamp(64px, 7vw, 96px);
  font-weight: 700; line-height: 1; letter-spacing: -0.04em;
}
.hero__card-text {
  position: absolute; bottom: 18%;
  font-weight: 600; letter-spacing: 0.06em;
  font-size: 12.5px; line-height: 1.45;
}

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.55);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--lime), transparent);
  animation: cueLine 2s var(--ease) infinite;
}
@keyframes cueLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === Marquee (tarja em movimento) === */
.marquee {
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: relative;
}
.marquee__track {
  display: flex; align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--ink);
  text-transform: uppercase;
}
.marquee__sep {
  font-size: 8px;
  color: var(--ink);
  opacity: 0.45;
}
@media (max-width: 640px) {
  .marquee { padding: 10px 0; }
  .marquee__item { font-size: 13px; }
  .marquee__track { gap: 16px; animation-duration: 30s; }
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* === Section base === */
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--dark  { background: var(--ink); color: #fff; }
.section--lime  { background: var(--lime); color: var(--ink); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--lime h2  { color: var(--ink); }
.section__head { max-width: 880px; margin: 0 auto 64px; text-align: center; }
.section__head h2 { margin-bottom: 16px; }
.section__head p { color: var(--muted); font-size: clamp(16px, 1.3vw, 19px); margin: 0 auto; }
.section__head--light p { color: rgba(255,255,255,.72); }
.section__foot { text-align: center; margin-top: 56px; }

.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* === Sobre / heritage === */
.heritage {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
}
.heritage__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.heritage__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.heritage__media:hover img { transform: scale(1.04); }

/* === Features === */
.features {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px; margin: 0 auto;
}
.features li {
  display: flex; gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.features li:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.features strong { display: block; color: var(--ink); margin-bottom: 6px; font-size: 17px; font-weight: 600; }
.features p { color: var(--muted); font-size: 15px; line-height: 1.5; }
.check {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--lime); color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
}

/* === Carrossel base === */
.carousel {
  position: relative;
}
.carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
}
.carousel__btns {
  display: flex; gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.carousel__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  display: grid; place-items: center;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.carousel__btn:hover { background: var(--lime); border-color: var(--lime); transform: translateY(-2px); }
.carousel__btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.section--dark .carousel__btn { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #fff; }
.section--dark .carousel__btn:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.carousel__dots {
  display: flex; gap: 6px;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}
.carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  transition: background .2s var(--ease), width .2s var(--ease);
  cursor: pointer;
  border: 0; padding: 0;
}
.section--dark .carousel__dot { background: rgba(255,255,255,.22); }
.carousel__dot--active { background: var(--lime); width: 22px; border-radius: 999px; }

@media (max-width: 980px) {
  .carousel__track > * { flex: 0 0 calc((100% - 18px) / 2); }
}
@media (max-width: 640px) {
  .carousel__track > * { flex: 0 0 86%; }
}

/* === Cards (linha de serviços) === */
.cards {
  /* Carousel container — keep var name backward-compat */
}
.card {
  background: var(--black-2);
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-6px); }
.card__img {
  height: 280px;
  background-size: cover; background-position: center;
  position: relative;
  transition: transform .8s var(--ease);
}
.card:hover .card__img { transform: scale(1.06); }
.card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,.85) 100%);
}
.card__body {
  padding: 26px 26px 28px;
  position: relative;
}
.card__body h3 {
  font-size: 22px; font-weight: 600;
  margin-bottom: 8px; color: #fff;
}
.card__body p { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 16px; line-height: 1.5; }
.card__link {
  color: var(--lime); font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s var(--ease);
}
.card__link:hover { gap: 12px; }

/* === Frota showcase (sticky scroll) === */
.showcase {
  position: relative;
}
.showcase__sticky {
  position: sticky; top: 120px;
  height: calc(100vh - 120px);
  display: flex; align-items: center;
  overflow: hidden;
}
.showcase__media {
  position: absolute; inset: 0;
}
.showcase__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}
.showcase__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,.7) 100%);
}
.showcase__content {
  position: relative; z-index: 2; color: #fff;
  text-align: center;
  width: 100%;
}
.showcase__content h2 { color: #fff; margin-bottom: 16px; }
.showcase__content p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 28px; font-size: 18px; }

/* === Authority === */
.authority { text-align: center; max-width: 980px; margin: 0 auto; }
.authority h2 { margin: 16px 0 18px; }
.authority__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 56px 0 40px;
}
.authority__grid > div {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 32px 18px;
  border-radius: var(--radius-lg);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.authority__grid > div:hover {
  border-color: var(--lime);
  background: rgba(202, 255, 1, .04);
}
.authority__grid strong {
  display: block; font-size: clamp(36px, 4.2vw, 56px); font-weight: 600;
  color: var(--lime); line-height: 1; letter-spacing: -0.02em;
}
.authority__grid span {
  display: block; margin-top: 10px;
  color: rgba(255,255,255,.7); font-size: 14px;
}

/* === Missão · Visão · Valores === */
.mvv {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mvv__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.mvv__card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.mvv__card--values { background: var(--ink); color: #fff; border-color: var(--ink); }
.mvv__card--values:hover { border-color: var(--lime); box-shadow: 0 16px 48px rgba(202,255,1,.15); }
.mvv__tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 20px;
}
.mvv__card p { font-size: 16px; line-height: 1.6; color: var(--ink); }
.mvv__card--values .mvv__tag { background: var(--lime); color: var(--ink); }
.mvv__values {
  list-style: none;
  display: grid; gap: 12px;
}
.mvv__values li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.mvv__values li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--lime);
  border-radius: 4px;
}
@media (max-width: 980px) {
  .mvv { grid-template-columns: 1fr; }
}

/* === CTA Trabalhe Conosco === */
.careers-cta-section { padding-top: 0; padding-bottom: clamp(72px, 10vw, 140px); }
.careers-cta {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 72px);
  color: #fff;
  isolation: isolate;
}
.careers-cta__bg {
  position: absolute; inset: 0;
  background-image: url('assets/truck-green.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: saturate(1.05);
  transition: transform 1.2s var(--ease);
}
.careers-cta:hover .careers-cta__bg { transform: scale(1.04); }
.careers-cta__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.7) 50%, rgba(10,10,10,.55) 100%),
    radial-gradient(circle at 110% 50%, rgba(202,255,1,.12), transparent 50%);
  z-index: -1;
}
.careers-cta__content { max-width: 720px; }
.careers-cta__content h2 { color: #fff; margin: 16px 0 14px; }
.careers-cta__content p {
  color: rgba(255,255,255,.85);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  margin-bottom: 28px;
}
.careers-cta__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .careers-cta { padding: 48px 26px; border-radius: 22px; }
}

/* === Why === */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why__item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.why__item:hover { transform: translateY(-6px); border-color: var(--ink); }
.why__num {
  display: inline-block;
  font-weight: 600; font-size: 13px;
  color: var(--ink); background: var(--lime);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 16px; letter-spacing: 0.06em;
}
.why__item h3 { font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.why__item p { color: var(--muted); font-size: 14.5px; line-height: 1.5; }

/* === Testimonials === */
.rating {
  display: flex; gap: 12px; align-items: center;
  justify-content: center; margin-top: 14px; color: var(--muted);
  font-size: 14px;
}
.stars { color: var(--lime); font-size: 18px; letter-spacing: 3px; }
.testimonials { gap: 18px; }
.t {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.t:hover { transform: translateY(-4px); border-color: var(--ink); }
.t p { color: var(--ink); font-size: 17px; line-height: 1.55; font-weight: 500; }
.t footer { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; }
.t strong { color: var(--ink); font-size: 14.5px; font-weight: 600; }
.t span { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* === CTA banda === */
.ctaband {
  display: grid; grid-template-columns: 1.4fr auto;
  gap: 36px; align-items: center;
}
.section--lime h2 { font-size: clamp(24px, 3vw, 40px); }
.section--lime p { color: rgba(10,10,10,.78); margin-top: 8px; font-size: 16px; }

/* === FAQ === */
.faq { max-width: 880px; margin: 0 auto; display: grid; gap: 8px; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 26px;
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: var(--ink); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 500; font-size: 17px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 400; color: var(--ink);
  font-size: 24px; line-height: 1;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq p { padding: 0 0 22px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* === Form === */
.form {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid; gap: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.form label {
  display: flex; flex-direction: column; gap: 6px;
  font-weight: 500; font-size: 13px; color: var(--ink);
}
.form input, .form select, .form textarea {
  font: inherit; font-weight: 400; font-size: 15px;
  padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff;
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(202, 255, 1, .25);
}
.form button { margin-top: 6px; }

.contato-meta {
  margin-top: 28px;
  display: grid; gap: 14px;
  font-size: 14px; color: rgba(255,255,255,.78);
}
.contato-meta strong { color: #fff; display: block; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 2px; }
.contato-meta a { color: var(--lime); }

/* === Footer === */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px; padding-bottom: 56px;
}
.footer__brand img { height: 120px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer h4 {
  color: #fff; font-weight: 500; font-size: 13px;
  margin-bottom: 18px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer a {
  display: block; padding: 5px 0;
  color: rgba(255,255,255,.6);
  font-size: 14.5px;
  transition: color .2s var(--ease);
}
.footer a:hover { color: var(--lime); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer__bottom .container {
  display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; align-items: center;
}
.podium-credit {
  display: inline-flex; align-items: baseline; gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  transition: color .2s var(--ease);
}
.podium-credit strong {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.podium-credit span {
  font-size: 10px;
  opacity: .6;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.podium-credit:hover { color: rgba(255,255,255,.7); }
.podium-credit:hover strong { color: var(--lime); border-color: var(--lime); }
.podium-credit:hover span { transform: translate(2px, -2px); opacity: 1; color: var(--lime); }

/* === Careers hero === */
.careers-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 100px 0 80px;
}
.careers-hero__bg {
  position: absolute; inset: 0;
  background-image: url('assets/truck-green.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: scale(1.05);
}
.careers-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,.65) 60%, rgba(10,10,10,.92) 100%),
    radial-gradient(circle at 110% 50%, rgba(202,255,1,.08), transparent 60%);
}
.careers-hero__inner {
  position: relative; z-index: 2;
}
.careers-hero__content { max-width: 820px; }
.careers-hero__content h1 {
  color: #fff; letter-spacing: -0.035em;
  margin: 22px 0 22px;
  font-size: clamp(36px, 5.6vw, 78px);
}
.careers-hero__content .lead {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  max-width: 620px;
}
.careers-hero__content .hero__ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* === Steps === */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.steps__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.steps__item:hover { transform: translateY(-4px); border-color: var(--ink); }
.steps__num {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--lime); color: var(--ink);
  border-radius: 50%;
  font-size: 22px; font-weight: 700;
  margin-bottom: 18px;
}
.steps__item h3 { font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.steps__item p { color: var(--muted); font-size: 15px; line-height: 1.55; }
@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr; }
}

/* === Careers form === */
.careers-form .form__row { display: grid; gap: 14px; }
.careers-form .form__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) {
  .careers-form .form__row--2 { grid-template-columns: 1fr; }
}
.careers-form button[type="submit"] { margin-top: 8px; }
.form__note {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: 4px;
}

/* === File upload === */
.file-upload {
  display: flex; flex-direction: column; gap: 6px;
  font-weight: 500; font-size: 13px; color: var(--ink);
}
.file-upload input[type="file"] {
  position: absolute; left: -9999px;
  opacity: 0; width: 1px; height: 1px;
}
.file-upload__field {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.file-upload:hover .file-upload__field {
  border-color: var(--ink);
  background: #fff;
}
.file-upload__icon { font-size: 18px; }
.file-upload__text {
  flex: 1;
  font-weight: 400; font-size: 14.5px;
  color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.file-upload__text--filled { color: var(--ink); font-weight: 500; }
.file-upload__btn {
  font-size: 13px; font-weight: 600;
  padding: 6px 12px;
  background: var(--ink); color: #fff;
  border-radius: 8px;
}
.file-upload:focus-within .file-upload__field {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(202, 255, 1, .25);
}

/* Active nav state */
.nav a.active { color: var(--ink); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--lime);
}

/* === WhatsApp float === */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px; font-weight: 600;
  box-shadow: 0 16px 40px rgba(202,255,1,.4);
  z-index: 60;
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* === Scroll reveal motion ===
   Only hide when JS is on (.js class on <html>).
   Without JS, content stays visible — progressive enhancement. */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.js .reveal--in {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal--lg {
  transform: translateY(80px);
  transition-duration: 1.4s;
}
.js .reveal--lg.reveal--in { transform: translateY(0); }

/* Stagger children */
.stagger > * { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--lg, .hero__bg, .card__img, .heritage__media img {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  html { scroll-behavior: auto; }
  .scroll-cue::after { animation: none; }
}

/* === Responsivo === */
@media (max-width: 980px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { order: -1; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .heritage { grid-template-columns: 1fr; gap: 36px; }
  .features { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .authority__grid { grid-template-columns: repeat(2, 1fr); }
  .ctaband { grid-template-columns: 1fr; text-align: center; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .showcase__sticky { height: 80vh; }
}

@media (max-width: 640px) {
  .topbar__item:not(.topbar__item--cta):first-child { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .header__inner { height: 84px; }
  .header__logo img { height: 64px; }
  .section { padding: 64px 0; }
  .cards { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .authority__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .hero__stats strong { font-size: 28px; }
  .form { padding: 26px; }

  /* Mobile menu drawer */
  .nav {
    position: fixed;
    top: 84px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 49;
    overflow-y: auto;
  }
  .nav--open {
    transform: translateX(0);
    box-shadow: 0 -10px 40px rgba(0,0,0,.08);
  }
  .nav a {
    width: 100%;
    padding: 18px 0;
    font-size: 22px;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  body.menu-open { overflow: hidden; }
  .header__burger { z-index: 51; position: relative; }
  .header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header__burger.is-open span:nth-child(2) { opacity: 0; }
  .header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header__burger span { transition: transform .25s var(--ease), opacity .2s var(--ease); transform-origin: center; }
}
@media (min-width: 641px) {
  .nav { display: flex !important; }
}
