/* ============================================================
   Advogado do Passageiro — Ruana de Melo
   Design: "Painel de Embarque Editorial"
   Navy profundo + dourado sóbrio + mono de aviação
   ============================================================ */

:root {
  /* Paleta */
  --navy-950: #070F1F;
  --navy-900: #0B1830;
  --navy-solid: #122344;
  --navy-700: #1B3158;
  --gold: #C9A22B;
  --gold-bright: #E8C15A;
  --gold-soft: #F3E7C2;
  --paper: #F6F4EE;
  --white: #FFFFFF;
  --ink: #16202F;
  --ink-soft: #4E5A6E;
  --line: #E4E0D4;
  --line-dark: rgba(232, 193, 90, 0.18);
  --status-red: #E5533D;
  --status-green: #4CAF7A;
  --wa: #25D366;

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Archivo', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1180px;
  --r-sm: 8px;
  --r-md: 14px;
  --shadow-sm: 0 2px 10px rgba(11, 24, 48, 0.07);
  --shadow-md: 0 10px 30px rgba(11, 24, 48, 0.12);
  --shadow-lg: 0 24px 60px rgba(7, 15, 31, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

/* ---------- Utilitários de texto ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  margin: 14px 0 16px;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
}

.gold-i { font-style: italic; color: var(--gold); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 17px 28px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  min-height: 52px;
}

.btn:active { transform: scale(0.98); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-950);
}

.btn-gold:hover {
  background: var(--gold-bright);
  box-shadow: 0 8px 24px rgba(201, 162, 43, 0.35);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-color: var(--navy-solid);
  color: var(--navy-solid);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--navy-solid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}

.btn-wa:hover {
  background: #1FBE5B;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(7, 15, 31, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow 0.3s ease;
}

.site-head.scrolled { box-shadow: var(--shadow-lg); }

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.brand-text { line-height: 1.2; }

.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-logo { height: 36px; width: auto; display: block; }
.site-foot .brand-logo { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover { color: var(--gold-bright); }

.nav-links .btn { padding: 12px 20px; min-height: 44px; font-size: 14px; }

/* Dropdown de serviços */
.has-drop { position: relative; }

.has-drop > a { display: inline-flex; align-items: center; gap: 6px; }

.has-drop .caret { transition: transform 0.25s ease; flex-shrink: 0; }

.has-drop:hover .caret,
.has-drop:focus-within .caret { transform: rotate(180deg); }

.drop {
  list-style: none;
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #0A1426;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: var(--shadow-lg);
  z-index: 20;
}

.drop::before {
  /* ponte invisível para o hover não quebrar no vão */
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  height: 26px;
}

.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.drop a.drop-link {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.drop a.drop-link:hover {
  background: rgba(232, 193, 90, 0.09);
  color: var(--gold-bright);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 78% -10%, rgba(201, 162, 43, 0.13), transparent 60%),
    var(--navy-950);
  color: var(--white);
  padding: 158px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  /* trilha de voo pontilhada atravessando o hero */
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: 46%;
  border-top: 2px dashed rgba(232, 193, 90, 0.10);
  transform: rotate(-4deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 18px 0 20px;
}

.hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-note {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero--photo {
  background:
    linear-gradient(97deg, rgba(7, 15, 31, 0.97) 32%, rgba(7, 15, 31, 0.88) 65%, rgba(7, 15, 31, 0.78)),
    url('/assets/images/ruana-perfil-aviao.webp') center 18% / cover no-repeat,
    var(--navy-950);
}

/* ---------- Painel de embarque (assinatura) ---------- */
.board {
  background: #050B17;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: var(--font-mono);
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(201, 162, 43, 0.10);
  border-bottom: 1px solid var(--line-dark);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.board-head .live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.board-head .live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: pulse 1.6s infinite;
}

.board-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 10px 20px 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.board-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  align-items: center;
  padding: 13px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13.5px;
}

.board-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.board-chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.chip-red { background: rgba(229, 83, 61, 0.16); color: #FF8A76; border: 1px solid rgba(229, 83, 61, 0.4); }
.chip-amber { background: rgba(232, 193, 90, 0.14); color: var(--gold-bright); border: 1px solid rgba(232, 193, 90, 0.4); }

.board-right {
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.board-right::before { content: "→"; color: rgba(255, 255, 255, 0.35); }

.board-foot {
  padding: 13px 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.board-foot strong { color: var(--gold-bright); font-weight: 600; }

/* ---------- Faixa de confiança ---------- */
.trust-strip {
  background: var(--navy-solid);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 26px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}

.trust-item svg { flex-shrink: 0; }

/* ---------- Seções ---------- */
.section { padding: 96px 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--navy-950); color: var(--white); }
.section--dark .section-lead { color: rgba(255, 255, 255, 0.72); }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .section-lead { margin: 0 auto; }
.section-head--center .eyebrow::before { display: none; }

/* ---------- Cartões de embarque (serviços) ---------- */
.bpass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bpass {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.bpass:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.bpass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.bpass-code {
  font-weight: 600;
  color: var(--navy-solid);
  background: var(--gold-soft);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.bpass-body { padding: 16px 20px 20px; flex: 1; }

.bpass h3 {
  font-size: 21px;
  margin-bottom: 8px;
  color: var(--navy-solid);
}

.bpass p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

.bpass-cut {
  border-top: 2px dashed var(--line);
  position: relative;
  margin: 0 -1px;
}

.bpass-cut::before,
.bpass-cut::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
}

.bpass-cut::before { left: -9px; }
.bpass-cut::after { right: -9px; }

.section--paper .bpass-cut::before,
.section--paper .bpass-cut::after { background: var(--paper); }

.bpass-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
}

.bpass-cta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s ease;
}

.bpass:hover .bpass-cta { color: var(--navy-solid); }

.bpass-barcode {
  width: 64px;
  height: 22px;
  background: repeating-linear-gradient(
    90deg,
    var(--navy-solid) 0 2px,
    transparent 2px 4px,
    var(--navy-solid) 4px 5px,
    transparent 5px 8px,
    var(--navy-solid) 8px 11px,
    transparent 11px 13px
  );
  opacity: 0.55;
}

/* ---------- Como funciona (passos) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: passo;
}

.step {
  position: relative;
  padding-top: 24px;
}

.step::before {
  counter-increment: passo;
  content: "0" counter(passo);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy-950);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 5px;
  position: absolute;
  top: -18px;
  left: 0;
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 62px;
  right: -14px;
  border-top: 2px dashed rgba(232, 193, 90, 0.35);
}

.step:last-child::after { display: none; }

.step h3 { font-size: 20px; margin-bottom: 10px; color: var(--gold-bright); }

.step p { font-size: 15px; color: rgba(255, 255, 255, 0.72); line-height: 1.6; }

/* ---------- Escada de assistência (Res. 400) ---------- */
.ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ladder-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ladder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.ladder-time {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--navy-solid);
  display: block;
  margin-bottom: 4px;
}

.ladder-time small {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.ladder-card h3 { font-size: 20px; margin: 12px 0 8px; color: var(--navy-solid); }

.ladder-card p { font-size: 15px; color: var(--ink-soft); }

.legal-ref {
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  background: var(--navy-950);
  border-radius: var(--r-md);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  pointer-events: none;
}

.about-visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual--photo::before { z-index: 1; }

.about-monogram {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.about-visual .oab {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.about-text h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 14px 0 18px; }

.about-text p { color: var(--ink-soft); margin-bottom: 16px; }

.about-points { list-style: none; margin: 26px 0 32px; }

.about-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-weight: 500;
  color: var(--ink);
}

.about-points li::before {
  content: "✈";
  color: var(--gold);
  flex-shrink: 0;
  transform: rotate(-45deg);
  font-size: 15px;
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-solid);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--gold); }

.faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- CTA final ---------- */
.cta-final {
  background:
    radial-gradient(ellipse 700px 400px at 20% 110%, rgba(201, 162, 43, 0.15), transparent 60%),
    var(--navy-950);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-final h2 { font-size: clamp(30px, 4vw, 46px); margin: 16px 0 18px; }

.cta-final p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 18px;
}

.cta-final .hero-ctas { justify-content: center; }

.cta-photo {
  background:
    linear-gradient(rgba(7, 15, 31, 0.84), rgba(7, 15, 31, 0.92)),
    url('/assets/images/ruana-perfil-aviao.webp') center 28% / cover no-repeat,
    var(--navy-950);
}

/* ---------- Reels (vídeos verticais) ---------- */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 940px;
  margin: 0 auto;
}

.reel-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #050B17;
  border: 1px solid var(--line);
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-md);
}

.reel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-cap {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
}

/* ---------- Galeria do escritório ---------- */
.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.office-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

/* ---------- Retrato no hero do sobre ---------- */
.sobre-portrait img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: block;
  margin-left: auto;
}

/* ---------- Foto no card CTA das LPs ---------- */
.svc-cta-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 8px;
  margin-bottom: 18px;
}

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 { font-size: 24px; color: var(--navy-solid); margin-bottom: 22px; }

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}

.contact-row:last-of-type { border-bottom: none; }

.contact-row svg { flex-shrink: 0; margin-top: 2px; }

.contact-row strong { display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-family: var(--font-mono); margin-bottom: 3px; }

.contact-row a { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-row a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 420px;
}

.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-foot {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  border-top: 2px solid var(--gold);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}

.foot-brand p { font-size: 14.5px; margin-top: 16px; max-width: 300px; }

.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  font-weight: 600;
}

.foot-col ul { list-style: none; }

.foot-col li { margin-bottom: 11px; }

.foot-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.foot-col a:hover { color: var(--gold-bright); }

.foot-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
}

.foot-legal a { color: var(--gold-bright); text-decoration: none; }
.foot-legal a:hover { text-decoration: underline; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 950;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}

.wa-float:hover { transform: scale(1.08); }

.wa-float svg { width: 32px; height: 32px; }

/* ---------- Páginas de serviço ---------- */
.svc-hero {
  background:
    radial-gradient(ellipse 800px 420px at 85% -20%, rgba(201, 162, 43, 0.14), transparent 60%),
    var(--navy-950);
  color: var(--white);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}

.svc-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 18%;
  border-top: 2px dashed rgba(232, 193, 90, 0.10);
  transform: rotate(-3deg);
  pointer-events: none;
}

.svc-hero--photo {
  background:
    linear-gradient(97deg, rgba(7, 15, 31, 0.96) 32%, rgba(7, 15, 31, 0.85) 62%, rgba(7, 15, 31, 0.72)),
    url('/assets/images/aeroporto-janela.webp') center 62% / cover no-repeat,
    var(--navy-950);
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { color: var(--gold-bright); }

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.svc-hero h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  margin: 16px 0 18px;
  letter-spacing: -0.01em;
}

.svc-hero .hero-sub { margin-bottom: 28px; }

.svc-ticket {
  background: #050B17;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 26px;
  font-family: var(--font-mono);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.svc-ticket::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(232, 193, 90, 0.25);
  border-radius: 8px;
  pointer-events: none;
}

.svc-ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-ticket-row:last-child { border-bottom: none; }

.svc-ticket-row .k { color: rgba(255, 255, 255, 0.45); letter-spacing: 0.1em; text-transform: uppercase; font-size: 10.5px; padding-top: 2px; }

.svc-ticket-row .v { color: var(--gold-bright); font-weight: 600; text-align: right; letter-spacing: 0.04em; }

.svc-ticket-row .v.red { color: #FF8A76; }

/* Corpo da página de serviço */
.svc-body { padding: 88px 0; }

.svc-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}

.svc-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy-solid);
  margin: 42px 0 16px;
}

.svc-content h2:first-child { margin-top: 0; }

.svc-content p { color: var(--ink-soft); margin-bottom: 16px; }

.svc-content strong { color: var(--ink); }

.rights-list { list-style: none; margin: 22px 0; }

.rights-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 10px;
  font-size: 15.5px;
  color: var(--ink);
}

.rights-list li::before {
  content: "✓";
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.svc-aside { position: sticky; top: 100px; }

.svc-cta-card {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-dark);
}

.svc-cta-card .eyebrow { margin-bottom: 12px; }

.svc-cta-card h3 { font-size: 24px; margin-bottom: 12px; }

.svc-cta-card p { color: rgba(255, 255, 255, 0.72); font-size: 15px; margin-bottom: 22px; }

.svc-cta-card .btn { width: 100%; }

.svc-cta-card .btn + .btn { margin-top: 12px; }

.svc-aside-note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ---------- Blog ---------- */
.blog-hero {
  background: var(--navy-950);
  color: var(--white);
  padding: 150px 0 64px;
  text-align: center;
}

.blog-hero h1 { font-size: clamp(30px, 4vw, 46px); margin: 14px 0 14px; }

.blog-hero p { color: rgba(255, 255, 255, 0.72); max-width: 560px; margin: 0 auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 70px 0;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }

.blog-card-body { padding: 22px; flex: 1; }

.blog-card-date {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card h3 { font-size: 19px; color: var(--navy-solid); margin: 8px 0 8px; }

.blog-card p { font-size: 14.5px; color: var(--ink-soft); }

.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* ---------- Post de blog ---------- */
.post-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 150px 22px 10px;
  text-align: center;
}

.post-header h1 { font-size: clamp(28px, 3.8vw, 42px); color: var(--navy-solid); margin: 14px 0 12px; }

.post-meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: center;
  gap: 12px;
}

.post-hero-img { max-width: 800px; margin: 30px auto 0; padding: 0 22px; }

.post-hero-img img { border-radius: var(--r-md); width: 100%; box-shadow: var(--shadow-md); }

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 22px 70px;
  font-size: 17.5px;
}

.post-body h2 { font-size: 27px; color: var(--navy-solid); margin: 38px 0 14px; }
.post-body h3 { font-size: 21px; color: var(--navy-solid); margin: 30px 0 12px; }
.post-body p { color: var(--ink-soft); margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px 24px; color: var(--ink-soft); }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--ink); }
.post-body a { color: var(--gold); }
.post-body img { border-radius: var(--r-sm); margin: 10px 0 18px; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  background: var(--paper);
  padding: 16px 22px;
  margin: 0 0 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
}

.post-cta {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 34px 30px;
  margin: 44px 0 30px;
  text-align: center;
  border: 1px solid var(--line-dark);
}

.post-cta h3 { color: var(--gold-bright); margin: 0 0 10px; font-size: 23px; }
.post-cta p { color: rgba(255, 255, 255, 0.75); margin-bottom: 20px; }

.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  background: var(--paper);
}

.author-box .ab-ic {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--navy-solid);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.author-box strong { display: block; color: var(--navy-solid); }
.author-box span { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Animações de entrada ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .bpass-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .step:nth-child(2)::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .svc-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 420px; aspect-ratio: 16 / 10; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .svc-cols { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }

  .burger { display: block; }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 22px 26px;
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: -1;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  /* Dropdown vira lista aninhada no drawer mobile */
  .has-drop { position: static; }
  .has-drop .caret { display: none; }

  .drop {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 18px;
    min-width: 0;
  }

  .drop::before { display: none; }

  .drop a.drop-link {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    white-space: normal;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links li { width: 100%; }

  .nav-links a:not(.btn) {
    display: block;
    padding: 15px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links .btn { margin-top: 16px; width: 100%; }

  .hero { padding: 130px 0 64px; }
  .hero-ctas .btn { width: 100%; }

  .trust-inner { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .trust-item { justify-content: flex-start; padding: 8px 0; }

  .board-cols { display: none; }

  .board-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 18px;
  }

  .board-right { padding-left: 2px; }

  .bpass-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; row-gap: 44px; }
  .step::after { display: none; }

  .ladder { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .foot-grid { grid-template-columns: 1fr; gap: 32px; }

  .foot-legal { flex-direction: column; text-align: center; }

  .blog-grid { grid-template-columns: 1fr; padding: 48px 0; }

  .reels-grid { grid-template-columns: 1fr; max-width: 340px; }

  .office-grid { grid-template-columns: repeat(2, 1fr); }

  .sobre-portrait img { margin: 0 auto; }

  .brand-logo { height: 28px; }
  .site-foot .brand-logo { height: 34px; }

  .svc-hero { padding: 122px 0 54px; }

  .wa-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 15px; }
  .brand-tag { font-size: 9px; }
  .hero h1 { font-size: 31px; }
  .section-title { font-size: 27px; }
}
