/* ═══════════════════════════════════════
   NEXUS TRANSFER — style.css
   Redesign para conversão Google Ads
═══════════════════════════════════════ */

:root {
  --gold: #c89b3c;
  --gold-light: #e0b44a;
  --gold-dim: rgba(200,155,60,0.15);
  --gold-border: rgba(200,155,60,0.25);
  --bg: #000000;
  --bg2: #060606;
  --bg3: #0a0a0a;
  --card: #0d0d0d;
  --border: rgba(255,255,255,0.06);
  --text: #ffffff;
  --muted: #999999;
  --muted2: #666666;
  --danger: #e03c3c;
  --danger-dim: rgba(224,60,60,0.08);
  --success: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: 'Montserrat', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }
ul { list-style: none; }

/* ── NAVBAR RIGHT GROUP ── */
.nav-right { display: flex; align-items: center; gap: 14px; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  cursor: pointer; border: none;
  transition: .2s; background: transparent;
  color: #777; letter-spacing: 0.5px;
}
.lang-active { background: var(--gold) !important; color: #000 !important; }
.lang-inactive { background: transparent; color: #666; }
.lang-btn:hover:not(.lang-active) { color: #ccc; }

/* ── FLEET ARMORED CARD ── */
.fleet-grid { grid-template-columns: repeat(4, 1fr); }
.fleet-card-armored { border-color: rgba(200,155,60,0.3); }
.fleet-card-armored:hover { border-color: var(--gold); }
.fleet-img-wrap { position: relative; }
.fleet-armored-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #000;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
}
.fleet-tag-armored { color: var(--gold-light); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; line-height: .92; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.center-label { display: block; text-align: center; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 { font-size: clamp(34px, 4vw, 56px); }
.section-sub { margin-top: 14px; font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 560px; }
.section-header.center .section-sub { margin: 14px auto 0; }
.gold-line { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #000;
  padding: 16px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 800;
  transition: .25s; cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.2); color: var(--text);
  padding: 16px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: .25s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-large { padding: 20px 36px; font-size: 15px; }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 84px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: .3s;
}
.navbar.scrolled { background: rgba(0,0,0,0.97); box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.nav-logo img { width: 210px; }
.nav-menu { display: flex; gap: 28px; }
.nav-menu a { font-size: 13px; font-weight: 600; color: #ccc; letter-spacing: 0.3px; transition: .2s; }
.nav-menu a:hover { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 800;
  transition: .2s;
}
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 84px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/images/embarque-noturno.webp') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.45) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 60px 5% 40px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,155,60,0.12);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero h1 { font-size: clamp(48px, 6.5vw, 88px); max-width: 780px; }
.hero h1 em { color: var(--gold); font-style: normal; display: block; }
.hero-sub {
  margin-top: 22px;
  font-size: 15px; line-height: 1.8;
  color: #bbb; max-width: 500px;
}
.hero-sub strong { color: #fff; }
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust-row { margin-top: 32px; display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: #ccc;
}
.trust-pill i { color: var(--gold); font-size: 11px; }

/* FORMULÁRIO HERO */
.hero-form {
  background: rgba(8,8,8,0.95);
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(20px);
}
.form-header { margin-bottom: 24px; }
.form-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.form-header h3 { font-family: 'Bebas Neue'; font-size: 28px; margin-bottom: 4px; }
.form-header p { font-size: 13px; color: var(--muted); }
.quote-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.5px; }
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  transition: .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(200,155,60,0.5);
  background: rgba(200,155,60,0.05);
}
.form-group select option { background: #111; }
.btn-form {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--success); color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 800;
  border: none; cursor: pointer;
  transition: .25s; margin-top: 4px;
}
.btn-form:hover { background: #20ba5a; transform: translateY(-2px); }
.btn-form i { font-size: 18px; }
.form-note { font-size: 11px; color: var(--muted2); text-align: center; }

/* STATS BAR */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: rgba(200,155,60,0.08);
  border-top: 1px solid rgba(200,155,60,0.2);
  padding: 20px 5%;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 36px; }
.stat-num { font-family: 'Bebas Neue'; font-size: 30px; color: var(--gold); line-height: 1; }
.stat-label { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; font-weight: 600; margin-top: 2px; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ════════════════════════════════════
   TRUST STRIP
════════════════════════════════════ */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 18px 28px;
  font-size: 12px; font-weight: 600; color: #bbb;
  border-right: 1px solid var(--border);
  transition: .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold); font-size: 14px; }
.trust-item:hover { color: var(--gold); background: var(--gold-dim); }

/* ════════════════════════════════════
   SOBRE
════════════════════════════════════ */
.about { padding: 100px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
}
.about-img-col { position: relative; }
.about-main-img {
  border-radius: 20px;
  height: 520px; object-fit: cover;
  filter: brightness(.95);
}
.about-content h2 { font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 0; }
.about-content p { font-size: 15px; line-height: 1.85; color: #ccc; margin-bottom: 20px; }
.about-content p strong { color: #fff; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.feat {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.feat i { color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.feat strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.feat span { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ════════════════════════════════════
   DIFERENCIAIS
════════════════════════════════════ */
.diff-section { padding: 100px 0; background: var(--bg2); }
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.diff-card { border-radius: 20px; padding: 40px; }
.diff-card.positive {
  background: rgba(200,155,60,0.06);
  border: 1px solid rgba(200,155,60,0.2);
}
.diff-card.negative {
  background: var(--danger-dim);
  border: 1px solid rgba(224,60,60,0.15);
}
.diff-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: 3px;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.positive-tag { background: rgba(200,155,60,0.15); color: var(--gold); border: 1px solid rgba(200,155,60,0.3); }
.negative-tag { background: rgba(224,60,60,0.12); color: #ff6060; border: 1px solid rgba(224,60,60,0.25); }
.diff-card h3 { font-size: 26px; margin-bottom: 24px; }
.diff-card.positive h3 { color: var(--gold); }
.diff-card.negative h3 { color: #ff6060; }
.diff-card ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: #ccc; line-height: 1.55;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.diff-card ul li:last-child { border-bottom: none; }
.diff-card.positive li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.diff-card.negative li i { color: #ff6060; margin-top: 2px; flex-shrink: 0; }

/* ════════════════════════════════════
   FULL IMAGE
════════════════════════════════════ */
.full-image-section {
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.full-image-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}
.full-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.92) 32%,
    rgba(0,0,0,0.50) 52%,
    rgba(0,0,0,0.0) 70%
  );
}
.full-image-content {
  position: absolute;
  left: 5%; top: 50%;
  transform: translateY(-50%);
  max-width: 480px; z-index: 2;
}
.full-image-content h2 { font-size: clamp(32px, 3.8vw, 56px); margin-bottom: 20px; }
.full-image-content p { font-size: 15px; line-height: 1.75; color: #bbb; margin-bottom: 32px; }

/* ════════════════════════════════════
   COMODIDADES
════════════════════════════════════ */
.amenities-section { padding: 100px 0; background: var(--bg3); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px; max-width: 1200px; margin: 0 auto;
}
.amenity-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 18px;
  text-align: center;
  transition: .3s;
}
.amenity-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.amenity-icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.amenity-icon i { color: var(--gold); font-size: 20px; }
.amenity-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.amenity-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ════════════════════════════════════
   SERVIÇOS
════════════════════════════════════ */
.services-section { padding: 100px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: .35s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-border); }
.service-img-wrap { position: relative; overflow: hidden; height: 190px; }
.service-img-wrap img { height: 100%; object-fit: cover; transition: .5s; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: .3s;
}
.service-card:hover .service-overlay { opacity: 1; }
.service-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  padding: 12px 24px; border-radius: 8px;
  font-size: 13px; font-weight: 800;
}
.service-body { padding: 22px; }
.service-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gold); display: block; margin-bottom: 8px; }
.service-body h3 { font-family: 'Bebas Neue'; font-size: 22px; margin-bottom: 10px; }
.service-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.service-destinations { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.service-destinations span {
  font-size: 10px; font-weight: 700; color: var(--gold);
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  padding: 3px 10px; border-radius: 100px;
}

/* ════════════════════════════════════
   FROTA
════════════════════════════════════ */
.fleet-section { padding: 100px 0; background: var(--bg2); }
.fleet-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: .35s;
  display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-6px); border-color: var(--gold-border); }
.fleet-img-wrap { height: 230px; overflow: hidden; }
.fleet-img-wrap img { height: 100%; object-fit: cover; transition: .5s; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.05); }
.fleet-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.fleet-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gold); display: block; margin-bottom: 8px; }
.fleet-body h3 { font-family: 'Bebas Neue'; font-size: 26px; margin-bottom: 10px; }
.fleet-body p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.fleet-specs { display: flex; flex-direction: column; gap: 8px; margin: 18px 0; }
.fleet-specs span { font-size: 12px; color: #bbb; display: flex; align-items: center; gap: 8px; }
.fleet-specs i { color: var(--gold); width: 14px; }
.btn-fleet {
  display: block; text-align: center;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 12px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  transition: .25s;
}
.btn-fleet:hover { background: var(--gold); color: #000; }

/* ════════════════════════════════════
   COMO FUNCIONA
════════════════════════════════════ */
.how-section { padding: 100px 0; }
.how-grid {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.how-card {
  flex: 1; min-width: 160px; max-width: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px; text-align: center;
  transition: .3s;
}
.how-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.how-num {
  font-family: 'Bebas Neue'; font-size: 52px;
  color: var(--gold); line-height: .9; opacity: .2;
  margin-bottom: 16px;
}
.how-card h4 { font-family: 'Bebas Neue'; font-size: 20px; margin-bottom: 8px; }
.how-card p { font-size: 12px; color: var(--muted); line-height: 1.55; }
.how-arrow {
  display: flex; align-items: center; padding: 0 8px;
  color: var(--gold); font-size: 16px; opacity: .4;
  margin-top: -20px;
}

/* ════════════════════════════════════
   PAGAMENTOS
════════════════════════════════════ */
.payments-section { padding: 100px 0; background: var(--bg2); }
.payments-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; max-width: 1000px; margin: 0 auto 28px;
}
.payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 26px; text-align: center;
  transition: .3s; position: relative;
}
.payment-card:hover { transform: translateY(-4px); border-color: var(--gold-border); }
.payment-card.featured {
  border-color: rgba(200,155,60,0.35);
  background: rgba(200,155,60,0.05);
}
.pay-icon { font-size: 32px; color: var(--gold); margin-bottom: 14px; }
.payment-card h4 { font-family: 'Bebas Neue'; font-size: 26px; margin-bottom: 10px; }
.payment-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.pay-badge {
  display: inline-block;
  background: var(--gold); color: #000;
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 100px;
  margin-top: 14px;
}
.no-prepay-banner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  background: rgba(200,155,60,0.08);
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: 14px;
  padding: 20px 32px;
}
.no-prepay-banner i { color: var(--gold); font-size: 20px; }
.no-prepay-banner strong { font-size: 16px; font-family: 'Bebas Neue'; letter-spacing: 1px; }
.no-prepay-banner span { font-size: 13px; color: var(--muted); }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq-section { padding: 100px 0; }
.faq-grid { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
}
.faq-item.open { border-color: var(--gold-border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; color: var(--text);
  padding: 22px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-align: left; gap: 16px;
  transition: .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; transition: .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 22px; }
.faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ════════════════════════════════════
   CTA SECTION
════════════════════════════════════ */
.cta-section {
  padding: 90px 0; position: relative;
  border-top: 1px solid rgba(200,155,60,0.15);
  border-bottom: 1px solid rgba(200,155,60,0.15);
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,155,60,0.07) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(34px, 4vw, 54px); }
.cta-text p { font-size: 15px; color: var(--muted); margin-top: 10px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════════
   HOLDING
════════════════════════════════════ */
.holding-section {
  padding: 70px 5%; text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.holding-section h2 {
  font-family: 'Bebas Neue';
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--muted); margin: 10px 0 8px;
}
.holding-brand {
  font-family: 'Bebas Neue';
  font-size: clamp(44px, 6vw, 76px);
  color: var(--gold); letter-spacing: 2px;
  display: inline-block; transition: .25s;
}
.holding-brand:hover { opacity: .8; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer { background: #020202; border-top: 1px solid var(--border); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding: 70px 5% 50px;
  border-bottom: 1px solid var(--border);
  max-width: 1280px; margin: 0 auto;
}
.footer-logo { width: 170px; margin-bottom: 22px; }
.footer-tagline { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.footer-location, .footer-cnpj { font-size: 12px; color: #444; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.footer-location i, .footer-cnpj i { color: var(--gold); }
.footer-col h4 { font-family: 'Bebas Neue'; font-size: 14px; letter-spacing: 2px; color: var(--gold); margin-bottom: 18px; }
.footer-col p { font-size: 13px; color: #777; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-col p i { color: var(--gold); width: 14px; }
.footer-col p a { color: #999; transition: .2s; }
.footer-col p a:hover { color: var(--gold); }
.footer-note { font-size: 11px; color: #444; margin-top: 8px; }
.footer-socials { display: flex; flex-direction: column; gap: 10px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: 8px; padding: 10px 18px;
  font-size: 12px; font-weight: 600; color: #999;
  transition: .25s;
}
.social-btn i { color: var(--gold); }
.social-btn:hover { background: var(--gold); color: #000; }
.social-btn:hover i { color: #000; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  padding: 22px 5%;
  font-size: 11px; color: #333;
}
.footer-bottom a { color: #444; transition: .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════
   WHATSAPP FLUTUANTE
════════════════════════════════════ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--success); color: #fff;
  padding: 14px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 800;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: .3s;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
}
.wa-float.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.3); }
.wa-float i { font-size: 20px; }

/* ════════════════════════════════════
   RESPONSIVIDADE — DESKTOP/TABLET
════════════════════════════════════ */
@media (max-width: 1100px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form { max-width: 520px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: #000; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 5%; font-size: 15px; border-bottom: 1px solid var(--border); }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); max-width: none; margin: 0; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { gap: 12px; }
  .how-arrow { display: none; }
  .how-card { max-width: none; min-width: 140px; }
  .payments-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 28px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 46px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; flex-wrap: wrap; justify-content: space-around; }
  .stat { padding: 0 16px; }
  .stat-div { display: none; }
  .trust-strip { flex-direction: column; align-items: flex-start; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; width: 100%; }
  .how-grid { flex-direction: column; align-items: center; }
  .how-card { width: 100%; max-width: none; }
  .full-image-content {
    position: relative; top: auto; left: auto;
    transform: none; padding: 40px 5%;
    max-width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
  }
  .full-image-bg { min-height: 280px; object-fit: cover; }
  .about-feats { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   MOBILE REFINADO — baseado em prints reais
   Breakpoint 900px: ajuste global de seções
════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about, .diff-section, .amenities-section,
  .services-section, .fleet-section, .how-section,
  .payments-section, .faq-section, .cta-section {
    padding: 64px 0;
  }
  .trust-item { padding: 14px 5%; }
  .footer-top { padding: 48px 5% 36px; }
  .cta-actions { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════
   BREAKPOINT 768px — celulares em portrait
════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-right { gap: 8px; }
  .lang-toggle { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }

  /* HERO */
  .hero-inner { grid-template-columns: 1fr; padding: 80px 5% 32px; gap: 32px; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-sub { font-size: 14px; }
  .hero-form { max-width: 100%; padding: 24px 20px; border-radius: 16px; padding-bottom: 28px; }
  .hero-form, .btn-form { position: relative; z-index: 10; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; padding: 14px 20px; }
  .trust-pill { font-size: 11px; padding: 5px 11px; }

  /* STATS */
  .hero-stats { padding: 16px 5%; justify-content: space-around; }
  .stat { padding: 8px 12px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 9px; }

  /* FAIXA EXCLUSIVA — fix crítico */
  .full-image-section { flex-direction: column; }
  .full-image-bg { width: 100%; height: 260px; object-fit: cover; object-position: center; display: block; flex-shrink: 0; }
  .full-image-overlay { display: none; }
  .full-image-content {
    position: relative !important; top: auto !important; left: auto !important;
    transform: none !important; max-width: 100%;
    padding: 36px 5%; background: #000; z-index: 1;
  }
  .full-image-content .section-label { display: block; margin-bottom: 12px; }
  .full-image-content h2 { font-size: clamp(26px, 7vw, 38px); margin-bottom: 16px; line-height: 1; }
  .full-image-content p { font-size: 14px; line-height: 1.7; color: #bbb; margin-bottom: 28px; }
  .full-image-content .btn-primary { width: 100%; justify-content: center; }

  /* DIFERENCIAIS */
  .diff-card { padding: 28px 22px; }
  .diff-card ul li { font-size: 13px; padding: 10px 0; }

  /* COMODIDADES — forçar 2 colunas */
  .amenities-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .amenity-card { padding: 20px 12px; }
  .amenity-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .amenity-icon i { font-size: 18px; }
  .amenity-card h4 { font-size: 13px; margin-bottom: 6px; }
  .amenity-card p { font-size: 11px; line-height: 1.5; }

  /* SERVIÇOS */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-img-wrap { height: 160px; }

  /* FROTA */
  .fleet-grid { grid-template-columns: 1fr; gap: 18px; }
  .fleet-img-wrap { height: 200px; }
  .fleet-body { padding: 22px 22px 24px; }
  .btn-fleet { position: relative; z-index: 5; margin-bottom: 8px; }

  /* COMO FUNCIONA */
  .how-grid { flex-direction: column; align-items: stretch; gap: 12px; padding: 0 5%; }
  .how-card {
    max-width: none; min-width: 0;
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px; text-align: left;
  }
  .how-num { font-size: 36px; margin-bottom: 0; flex-shrink: 0; line-height: 1; opacity: 0.25; }
  .how-card h4 { margin-bottom: 4px; }

  /* PAGAMENTOS */
  .payments-grid { grid-template-columns: 1fr; max-width: 100%; padding: 0 5%; margin-bottom: 20px; }
  .payment-card { padding: 24px 20px; }
  .pay-icon { font-size: 26px; margin-bottom: 10px; }
  .payment-card h4 { font-size: 22px; margin-bottom: 8px; }
  .payment-card p { font-size: 13px; line-height: 1.55; }
  .no-prepay-banner { flex-direction: column; text-align: center; gap: 6px; padding: 18px 16px; margin: 0 5%; }
  .no-prepay-banner strong { font-size: 18px; }
  .no-prepay-banner span { font-size: 12px; }

  /* FAQ */
  .faq-grid { padding: 0 5%; }
  .faq-question { font-size: 14px; padding: 18px 18px; }

  /* CTA */
  .cta-section { padding-bottom: 80px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; gap: 12px; width: 100%; padding-bottom: 16px; }
  .cta-actions .btn-primary, .cta-actions .btn-secondary { width: 100%; justify-content: center; padding: 16px 20px; }

  /* HOLDING */
  .holding-section { padding: 44px 5%; }
  .holding-section h2 { font-size: clamp(20px, 5vw, 28px); margin: 8px 0 6px; }
  .holding-brand { font-size: clamp(40px, 12vw, 60px); }

  /* FOOTER */
  .footer-col p { overflow-wrap: break-word; word-break: break-word; white-space: normal; font-size: 12px; }
  .footer-col { width: 100%; }
  .footer-top { padding: 36px 5% 28px; gap: 28px; }
  .footer-logo { width: 140px; }
  .footer-socials { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .social-btn { flex: 1; min-width: 120px; justify-content: center; padding: 10px 14px; }

  /* WA FLOAT — circular, não obstrui conteúdo */
  .wa-float { right: 16px; bottom: 20px; width: 52px; height: 52px; padding: 0; border-radius: 50%; justify-content: center; align-items: center; }
  .wa-float span { display: none; }
  .wa-float i { font-size: 26px; margin: 0; }

  /* SOBRE */
  .about { padding: 52px 0; }
  .about-content h2 { font-size: clamp(28px, 8vw, 42px); margin-bottom: 4px; }

  /* SECTION HEADERS */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(26px, 7.5vw, 40px); }

  /* ÂNCORAS COM NAVBAR FIXA */
  #sobre, #diferenciais, #solucoes, #frota, #faq, #contato { scroll-margin-top: 84px; }
}

/* ════════════════════════════════════════════════════
   BREAKPOINT 480px — iPhones menores
════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .lang-toggle { display: none !important; }
  .nav-cta { padding: 8px 12px; font-size: 11px; gap: 6px; }
  .nav-logo img { width: 150px; }

  .hero h1 { font-size: clamp(34px, 10vw, 46px); }
  .hero-badge { font-size: 9px; letter-spacing: 2px; padding: 6px 14px; }

  /* STATS 2x2 */
  .hero-stats { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(200,155,60,0.2); padding: 0; }
  .stat { background: #000; padding: 16px 10px; text-align: center; }
  .stat-div { display: none !important; }
  .stat:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(200,155,60,0.2); padding: 12px 10px; }
  .stat:last-child .stat-num { font-size: 16px; }
  .stat:last-child .stat-label { font-size: 10px; letter-spacing: 0.5px; }

  /* ABOUT */
  .about-feats { grid-template-columns: 1fr; }
  .section-label { font-size: 10px; letter-spacing: 3px; }

  /* DIFF */
  .diff-card { padding: 22px 16px; }

  /* COMODIDADES menores */
  .amenity-card { padding: 18px 10px; }
  .amenity-icon { width: 42px; height: 42px; }
  .amenity-card h4 { font-size: 12px; }
  .amenity-card p { font-size: 11px; }

  /* FOOTER */
  .footer-top { padding: 36px 5% 28px; gap: 28px; }
  .footer-logo { width: 140px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 18px 5%; }
}
