/* ===== HL Rent A Car — base ===== */
:root {
  --red: #D61A1A;
  --black: #111111;
  --white: #FFFFFF;
  --gray-dark: #3A3A3A;
  --gray-metal: #8A8A8A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  background: var(--white);
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 62px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu a {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}
.nav-menu a.active { color: var(--red); }
.nav-menu a:hover { color: var(--red); }
.caret { font-size: 13px; opacity: .7; }

/* Book Now button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}
.btn-book {
  background: var(--red);
  color: var(--white);
  padding: 8px 8px 8px 22px;
}
.btn-book:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(214,26,26,.35); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(120% 90% at 78% 40%, rgba(255,180,120,.28) 0%, rgba(255,140,90,.10) 30%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #4a4550 0%, #2b2730 45%, #141216 78%, #0b0a0c 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,0) 70%);
  z-index: 1;
}

.hero-car {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 60%;
  max-width: 1000px;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 26px;
}
.badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

/* title */
.hero-title {
  font-size: clamp(42px, 5.4vw, 86px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--red);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  margin-bottom: 34px;
}

/* actions */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 12px 12px 12px 28px;
  font-size: 16px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(214,26,26,.4); }
.btn-light {
  background: var(--white);
  color: var(--black);
  padding: 12px 12px 12px 28px;
  font-size: 16px;
}
.btn-light .btn-arrow.dark { background: var(--black); color: var(--white); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.3); }

/* divider */
.hero-divider {
  height: 1px;
  width: 600px;
  max-width: 55%;
  background: linear-gradient(90deg, rgba(255,255,255,.5), rgba(255,255,255,0));
  margin: 54px 0 30px;
}

/* stats */
.hero-stats { display: flex; gap: 66px; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.stat-label { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.7); }

/* ===== RESERVA INSTANTÂNEA ===== */
.booking {
  position: relative;
  z-index: 5;
  margin-top: -66px;
  padding: 0 40px;
}
.booking-card {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.35);
  background: var(--white);
}
.booking-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #b01212 0%, #D61A1A 55%, #e63232 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
}
.bolt { width: 18px; height: 18px; display: inline-flex; }
.bolt svg { width: 100%; height: 100%; }

.booking-form {
  display: flex;
  align-items: stretch;
  background: var(--white);
}
.bk-field {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 22px;
  border-right: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.bk-field.bk-time { flex: 0 0 130px; }
.bk-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #9a9a9a;
}
.bk-input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bk-input input,
.bk-input select {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  width: 100%;
  padding: 0;
}
.bk-input input::placeholder { color: #b8b8b8; font-weight: 500; }
.bk-input.select { position: relative; }
.bk-input select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.bk-caret { color: var(--red); font-size: 16px; font-weight: 700; }
.bk-icon { color: var(--red); width: 18px; height: 18px; flex: 0 0 auto; display: inline-flex; }
.bk-icon svg { width: 100%; height: 100%; }

.bk-submit {
  flex: 0 0 auto;
  margin: 12px 14px;
  padding: 0 34px;
  border: none;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, box-shadow .2s;
}
.bk-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(214,26,26,.4); }

@media (max-width: 900px) {
  .booking { margin-top: -30px; padding: 0 20px; }
  .booking-form { flex-wrap: wrap; }
  .bk-field { flex: 1 1 45%; border-right: none; border-bottom: 1px solid #ececec; }
  .bk-field.bk-time { flex: 1 1 45%; }
  .bk-submit { flex: 1 1 100%; margin: 14px; padding: 14px; }
}

/* ===== CARROSSEL DE MARCAS ===== */
.brands {
  background: #eef0f2;
  padding: 46px 0 54px;
  overflow: hidden;
}
.brands-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.brands-dash {
  width: 34px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.brands-title {
  color: var(--black);
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.brands-track-wrap {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: brands-scroll 32s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }

.brand-logo {
  flex: 0 0 auto;
  width: 150px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: .75;
  transition: opacity .2s, filter .2s;
}
.brand-logo:hover { opacity: 1; }
.brand-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FROTA ===== */
.fleet {
  background: #f4f5f6;
  padding: 76px 0 90px;
}
.fleet-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.fleet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.badge-dark {
  background: #e9eaec;
  border: 1px solid #e0e1e3;
  color: var(--black);
  backdrop-filter: none;
  margin-bottom: 18px;
}
.fleet-title {
  color: var(--black);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
}
.fleet-title .accent { color: var(--red); font-style: italic; }
.fleet-cta { flex: 0 0 auto; }
.btn-arrow.light { background: var(--white); color: var(--black); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.car-card {
  position: relative;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
}
.car-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.1); }

.car-photo {
  aspect-ratio: 16 / 10;
  margin: 14px 14px 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a1b1f, #0e0e10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.car-card:hover .car-photo img { transform: scale(1.06); }
.car-photo span {
  color: #9aa0a6;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.car-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.car-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.car-name { color: var(--black); font-size: 21px; font-weight: 700; letter-spacing: -.3px; }
.car-tag {
  flex: 0 0 auto;
  background: #fdecec;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
}

.car-specs { list-style: none; display: flex; flex-direction: column; gap: 11px; padding-bottom: 18px; border-bottom: 1px solid #eee; }
.car-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a6f75;
  font-size: 15px;
}
.car-specs li strong { color: #3a3f45; font-weight: 600; }
.car-specs svg { width: 18px; height: 18px; color: var(--red); flex: 0 0 auto; }

.car-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.car-price { color: var(--black); font-size: 24px; font-weight: 800; letter-spacing: -.5px; }
.car-price span { font-size: 14px; font-weight: 500; color: #9aa0a6; }
.btn-book-sm {
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  text-align: center;
  transition: transform .15s, box-shadow .2s;
}
.btn-book-sm:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(214,26,26,.35); }

/* card com dois preços (sem / com condutor) */
.car-foot--dual { flex-direction: column; align-items: stretch; gap: 12px; }
.car-foot--dual .price-stack { display: flex; flex-direction: column; gap: 7px; }
.car-foot--dual .price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.car-foot--dual .price-lbl { font-size: 11.5px; font-weight: 700; color: var(--gray-metal); text-transform: uppercase; letter-spacing: .4px; }
.car-foot--dual .car-price { font-size: 20px; }
.car-foot--dual .btn-book-sm { width: 100%; }

.fleet-dots { display: none; }

@media (max-width: 980px) {
  .fleet-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .fleet-head { flex-direction: column; align-items: flex-start; }
}

/* --- frota como carrossel (scroll-snap) no telemóvel, cards claros --- */
@media (max-width: 680px) {
  .fleet-inner { padding: 0 20px; }

  .fleet-grid {
    display: flex;
    grid-template-columns: none;
    max-width: none;
    margin: 0;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .fleet-grid::-webkit-scrollbar { display: none; }

  .car-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }

  /* dots de paginação */
  .fleet-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
  .fleet-dot {
    width: 8px; height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c9ccd0;
    cursor: pointer;
    transition: width .25s, background .25s, border-radius .25s;
  }
  .fleet-dot.active {
    width: 26px;
    border-radius: 999px;
    background: var(--red);
  }
}

/* ===== PREÇÁRIO / TARIFAS / OUTROS SERVIÇOS ===== */
.pricing, .extra-services { background: var(--white); padding: 78px 0 84px; }
.tariffs { background: #f4f5f6; padding: 78px 0 84px; }
.pricing-inner, .tariffs-inner, .extra-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.pricing-head { margin-bottom: 34px; }
.pricing-head .badge-dark { margin-bottom: 16px; }
.pricing-title {
  color: var(--black);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
}
.pricing-title .accent { color: var(--red); font-style: italic; }
.pricing-sub { color: #8a8f95; font-size: 16px; margin-top: 8px; }

.table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid #ececec; }
.price-table { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--white); }
.price-table thead th {
  background: var(--red);
  color: var(--white);
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 14px 22px;
}
.price-table thead th:nth-child(2),
.price-table thead th:nth-child(3) { text-align: right; }
.price-table td {
  padding: 14px 22px;
  font-size: 15px;
  color: #3a3f45;
  border-top: 1px solid #eee;
}
.price-table tbody tr:nth-child(even) { background: #fafafa; }
.price-table td:nth-child(2), .price-table td:nth-child(3) { text-align: right; white-space: nowrap; }
.price-table td.pv { color: var(--red); font-weight: 800; }
.price-table td:first-child { font-weight: 600; color: var(--black); }

.pricing-obs {
  margin-top: 16px;
  color: #9aa0a6;
  font-size: 13px;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* tarifas — 3 colunas */
.tariffs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tariff-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
}
.tariff-h {
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 14px 20px;
}
.tariff-table { width: 100%; border-collapse: collapse; }
.tariff-table td { padding: 11px 20px; font-size: 14px; border-top: 1px solid #f0f0f0; }
.tariff-table tr:first-child td { border-top: none; }
.tariff-table td:first-child { color: #3a3f45; font-weight: 500; }
.tariff-table td:last-child { text-align: right; color: var(--red); font-weight: 700; white-space: nowrap; }
.tariff-table tr:nth-child(even) { background: #fafafa; }

@media (max-width: 900px) {
  .tariffs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 680px) {
  .pricing-inner, .tariffs-inner, .extra-inner { padding: 0 20px; }
}

/* ===== DESTAQUES / FEATURES ===== */
.features {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid #efefef;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 40px;
  border-left: 1px solid #ededed;
}
.feature:first-child { border-left: none; padding-left: 0; }
.feature:last-child { padding-right: 0; }

.feature-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-text h3 {
  color: var(--black);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.feature-text p {
  color: #7a7f85;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .features-inner { grid-template-columns: 1fr; gap: 6px; }
  .feature { border-left: none; padding: 18px 0; border-top: 1px solid #ededed; }
  .feature:first-child { border-top: none; }
}

/* ===== SOBRE ===== */
.about {
  background: var(--white);
  padding: 80px 0 90px;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 70px;
}
.about-top-text .badge-dark { margin-bottom: 22px; }
.about-title {
  color: var(--black);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 30px;
}
.about-title .muted { color: #9aa0a6; font-style: italic; font-weight: 800; }
.about-cta { display: inline-flex; }

.about-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: linear-gradient(135deg, #dfe2e5, #cfd3d7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo span {
  color: #9aa0a6;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.about-photo { overflow: hidden; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-bottom {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-title2 {
  color: var(--black);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.about-title2 .accent { color: var(--red); font-style: italic; }
.about-p {
  color: #7a7f85;
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
}

/* imagem com legenda */
.about-photo-caption {
  position: relative;
  aspect-ratio: 4 / 4.3;
  overflow: hidden;
}
.about-photo-caption > span { position: relative; z-index: 0; }
.about-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,0));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.about-caption p {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}
.phone-pill {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

/* divisor + lista com check */
.about-divider { height: 1px; background: #ececec; margin: 30px 0; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; }
.check {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check svg { width: 15px; height: 15px; }
.about-list h4 { color: var(--black); font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.about-list li > div > p { color: #8a8f95; font-size: 15px; line-height: 1.55; max-width: 480px; }
.about-cta2 { display: inline-flex; }

@media (max-width: 900px) {
  .about-top, .about-bottom { grid-template-columns: 1fr; gap: 32px; }
  .about-bottom-img { order: 2; }
  .about-bottom-text { order: 1; }
}

/* ===== SERVIÇOS ===== */
.services {
  background: var(--white);
  padding: 80px 0 90px;
}
.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.services-head .badge-dark { margin-bottom: 16px; }
.services-title {
  color: var(--black);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
}
.services-title .muted { color: #9aa0a6; font-style: italic; font-weight: 800; }
.services-cta { flex: 0 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: #f4f5f6;
  border-radius: 14px;
  padding: 26px 24px 30px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.08); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { color: var(--black); font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; }
.service-card p { color: #7a7f85; font-size: 15px; line-height: 1.5; }

/* card destacado (vermelho) */
.service-card.is-active { background: var(--red); }
.service-card.is-active .service-icon { color: var(--red); }
.service-card.is-active h3 { color: var(--white); }
.service-card.is-active p { color: rgba(255,255,255,.9); }

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .services-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== COMO FUNCIONA ===== */
.howto {
  background: #0c0c0e;
  padding: 80px 0 90px;
}
.howto-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.howto-head { margin-bottom: 46px; }
.badge-ondark {
  background: #1c1d21;
  border: 1px solid #2a2b30;
  color: var(--white);
  backdrop-filter: none;
  margin-bottom: 22px;
}
.howto-title {
  color: var(--white);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1px;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  position: relative;
  background: linear-gradient(160deg, #1a1b1f 0%, #141418 100%);
  border: 1px solid #26272c;
  border-radius: 16px;
  padding: 28px 24px 30px;
  overflow: hidden;
  /* estado inicial do reveal */
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease, border-color .2s;
}
.step-card.in { opacity: 1; transform: translateY(0); }
.step-card.in:hover { transform: translateY(-4px); border-color: var(--red); }
/* stagger */
.step-card:nth-child(1) { transition-delay: 0s; }
.step-card:nth-child(2) { transition-delay: .12s; }
.step-card:nth-child(3) { transition-delay: .24s; }
.step-card:nth-child(4) { transition-delay: .36s; }

.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.step-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(214,26,26,.45);
  animation: step-pulse 2.4s ease-in-out infinite;
}
@keyframes step-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(214,26,26,.4); }
  50%      { box-shadow: 0 0 32px rgba(214,26,26,.75); }
}
@media (prefers-reduced-motion: reduce) {
  .step-icon, .step-arrow::before { animation: none; }
  .step-card { opacity: 1; transform: none; transition: none; }
}
.step-icon svg { width: 28px; height: 28px; }
/* seta: traços a fluir (marching ants) + ponta sólida */
.step-arrow {
  flex: 1;
  height: 12px;
  position: relative;
  margin: 0 6px;
}
.step-arrow::before {
  content: "";
  position: absolute;
  left: 0; right: 11px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background-image: linear-gradient(90deg, var(--red) 55%, transparent 0);
  background-size: 11px 2px;
  background-repeat: repeat-x;
  opacity: .85;
  animation: arrow-flow .65s linear infinite;
}
.step-arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid var(--red);
}
@keyframes arrow-flow {
  from { background-position: 0 0; }
  to   { background-position: 11px 0; }
}
.step-num {
  flex: 0 0 auto;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #2c2d34;
  line-height: 1;
}

.step-card h3 { color: var(--red); font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: #9a9ba2; font-size: 15px; line-height: 1.55; }

@media (max-width: 1100px) { .howto-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .howto-grid { grid-template-columns: 1fr; } }

/* ===== TESTEMUNHOS ===== */
.reviews { background: #f7f8f9; padding: 80px 0 90px; overflow: hidden; }
.reviews-head { text-align: center; max-width: 1280px; margin: 0 auto 46px; padding: 0 40px; }
.reviews-head .badge-dark { margin-bottom: 18px; }
.reviews-title {
  color: var(--black);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
}
.reviews-title .accent { color: var(--red); font-style: italic; }

.reviews-wall {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  height: 620px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.rev-col { overflow: hidden; }
.rev-track { display: flex; flex-direction: column; will-change: transform; }
.rev-up .rev-track   { animation: rev-up 28s linear infinite; }
.rev-down .rev-track { animation: rev-down 28s linear infinite; }
.rev-col-3 .rev-track { animation-duration: 34s; }
.reviews-wall:hover .rev-track { animation-play-state: paused; }
@keyframes rev-up   { from { transform: translateY(0); }      to { transform: translateY(-50%); } }
@keyframes rev-down { from { transform: translateY(-50%); }   to { transform: translateY(0); } }

.rev-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  margin-bottom: 24px;
}
.rev-card .stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.rev-card p { color: #3a3f45; font-size: 15px; line-height: 1.55; margin-bottom: 18px; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63232, #b01212);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rev-author strong { display: block; color: var(--black); font-size: 15px; }
.rev-author span { color: #8a8f95; font-size: 13px; }

@media (max-width: 900px) {
  .reviews-wall { grid-template-columns: repeat(2, 1fr); }
  .rev-col-3 { display: none; }
}
@media (max-width: 600px) {
  .reviews-wall { grid-template-columns: 1fr; height: 560px; }
  .rev-down { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none; }
}

/* ===== FAQ ===== */
.faq { background: var(--white); padding: 80px 0 90px; }
.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.faq-head .badge-dark { margin-bottom: 20px; }
.faq-title {
  color: var(--black);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
}
.faq-title .accent { color: var(--red); font-style: italic; }

.faq-item { border-bottom: 1px solid #eaeaea; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 19px;
  font-weight: 700;
  color: #6a6f75;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--black); }
.faq-item[open] summary { color: var(--black); }

.faq-icon {
  flex: 0 0 auto;
  position: relative;
  width: 20px;
  height: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--black);
  transition: transform .25s, opacity .2s;
}
.faq-icon::before { left: 0; top: 9px; width: 20px; height: 2px; }        /* traço horizontal */
.faq-icon::after  { left: 9px; top: 0; width: 2px; height: 20px; }        /* traço vertical  */
.faq-item[open] .faq-icon::after { opacity: 0; transform: scaleY(0); }    /* vira "−" */

.faq-a {
  overflow: hidden;
  padding-bottom: 22px;
  animation: faq-open .28s ease;
}
.faq-a p { color: #7a7f85; font-size: 16px; line-height: 1.6; max-width: 640px; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .faq-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ===== DICAS & NOVIDADES ===== */
.blog { background: #f4f5f6; padding: 78px 0 90px; }
.blog-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.blog-head { margin-bottom: 36px; }
.blog-title { color: var(--black); font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -1px; }
.blog-sub { color: #9aa0a6; font-size: 17px; margin-top: 6px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }

.post-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.1); }

.post-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e6e8ea, #d3d6da);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-img > span {
  color: #9aa0a6;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.post-img { overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-video { text-decoration: none; }
.post-video .post-body h3 { color: var(--black); }
.post-img-video {
  background: linear-gradient(135deg, #202024, #0e0e10);
  position: relative;
}
.post-img-video .play {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(214,26,26,.5);
}
.post-img-video .play svg { width: 26px; height: 26px; margin-left: 3px; }

.post-body { padding: 20px 22px 24px; }
.post-cat {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.post-body h3 { color: var(--black); font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: -.3px; }
.post-meta { color: #8a8f95; font-size: 14px; margin-top: 12px; }
.post-meta a { color: var(--red); font-weight: 600; }

/* card com embed do Instagram (Reel) */
.post-embed {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.post-embed:hover { transform: none; box-shadow: none; }
.post-embed .instagram-media {
  min-width: 0 !important;
  margin: 0 auto !important;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ===== CTA BANNER ===== */
.cta-band {
  background:
    linear-gradient(105deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(120% 180% at 85% 120%, rgba(0,0,0,.35), rgba(0,0,0,0) 60%),
    linear-gradient(90deg, #c11515 0%, #D61A1A 55%, #e63030 100%);
  padding: 46px 0;
  position: relative;
  overflow: hidden;
}
/* silhueta subtil de carro no fundo */
.cta-band::after {
  content: "";
  position: absolute;
  right: -4%;
  bottom: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(0,0,0,.18), rgba(0,0,0,0) 70%);
  transform: skewX(-12deg);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-label {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.cta-title {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-arrow-plain { font-size: 16px; }
.cta-btn-light {
  background: var(--white);
  color: var(--black);
  padding: 14px 26px;
  gap: 10px;
}
.cta-btn-dark {
  background: #16161a;
  color: var(--white);
  padding: 14px 26px;
  gap: 10px;
}
.cta-btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.cta-btn-dark:hover  { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.35); }

@media (max-width: 760px) {
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-btn-light, .cta-btn-dark { flex: 1; justify-content: center; }
}

/* ===== RODAPÉ ===== */
.footer { background: #0c0c0e; color: #c7c9ce; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 68px 40px 54px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo { height: 60px; width: auto; display: block; margin-bottom: 20px; }
.footer-tagline { color: #9a9ba2; font-size: 15px; line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: var(--white); font-weight: 600; font-size: 15px; transition: color .2s; }
.footer-social a:hover { color: var(--red); }

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: #9a9ba2;
  font-size: 15px;
  padding: 6px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid #1e1f23; }
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 40px;
  color: #74767c;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-legal-link { color: #9a9ca2; text-decoration: none; white-space: nowrap; }
.footer-legal-link:hover { color: #fff; }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px; padding: 50px 24px 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { padding: 20px 24px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== ANIMAÇÕES (scroll-reveal, hover, navbar) ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, .8, .3, 1), transform .7s cubic-bezier(.16, .8, .3, 1);
}
.reveal.in { opacity: 1; transform: none; }

.navbar { transition: box-shadow .25s ease, background .25s ease; }
.navbar.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .09); }

.post-img { transition: transform .45s ease; }
.post-card:hover .post-img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .car-card:hover .car-photo img,
  .post-card:hover .post-img { transform: none; }
}

/* ===== BOTÃO VER FROTA (abaixo do carrossel) ===== */
.fleet-more { text-align: center; margin-top: 36px; }

/* ===== PÁGINA FROTA ===== */
.subpage .navbar { position: sticky; }

.frota-hero {
  background: linear-gradient(180deg, #f7f8f9, #eef0f2);
  padding: 44px 0 34px;
  border-bottom: 1px solid #e6e8ea;
}
.frota-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.frota-hero .badge-dark { margin-bottom: 16px; }
.frota-h1 { color: var(--black); font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -1px; }
.frota-h1 .accent { color: var(--red); font-style: italic; }
.frota-lead { color: #8a8f95; font-size: 16px; margin-top: 8px; }

.frota-tools {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  flex-wrap: wrap;
}
.frota-search { position: relative; flex: 1; min-width: 240px; max-width: 460px; }
.frota-search svg {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px; color: #9aa0a6;
}
.frota-search input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1px solid #dcdfe2;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.frota-search input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,26,26,.12); }
.frota-sort select {
  padding: 13px 18px;
  border: 1px solid #dcdfe2;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  outline: none;
  color: #3a3f45;
}

.frota-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid #dcdfe2;
  background: #fff;
  color: #555;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: color .18s, background .18s, border-color .18s;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }

.frota-section { background: var(--white); padding: 34px 0 84px; }
.frota-count { max-width: 1280px; margin: 0 auto 22px; padding: 0 40px; color: #8a8f95; font-size: 14px; font-weight: 600; }
.frota-grid { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.frota-empty { display: none; text-align: center; color: #8a8f95; font-size: 16px; padding: 50px 20px; }

@media (max-width: 1050px) { .frota-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
  .frota-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .frota-hero-inner { padding: 0 20px; }
  .frota-count { padding: 0 20px; }
  .frota-tools { flex-direction: column; align-items: stretch; }
  .frota-search { max-width: none; }
}

/* ===== MENU MOBILE (hambúrguer) ===== */
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px; height: 24px;
  position: relative;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 8px 24px 20px;
  box-shadow: 0 22px 30px rgba(0, 0, 0, .1);
}
.mobile-menu a:not(.btn-book) {
  padding: 14px 4px;
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #f2f2f2;
}
.mobile-menu .btn-book { margin-top: 16px; justify-content: center; }
body.nav-open .mobile-menu { display: flex; }

@media (max-width: 1100px) { .nav-toggle { display: inline-flex; } }
@media (min-width: 1101px) { .mobile-menu { display: none !important; } }

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  transition: transform .2s;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .5;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* ===== CONTACTO / DELEGAÇÕES ===== */
.contact { background: #f4f5f6; padding: 78px 0 84px; }
.contact-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.contact .pricing-head { margin-bottom: 34px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: #fff; border: 1px solid #ececec; border-radius: 14px; padding: 20px 22px; }
.contact-card h3 { color: var(--black); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-card h3 span { color: #9aa0a6; font-weight: 600; font-size: 14px; }
.c-addr { color: #7a7f85; font-size: 14px; margin-bottom: 10px; }
.c-line { display: block; color: #3a3f45; font-size: 14px; padding: 3px 0; transition: color .2s; }
.c-line:hover { color: var(--red); }
.c-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
}
.c-wa:hover { filter: brightness(1.05); }
.contact-map { border-radius: 16px; overflow: hidden; border: 1px solid #ececec; min-height: 380px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
  .contact-inner { padding: 0 20px; }
}

/* ===== FORMAS DE PAGAMENTO ===== */
.payments { background: var(--white); padding: 34px 0; border-top: 1px solid #eee; }
.payments-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.payments-label { color: #8a8f95; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.pay-chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pay-chip {
  background: #f4f5f6;
  border: 1px solid #e6e8ea;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #3a3f45;
}
.pay-chip.pay-logo { padding: 8px 16px; display: inline-flex; align-items: center; }
.pay-chip.pay-logo img { height: 26px; width: auto; display: block; }

/* ===== responsive ===== */
@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .hero-car { width: 70%; opacity: .5; bottom: 0; }
}
@media (max-width: 720px) {
  .nav-inner { padding: 0 20px; }

  /* hero deixa de centrar e passa a começar abaixo da navbar */
  .hero {
    align-items: flex-start;
    min-height: auto;
    padding: 96px 0 56px;
  }
  .hero-content { padding: 0 22px; }
  .hero-car { opacity: .28; }

  .badge { font-size: 13px; padding: 8px 15px; margin-bottom: 22px; }
  .hero-title {
    font-size: clamp(34px, 12vw, 52px);
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
  .hero-sub { font-size: 16px; margin-bottom: 26px; }

  .hero-actions { gap: 12px; }
  .btn-primary, .btn-light { font-size: 15px; padding: 11px 11px 11px 22px; }

  .hero-divider { max-width: 90%; margin: 40px 0 26px; }
  .hero-stats { gap: 30px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 13px; }
}
@media (max-width: 420px) {
  .logo-img { height: 44px; }
  .btn-book { font-size: 14px; padding: 7px 7px 7px 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-light { justify-content: space-between; }
  .hero-stats { gap: 22px; }
}
