/* ==========================================================================
   BLACK TIE TRANSFER EXECUTIVO — FOLHA DE ESTILOS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & VARIÁVEIS
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores */
  --preto:         #0A0A0A;
  --preto-carvao:  #141414;
  --grafite:       #1E1E1E;
  --grafite-claro: #2A2A2A;
  --dourado:       #C9A227;
  --dourado-claro: #E8C766;
  --champanhe:     #F0E6D2;
  --branco-suave:  #F5F5F5;
  --cinza-texto:   #9A9A9A;
  --vermelho-erro: #C9524F;

  /* Tipografia */
  --font-titulo: 'Playfair Display', serif;
  --font-corpo: 'Inter', sans-serif;

  /* Espaçamentos */
  --secao-padding: 160px;
  --secao-padding-mobile: 80px;

  /* Easing */
  --ease-suave: cubic-bezier(.16,1,.3,1);
  --ease-rapido: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: auto; overflow-x: hidden; width: 100%; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background: var(--preto);
  color: var(--branco-suave);
  font-family: var(--font-corpo);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Textura de grain sutil sobre todo o site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   2. TIPOGRAFIA GERAL
   -------------------------------------------------------------------------- */
h1, h2, h3 { font-family: var(--font-titulo); font-weight: 600; line-height: 1.1; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--branco-suave);
  margin-bottom: 20px;
  max-width: 720px;
}

.section-lead {
  color: var(--cinza-texto);
  max-width: 560px;
  font-size: 1.05rem;
  margin-bottom: 48px;
}

section { padding: var(--secao-padding-mobile) 0; position: relative; }
@media (min-width: 1024px) {
  section { padding: var(--secao-padding) 0; }
}

/* Vinheta radial dourada difusa reutilizável */
.frota, .diferenciais, .contato {
  background: var(--preto-carvao);
}
.frota::before, .diferenciais::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,162,39,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   3. BOTÕES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: transform .4s var(--ease-suave), box-shadow .4s var(--ease-suave), background .3s, color .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  color: var(--preto);
  box-shadow: 0 10px 30px -10px rgba(201,162,39,.5);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -10px rgba(201,162,39,.65);
}

.btn-outline {
  background: transparent;
  color: var(--branco-suave);
  border: 1px solid rgba(240,230,210,.3);
}
.btn-outline:hover {
  border-color: var(--dourado);
  color: var(--dourado-claro);
}

/* Shine sweep no hover */
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease-suave);
}
.btn:hover::after { left: 130%; }

/* --------------------------------------------------------------------------
   4. BARRA DE PROGRESSO DE LEITURA
   -------------------------------------------------------------------------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  z-index: 9999;
  transition: width .1s linear;
}

/* --------------------------------------------------------------------------
   5. CURSOR CUSTOMIZADO
   -------------------------------------------------------------------------- */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--dourado);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-suave), height .25s var(--ease-suave), background .25s, border-color .25s;
  mix-blend-mode: difference;
}
.custom-cursor.cursor-active {
  width: 44px; height: 44px;
  background: var(--dourado);
}
@media (hover: none), (pointer: coarse) {
  .custom-cursor { display: none; }
}

/* --------------------------------------------------------------------------
   6. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--preto);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo { width: min(320px, 70vw); }
.preloader-text {
  font-family: var(--font-titulo);
  font-size: 42px;
  fill: none;
  stroke: var(--dourado);
  stroke-width: 1;
  letter-spacing: 4px;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}
.preloader-line {
  stroke: var(--dourado);
  stroke-width: 1;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
}
.curtain {
  position: fixed;
  inset: 0;
  background: var(--preto);
  z-index: 10000;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   7. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: background .4s var(--ease-rapido), backdrop-filter .4s, border-color .4s, transform .4s var(--ease-suave), padding .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,.25);
  padding: 14px 0;
}
.site-header.hide { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img {
  height: 74px;
  width: auto;
  transition: height .4s, filter .4s;
  /* leve sombra + contraste pra ganhar definição e "vida" sobre o fundo da hero */
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.5)) contrast(1.08) saturate(1.1);
}
.site-header.scrolled .logo-img { height: 58px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav ul {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.main-nav ul a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--dourado);
  transition: width .35s var(--ease-suave);
}
.main-nav ul a:hover::after { width: 100%; }
.main-nav ul a:hover { color: var(--dourado-claro); }

.nav-cta { padding: 12px 26px; font-size: .75rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  min-height: 44px;
  z-index: 600;
}
.menu-toggle span {
  height: 1px;
  background: var(--branco-suave);
  transition: transform .3s, opacity .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--preto);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform .5s var(--ease-suave);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: center; gap: 28px; }
  /* padding vertical garante alvo de toque confortável (~44px) sem alterar o tamanho visual do texto */
  .main-nav ul a { font-size: 1.3rem; display: inline-block; padding: 12px 0; }
  .main-nav ul li { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-suave), transform .5s var(--ease-suave); }
  .main-nav.open ul li { opacity: 1; transform: translateY(0); }
  .menu-toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.hero-media {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.12) translateY(-1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.35) 30%, rgba(10,10,10,.88) 85%, var(--preto) 100%),
              linear-gradient(90deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.35) 45%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 110px;
  padding-top: 180px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1.05;
  color: var(--branco-suave);
  max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
  /* compensa o padding-bottom de cada .line (folga para descendentes) para não abrir espaço extra antes do subtítulo */
  margin-bottom: -.18em;
}
/* padding-bottom generoso: dá folga suficiente para descendentes (g, ç, p, q, j, y) do Playfair Display
   não serem cortados pela máscara overflow:hidden usada no reveal do GSAP */
.hero-title .line { display: block; overflow: hidden; padding-bottom: .18em; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

.hero-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--dourado), transparent);
  margin: 28px 0 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--champanhe);
  max-width: 44ch;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 46px;
}

.hero-credibility {
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--cinza-texto);
  max-width: 640px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-indicator span {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--dourado), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--dourado-claro);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
.scroll-indicator p {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cinza-texto);
}

/* --------------------------------------------------------------------------
   9. FROTA
   -------------------------------------------------------------------------- */
.frota-carousel-wrap { position: relative; }
.frota-swiper { padding-bottom: 50px; }
/* Garante altura igual entre os cards de uma mesma linha do carrossel */
.frota-swiper .swiper-slide { height: auto; display: flex; }

.fleet-card {
  background: var(--grafite);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .5s var(--ease-suave), border-color .5s, box-shadow .5s;
  height: 100%;
  /* Sem isso, o height:100% (herdado do stretch do carrossel) não chega até o botão —
     o espaço extra ficava sobrando abaixo do conteúdo em vez de ser distribuído pelo flex interno. */
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,162,39,.55);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}

/* Placeholder — reaproveitado onde ainda não houver foto real disponível */
.placeholder-block {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(150deg, var(--grafite-claro), var(--preto-carvao));
  color: rgba(201,162,39,.5);
  overflow: hidden;
}
.placeholder-block span {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cinza-texto);
  text-align: center;
  padding: 0 16px;
}
.fleet-card:hover .placeholder-block svg { transform: scale(1.08); }
.placeholder-block svg { transition: transform .6s var(--ease-suave); }

/* Foto real da frota */
.fleet-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--preto-carvao);
  flex-shrink: 0;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-suave);
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.08); }

.fleet-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.fleet-card-body h3 {
  font-size: 1.2rem;
  color: var(--branco-suave);
  margin-bottom: 3px;
}
.fleet-tag {
  font-size: .7rem;
  font-style: italic;
  color: var(--cinza-texto);
  margin-bottom: 6px;
}
.fleet-models {
  color: var(--dourado);
  font-size: .78rem;
  margin-bottom: 8px;
}
.fleet-description {
  font-size: .84rem;
  color: var(--cinza-texto);
  line-height: 1.5;
  margin-bottom: 12px;
  /* Limita a 2 linhas — evita que a variação natural do tamanho do texto entre categorias estufe o card */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fleet-specs li {
  font-size: .82rem;
  color: var(--cinza-texto);
  padding: 5px 0;
  border-top: 1px solid rgba(240,230,210,.08);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--ease-suave), transform .4s var(--ease-suave);
}
.fleet-card:hover .fleet-specs li { opacity: 1; transform: translateY(0); }
.fleet-specs li:nth-child(1) { transition-delay: .05s; }
.fleet-specs li:nth-child(2) { transition-delay: .1s; }
.fleet-specs li:nth-child(3) { transition-delay: .15s; }

/* Chips de equipamentos — compactos; a altura varia com a quantidade, mas o botão
   continua alinhado entre os cards graças ao flex-column + margin-top:auto do .fleet-card-btn */
.fleet-equip {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0 14px;
}
.fleet-equip li {
  font-size: .62rem;
  letter-spacing: .01em;
  color: var(--dourado-claro);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: 20px;
  padding: 3px 9px;
}

/* Botão fica sempre colado na base do card, mesmo com descrições/listas de tamanhos diferentes */
.fleet-card-btn {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  font-size: .74rem;
  padding-left: 20px;
  padding-right: 20px;
}

/* Setas de navegação sobrepostas, centralizadas verticalmente ao carrossel */
.fleet-prev, .fleet-next {
  position: absolute;
  top: 50%;
  transform: translateY(-60%); /* leve compensação: o carrossel tem paginação abaixo, então o centro visual do bloco de cards fica um pouco acima do centro geométrico */
  z-index: 10;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,162,39,.45);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--dourado);
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(4px);
  transition: background .3s, color .3s, opacity .3s;
}
.fleet-prev { left: -8px; }
.fleet-next { right: -8px; }
.fleet-prev:hover, .fleet-next:hover { background: var(--dourado); color: var(--preto); }
.fleet-prev.swiper-button-disabled, .fleet-next.swiper-button-disabled {
  opacity: .3;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .fleet-prev { left: -23px; }
  .fleet-next { right: -23px; }
}

/* No mobile, o toque/arraste já é a interação primária: some com as setas para não ocupar espaço sobre os cards */
@media (max-width: 767px) {
  .fleet-prev, .fleet-next { display: none; }
}

.cortesias {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  justify-content: center;
  padding-top: 36px;
  border-top: 1px solid rgba(201,162,39,.15);
}
.cortesias li {
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--champanhe);
  position: relative;
  padding-left: 18px;
}
.cortesias li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--dourado);
}

/* --------------------------------------------------------------------------
   10. SERVIÇOS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  /* Colunas fixas por breakpoint (não auto-fit) — com 6 cards, auto-fit podia sobrar
     célula vazia na última linha dependendo da largura exata do container. */
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.15);
}
.service-card {
  background: var(--preto);
  padding: 44px 36px;
  transition: background .4s var(--ease-rapido);
}
.service-card:hover { background: var(--grafite); }
.service-icon { color: var(--dourado); margin-bottom: 24px; }
.service-card h3 {
  font-size: 1.2rem;
  color: var(--branco-suave);
  margin-bottom: 12px;
}
.service-card p { color: var(--cinza-texto); font-size: .92rem; }

/* --------------------------------------------------------------------------
   11. DIFERENCIAIS + NÚMEROS
   -------------------------------------------------------------------------- */
.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 56px 0 96px;
  padding: 48px 0;
  border-top: 1px solid rgba(201,162,39,.2);
  border-bottom: 1px solid rgba(201,162,39,.2);
}
.number-item { text-align: center; }
.number-value {
  display: block;
  font-family: var(--font-titulo);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--dourado-claro);
  line-height: 1;
  margin-bottom: 10px;
}
.number-label {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cinza-texto);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px 40px;
}
.diff-index {
  display: block;
  font-family: var(--font-titulo);
  color: var(--dourado);
  font-size: 1rem;
  margin-bottom: 12px;
  opacity: .7;
}
.diff-item h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--branco-suave); }
.diff-item p { color: var(--cinza-texto); font-size: .92rem; }

/* --------------------------------------------------------------------------
   12. AVALIAÇÕES
   -------------------------------------------------------------------------- */
.reviews-swiper { padding-bottom: 50px; }
.review-card {
  background: var(--grafite);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: 4px;
  padding: 40px 34px;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.review-quote {
  font-family: var(--font-titulo);
  font-size: 3.2rem;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 8px;
}
.review-text {
  color: var(--champanhe);
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: 20px;
}
.review-stars { color: var(--dourado); letter-spacing: 2px; margin-bottom: 10px; font-size: .9rem; }
.review-author { color: var(--cinza-texto); font-size: .8rem; letter-spacing: .03em; }

/* --------------------------------------------------------------------------
   13. CONTATO / FORMULÁRIO / FAQ
   -------------------------------------------------------------------------- */
/* Colunas de .form-row são definidas de forma mobile-first no bloco 18 (Responsividade) */
.contato-form-wrap { max-width: 720px; margin: 0 auto; }

.contato-form { margin-top: 32px; }
.form-row {
  display: grid;
  gap: 20px;
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cinza-texto);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--grafite);
  border: 1px solid rgba(240,230,210,.14);
  color: var(--branco-suave);
  padding: 14px 16px;
  border-radius: 2px;
  transition: border-color .3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--dourado);
}
.form-field.error input,
.form-field.error select,
.form-field.error textarea { border-color: var(--vermelho-erro); }
.field-error {
  display: block;
  min-height: 16px;
  font-size: .74rem;
  color: var(--vermelho-erro);
  margin-top: 6px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.form-success {
  margin-top: 20px;
  color: var(--dourado-claro);
  font-size: .9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease-suave), transform .5s var(--ease-suave);
}
.form-success.visible { opacity: 1; transform: translateY(0); }

.faq { max-width: 760px; }
.faq-item { border-top: 1px solid rgba(240,230,210,.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(240,230,210,.1); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  text-align: left;
  font-size: .95rem;
  color: var(--branco-suave);
}
.faq-icon {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--dourado);
  transition: transform .35s var(--ease-suave);
}
.faq-icon::before { top: 6px; left: 0; width: 14px; height: 1px; }
.faq-icon::after { top: 0; left: 6px; width: 1px; height: 14px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-suave);
}
.faq-answer p {
  padding-bottom: 18px;
  color: var(--cinza-texto);
  font-size: .9rem;
}

/* --------------------------------------------------------------------------
   14. RODAPÉ
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--preto-carvao);
  border-top: 1px solid rgba(201,162,39,.2);
  padding-top: 90px;
}
/* Colunas de .footer-inner são definidas de forma mobile-first no bloco 18 (Responsividade) */
.footer-inner {
  display: grid;
  padding-bottom: 60px;
}
.footer-logo { height: 48px; margin-bottom: 16px; }
.footer-brand p { color: var(--cinza-texto); font-size: .88rem; max-width: 32ch; }
.footer-nav h4, .footer-contato h4 {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 20px;
}
.footer-contato ul li {
  padding: 6px 0;
  font-size: .88rem;
  color: var(--cinza-texto);
}
/* padding no próprio link (não só no <li>) garante alvo de toque real de ~44px */
.footer-nav ul li a {
  display: block;
  padding: 10px 0;
  font-size: .88rem;
  color: var(--cinza-texto);
}
.footer-nav ul li a:hover { color: var(--dourado-claro); }
.footer-social { margin-top: 20px; display: flex; gap: 12px; }
.social-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  transition: background .3s, color .3s;
}
.social-icon:hover { background: var(--dourado); color: var(--preto); }

.footer-bottom {
  border-top: 1px solid rgba(240,230,210,.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: var(--cinza-texto);
}
.footer-legal-nav {
  display: flex;
  gap: 20px;
}
.footer-legal-nav a {
  font-size: .78rem;
  color: var(--cinza-texto);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal-nav a:hover { color: var(--dourado-claro); }

@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* --------------------------------------------------------------------------
   15. WHATSAPP FLUTUANTE
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  color: var(--preto);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  box-shadow: 0 12px 30px -8px rgba(201,162,39,.6);
  opacity: 1;
  transition: opacity .3s var(--ease-suave), transform .3s var(--ease-suave);
}
/* Escondido enquanto a hero está visível: ela já tem seu próprio CTA de WhatsApp,
   e em telas baixas o botão flutuante chegava a sobrepor esse botão. */
.whatsapp-float.hero-visible {
  opacity: 0;
  transform: scale(.7);
  pointer-events: none;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--dourado);
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.9); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--grafite);
  color: var(--branco-suave);
  padding: 8px 14px;
  border-radius: 3px;
  font-size: .78rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* --------------------------------------------------------------------------
   16. REVEAL ON SCROLL (estado inicial; GSAP anima a entrada)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); }

/* --------------------------------------------------------------------------
   17. SWIPER — overrides mínimos
   -------------------------------------------------------------------------- */
.swiper-pagination-bullet {
  background: rgba(240,230,210,.3);
  opacity: 1;
}
.swiper-pagination-bullet-active { background: var(--dourado); }

/* --------------------------------------------------------------------------
   18. RESPONSIVIDADE — MOBILE-FIRST, BREAKPOINTS 480 / 768 / 1024 / 1440
   -------------------------------------------------------------------------- */

/* Base = celular pequeno (<480px). */
.hero-actions { flex-direction: column; }
.hero-actions .btn { width: 100%; justify-content: center; }

/* Evita que o texto de credibilidade fique atrás do botão flutuante do WhatsApp (fixo, canto inferior direito) */
/* Evita que o texto de credibilidade fique atrás do botão flutuante do WhatsApp (fixo, canto inferior direito) */
.hero-credibility { padding-right: 78px; }

.form-row { grid-template-columns: 1fr; }
.form-actions .btn { width: 100%; }

/* Alvos de toque confortáveis (mínimo 44px) em todos os campos e botões interativos */
.form-field input,
.form-field select,
.form-field textarea,
.btn,
.faq-question,
.fleet-prev,
.fleet-next {
  min-height: 44px;
}

/* Botão flutuante do WhatsApp: nunca sobrepõe o rodapé nem sai da viewport */
.whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
.whatsapp-tooltip { display: none; }

.numbers { grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-inner { grid-template-columns: 1fr; gap: 40px; }

/* --- 480px: celular grande --- */
@media (min-width: 480px) {
  /* padding-left/right apenas: usar o shorthand "padding" aqui resetaria o padding-top/bottom
     que .hero-content define para si mesma (mesmo elemento, duas classes: "container hero-content") */
  .container { padding-left: 24px; padding-right: 24px; }
  .whatsapp-tooltip { display: block; }
}

/* --- 768px: tablet retrato --- */
@media (min-width: 768px) {
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .hero-credibility { padding-right: 0; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-actions .btn { width: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* --- 1024px: tablet paisagem / desktop pequeno --- */
@media (min-width: 1024px) {
  .numbers { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- 1440px+: desktop grande --- */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}

/* --------------------------------------------------------------------------
   19. PÁGINAS LEGAIS (Termos de Uso / Política de Privacidade)
   -------------------------------------------------------------------------- */
.legal-hero {
  padding: 160px 0 60px;
  background: radial-gradient(circle at 30% 0%, rgba(201,162,39,.08), transparent 55%), var(--preto);
  border-bottom: 1px solid rgba(201,162,39,.15);
}
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--branco-suave);
  max-width: 18ch;
}
.legal-hero p { color: var(--cinza-texto); margin-top: 16px; font-size: .9rem; }

.legal-content {
  max-width: 760px;
  color: var(--cinza-texto);
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--branco-suave);
  margin: 48px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 0; padding-left: 20px; }
.legal-content li { margin-bottom: 8px; list-style: disc; }
.legal-content strong { color: var(--champanhe); font-weight: 600; }
.legal-content a { color: var(--dourado); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--dourado-claro); }
.legal-updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(240,230,210,.1);
  font-size: .8rem;
  color: var(--cinza-texto);
}

/* --------------------------------------------------------------------------
   20. PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-img { animation: none; }
  .custom-cursor { display: none; }
  .reveal { opacity: 1; transform: none; }
}
