:root {
  --bg: #f4f5f8;
  --surface: #ffffff;
  --line: #e5e8ef;
  --ink-900: #131723;
  --ink-700: #363d4f;
  --ink-500: #656d80;
  --red-980: #25050a;
  --red-900: #4a0812;
  --red-800: #6b0f1c;
  --red-700: #8e1628;
  --red-600: #b81f37;
  --red-500: #da2e4d;
  --gold: #ffc96f;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --shadow-soft: 0 20px 42px rgba(16, 20, 31, 0.09);
  --shadow-red: 0 24px 56px rgba(73, 8, 18, 0.32);
}

* { box-sizing: border-box; }
html {
  background-color: #080a0e;
  font-size: 16px !important;
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scrollbar-width: thin;
  scrollbar-color: var(--red-600) #1a0509;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a0509;
}
::-webkit-scrollbar-thumb {
  background: var(--red-700);
  border-radius: 100px;
  border: 2px solid #1a0509;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-500);
}
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink-900);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  background:
    radial-gradient(1200px 360px at 85% -10%, rgba(218, 46, 77, 0.14), transparent 70%),
    radial-gradient(900px 300px at -5% 16%, rgba(122, 18, 37, 0.08), transparent 70%),
    var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(1280px, calc(100% - 3rem)); margin-inline: auto; }
.section { padding: 5rem 0; }

main,
section,
header,
footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red-600);
}
.headline {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
}
.section-title h2 {
  margin: 0.52rem 0 0;
  font-size: clamp(2.05rem, 5vw, 3.45rem);
  color: var(--red-800);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .86rem 1.38rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(125deg, var(--red-500), var(--red-700));
  box-shadow: 0 12px 28px rgba(141, 19, 41, 0.34);
}
.btn-outline {
  color: var(--red-700);
  border-color: var(--red-700);
  background: transparent;
}
.btn-outline:hover { color: #fff; background: var(--red-700); }
.btn-glass {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  margin: 0 !important;
  padding-top: .7rem !important;
  transform: translateY(0);
  transition: transform .25s ease, padding-top .25s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0 !important;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(10, 16, 28, .22);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled .header-inner {
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 30px rgba(15, 20, 31, .09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.16rem;
  color: #f0f3fb;
  font-weight: 700;
  font-size: .94rem;
}
.site-header.scrolled .desktop-nav { color: var(--ink-700); }
.desktop-nav a {
  position: relative;
  padding: .2rem 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--red-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s ease;
}
.desktop-nav a.active::after,
.desktop-nav a:hover::after { transform: scaleX(1); }
.desktop-actions { display: flex; gap: .6rem; }
.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  color: #fff;
}
.site-header.scrolled .mobile-toggle { color: var(--ink-900); }
.mobile-panel {
  display: none;
  margin-top: .6rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-900);
  box-shadow: var(--shadow-soft);
  padding: .9rem;
}
.mobile-panel.open { display: block; }
.mobile-panel nav {
  display: grid;
  gap: .65rem;
  margin-bottom: .8rem;
  font-weight: 700;
}
.mobile-panel nav a {
  color: var(--ink-900);
}
.mobile-panel nav a:hover {
  color: var(--red-700);
}

/* -- HERO BASE --------------------------------------------------------------- */
.hero {
  position: relative;
  margin: 0 !important;
  padding-top: 0 !important;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: #080a0e;
}
.hero::before, .hero::after { display: none; }

/* -- REEL (background slides) ------------------------------------------------ */
.hc-reel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hc-slide {
  position: absolute;
  inset: 0;
  background-color: #080a0e;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform 7s cubic-bezier(.25,.46,.45,.94);
  will-change: opacity, transform;
}
.hc-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hc-slide.is-leaving {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s ease;
}

/* -- OVERLAY ----------------------------------------------------------------- */
.hc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(7,9,14,.72) 0%, rgba(7,9,14,.38) 22%, rgba(7,9,14,0) 46%),
    linear-gradient(to right, rgba(7,9,14,.88) 0%, rgba(7,9,14,.52) 55%, rgba(7,9,14,.1) 100%),
    linear-gradient(to top, rgba(7,9,14,.72) 0%, transparent 38%);
}

/* -- STAGE ------------------------------------------------------------------- */
.hc-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding-top: 8rem;
  padding-bottom: 0;
}

/* -- TEXTS ------------------------------------------------------------------- */
.hc-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  padding-bottom: 2rem;
}
.hc-copy {
  display: none;
  flex-direction: column;
}
.hc-copy.is-active {
  display: flex;
  animation: hcTextIn .7s cubic-bezier(.22,.68,0,1.1) both;
}
@keyframes hcTextIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hc-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #ffc96f;
  margin-bottom: 1rem;
}
.hc-label::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: #ffc96f;
  flex-shrink: 0;
}
.hc-copy h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #fff;
}
.hc-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 52ch;
  line-height: 1.65;
}
.hc-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* -- BOTTOM BAR -------------------------------------------------------------- */
.hc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* Counter */
.hc-counter {
  display: flex;
  flex-direction: column;
  min-width: 46px;
}
.hc-num {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hc-total {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}

/* Dots */
.hc-dots {
  display: flex;
  gap: .55rem;
  align-items: center;
}
.hc-dot {
  appearance: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.25);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: width .35s cubic-bezier(.4,0,.2,1);
}
.hc-dot span {
  position: absolute;
  inset: 0 100% 0 0;
  background: #ffc96f;
  border-radius: 4px;
}
.hc-dot.is-active {
  width: 64px;
}
.hc-dot.is-active span {
  animation: hcDotFill var(--hc-dur, 6s) linear forwards;
}
@keyframes hcDotFill {
  from { right: 100%; }
  to   { right: 0%; }
}

/* Arrows */
.hc-arrows {
  display: flex;
  gap: .5rem;
}
.hc-arrow {
  appearance: none;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .22s, border-color .22s, transform .18s;
}
.hc-arrow:hover {
  background: rgba(255,255,255,.17);
  border-color: rgba(255,255,255,.42);
  transform: scale(1.1);
}
.hc-arrow:active { transform: scale(.92); }

/* -- SCROLL HINT ------------------------------------------------------------- */
.hc-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hc-scroll-rod {
  width: 2px;
  height: 44px;
  border-radius: 2px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
  position: relative;
}
.hc-scroll-rod::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -50%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #ffc96f);
  border-radius: 2px;
  animation: hcScrollRod 1.9s ease-in-out infinite;
}
@keyframes hcScrollRod {
  0%   { top: -50%; }
  60%  { top: 150%; }
  100% { top: 150%; }
}
.services-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ffffff, #fafbff);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(16, 20, 31, 0.13);
  border-color: #f0c9d1;
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, #ffe7eb, #fff3f6);
}
.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: .26rem .62rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red-700);
  background: #ffe9ee;
  border: 1px solid #ffd2db;
}
.service-card h3 { margin: .05rem 0 .42rem; color: var(--red-800); }
.service-card p { margin: 0; color: var(--ink-500); }

.frota-shell {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(900px 300px at 8% -10%, rgba(255, 201, 111, .18), transparent 70%),
    linear-gradient(140deg, #18070b, #4d0f1b 52%, #6c1627);
}
.frota-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/frota.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .2;
}
.frota-content { position: relative; z-index: 2; }
.frota-shell .section-title h2,
.frota-shell .eyebrow,
.frota-shell .section-title p { color: #fff; }
.frota-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}
.frota-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
}
.frota-highlight {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(9px);
  padding: .9rem 1rem;
}
.frota-highlight.is-primary {
  background: linear-gradient(125deg, rgba(255, 201, 111, .25), rgba(255,255,255,.12));
  border-color: rgba(255, 201, 111, .5);
}
.frota-highlight span {
  display: block;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.frota-highlight strong {
  display: block;
  margin-top: .18rem;
  font-size: 1.14rem;
  color: #fff;
}
.carousel-controls { display: flex; justify-content: flex-end; gap: .55rem; margin-bottom: .8rem; }
.carousel-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
}
.fleet-controls .carousel-btn:hover {
  background: rgba(255,255,255,.24);
  transform: translateY(-1px);
}
.carousel-track {
  display: flex;
  gap: .95rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.carousel-track::-webkit-scrollbar { display: none; }
.vehicle-card {
  min-width: min(100%, 500px);
  flex: 0 0 min(100%, 500px);
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(160deg, rgba(255,255,255,.13), rgba(255,255,255,.07));
  backdrop-filter: blur(10px);
}
.fleet-card {
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 18px 38px rgba(8, 11, 20, .32);
}
.fleet-media {
  position: relative;
}
.fleet-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,16,.72) 0%, rgba(8,10,16,.18) 42%, transparent 70%);
}
.fleet-order {
  position: absolute;
  top: .65rem;
  left: .65rem;
  min-width: 2.2rem;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(12, 16, 26, .52);
  padding: .26rem .5rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.fleet-chip-row {
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}
.vehicle-card img { width: 100%; height: 270px; object-fit: cover; }
.vehicle-body { padding: 1rem; }
.vehicle-body h3 { margin: 0 0 .35rem; }
.vehicle-body p { margin: 0; color: rgba(255,255,255,.9); line-height: 1.6; }
.tag {
  display: inline-flex;
  margin: 0;
  border: 1px solid rgba(255,255,255,.27);
  border-radius: 999px;
  padding: .3rem .56rem;
  font-size: .74rem;
  font-weight: 700;
  background: rgba(17,22,33,.48);
}
.fleet-empty {
  width: min(100%, 520px);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 1.2rem;
}
.fleet-empty h3 {
  margin: 0 0 .45rem;
}
.fleet-empty p {
  margin: 0;
  color: rgba(255,255,255,.9);
}

.reviews-shell {
  position: relative;
}
.reviews-title p {
  margin: .45rem 0 0;
  max-width: 72ch;
  color: var(--ink-500);
}
.reviews-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}
.review-aside,
.review-main {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  min-width: 0;
  max-width: 100%;
}
.reviews-grid > * { min-width: 0; }
.review-aside {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.review-aside::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 46, 77, .14), rgba(218, 46, 77, 0));
}
.review-main {
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.review-main .carousel-track {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.review-main .carousel-btn {
  border-color: #d9dfec;
  background: #f8faff;
  color: #3a4357;
}
.review-slide {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: .95rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.review-slide p {
  margin: 0;
  color: var(--ink-700);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.review-pair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.review-card-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: .85rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
}
.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-stars {
  color: #f4b133;
  margin-bottom: .35rem;
  letter-spacing: .04em;
}
.review-meta {
  margin-top: auto !important;
  color: var(--ink-500) !important;
  font-size: .86rem;
}
.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .95rem;
}
.review-badge {
  display: inline-flex;
  border: 1px solid #f4d7dd;
  background: #fff5f7;
  color: var(--red-700);
  border-radius: 999px;
  padding: .24rem .58rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.reviews-clients {
  margin-top: 1rem;
}
.reviews-clients h3 {
  margin: 0 0 .7rem;
  color: var(--red-800);
  font-size: 1.02rem;
}
.reviews-clients-strip {
  border-color: #e6eaf2;
  box-shadow: var(--shadow-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}
.about-band {
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.05rem;
  background: linear-gradient(130deg, rgba(73, 7, 17, .92), rgba(145, 17, 39, .9)), url('../img/banner_sobre.jpg') center/cover no-repeat;
  box-shadow: var(--shadow-red);
}
.about-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}
.about-panel h3 { margin: 0 0 .75rem; color: var(--red-700); }
.about-list { margin: 0; padding-left: 1rem; color: var(--ink-500); }
.about-list li { margin-bottom: .5rem; }
.about-compact-shell {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 320px at 10% -15%, rgba(255, 201, 111, .16), transparent 70%),
    linear-gradient(145deg, #1d060b, #5b1120 52%, #741a2d);
}
.about-compact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/banner_sobre.jpg') center/cover no-repeat;
  opacity: .14;
}
.about-compact-shell .container {
  position: relative;
  z-index: 2;
}
.about-compact {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1rem;
}
.about-compact-main {
  border-radius: var(--radius-xl);
  padding: 2.05rem;
  border: 1px solid rgba(255,255,255,.24);
  background: linear-gradient(145deg, rgba(11, 10, 17, .54), rgba(89, 12, 29, .46));
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 50px rgba(8, 11, 20, .34);
}
.about-compact-main p {
  margin: 0;
  color: rgba(255,255,255,.93);
}
.about-compact-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: rgba(255,255,255,.93);
}
.about-compact-list li { margin-bottom: .45rem; }
.about-compact-side {
  display: grid;
  gap: 1rem;
}
.about-mini-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(11, 14, 24, .34);
  backdrop-filter: blur(9px);
  padding: 1.2rem;
  color: #fff;
}
.about-mini-card h3 {
  margin: .3rem 0 .45rem;
}
.about-mini-card p {
  margin: 0 0 .9rem;
  color: rgba(255,255,255,.92);
}
.about-mini-label {
  display: inline-flex;
  padding: .25rem .58rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffd89b;
  border: 1px solid rgba(255,216,155,.45);
  background: rgba(255,216,155,.12);
}
.about-mini-cta {
  background: linear-gradient(132deg, rgba(102,15,33,.86), rgba(196,44,71,.8));
}

.surface-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}
.updates-shell {
  background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0));
}
.updates-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
}
.updates-head .section-title p {
  margin: .45rem 0 0;
  color: var(--ink-500);
}
.updates-card {
  padding: 1.1rem;
  border-color: #e6e9f1;
}

.cta-band {
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.3rem;
  background: linear-gradient(130deg, rgba(70, 7, 16, .96), rgba(184, 31, 55, .9)), url('../img/banner_002.jpg') center/cover no-repeat;
  box-shadow: var(--shadow-red);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.info-card {
  border-radius: 22px;
  color: #fff;
  padding: 1.4rem;
}
.info-card h3 { margin-top: 0; }
.info-card p { margin: 0 0 .9rem; color: rgba(255,255,255,.95); }
.info-card.attendance {
  background: linear-gradient(120deg, rgba(68, 7, 15, .9), rgba(165, 18, 38, .83)), url('../img/6.jpeg') center/cover no-repeat;
}
.info-card.excursions { background: linear-gradient(130deg, #8c1124, #d22442); }

.clients-strip {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: .95rem 0;
}
.clients-flow {
  display: flex;
  width: max-content;
  gap: 1.8rem;
  animation: logosFlow 25s linear infinite;
}
.client-logo {
  width: 130px;
  height: 72px;
  display: grid;
  place-items: center;
  opacity: .84;
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@keyframes logosFlow { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ——— FOOTER ————————————————————————————————————————————————————————————— */
.footer-shell {
  color: #f4f6fb;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--red-600);
  background:
    radial-gradient(1100px 450px at 95% 0%, rgba(218,46,77,.12), transparent 65%),
    radial-gradient(800px 350px at 5% 110%, rgba(122,18,37,.09), transparent 70%),
    linear-gradient(155deg, #0d0406, #170508 48%, #200a10);
}
.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(184,31,55,.07), transparent);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 0;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
  margin-bottom: 2.4rem;
}
.footer-main-grid .footer-card {
  display: flex;
  flex-direction: column;
}
.footer-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.6rem;
}
/* Brand card */
.footer-logo { height: auto; max-width: 200px; margin-bottom: 1rem; }
.footer-brand-desc {
  margin: 0 0 1.1rem;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  line-height: 1.7;
  max-width: 44ch;
}
.footer-cnpj-box {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .85rem;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  margin-bottom: 1.2rem;
}
.footer-cnpj-label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red-500);
}
.footer-cnpj-sep { color: rgba(255,255,255,.22); font-size: .8rem; }
.footer-cnpj-value {
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  letter-spacing: .03em;
}
.footer-social { display: flex; gap: .55rem; }
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.8);
  transition: background .22s, border-color .22s, color .22s, transform .2s;
}
.footer-social-btn:hover {
  background: var(--red-700);
  border-color: var(--red-500);
  color: #fff;
  transform: translateY(-3px);
}
/* Contact card */
.footer-card-title {
  margin: 0 0 1.1rem;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
}
.footer-contact-list {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 9px;
  background: rgba(184,31,55,.2);
  border: 1px solid rgba(218,46,77,.3);
  display: grid;
  place-items: center;
  color: #ff8fa3;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.footer-contact-label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
}
.footer-contact-value {
  font-size: .91rem;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
}
.footer-whatsapp-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: .88rem;
  padding: .72rem 1rem;
  gap: .5rem;
}
/* Links card */
.footer-nav-list {
  display: grid;
  gap: .3rem;
  margin-bottom: 1.3rem;
}
.footer-nav-list a {
  font-size: .91rem;
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .52rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s;
}
.footer-nav-list a:last-child { border-bottom: none; }
.footer-nav-list a:hover { color: #fff; padding-left: .35rem; }
.footer-nav-icon {
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
  transition: color .2s;
}
.footer-nav-list a:hover .footer-nav-icon { color: var(--red-500); }
.footer-map-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem .95rem;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  transition: background .22s, border-color .22s, color .22s;
}
.footer-map-link:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.13) 20%, rgba(255,255,255,.13) 80%, transparent);
  margin-bottom: 1.1rem;
}
/* Bottom bar */
.footer-bottom {
  padding: .9rem 0 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-size: .85rem;
}
.footer-bottom strong { color: var(--gold); font-weight: 700; }
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1080px) {
  .desktop-nav, .desktop-actions { display: none; }
  .mobile-toggle { display: block; }
  .header-inner { border-radius: 20px; }
  .services-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .frota-head { grid-template-columns: 1fr; }
  .about-compact { grid-template-columns: 1fr; }
  .updates-head { align-items: start; flex-direction: column; }
  .footer-main-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid, .about-layout, .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .footer-main-grid { grid-template-columns: 1fr; }
  .review-pair-grid { grid-template-columns: 1fr; }
  .services-wrap { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* -- HC RESPONSIVE ----------------------------------------------------------- */
@media (max-width: 820px) {
  html { font-size: 16px !important; }
  .container { width: calc(100% - 1.6rem); }

  .hc-stage { padding-top: 5.5rem; }
  .hc-texts { max-width: 100%; }
  .hc-copy h1 { font-size: clamp(1.95rem, 8vw, 3rem); }
  .hc-counter { display: none; }
  .hc-scroll-hint { display: none; }
  .hc-bar { padding: 1rem 0 1.5rem; gap: .6rem; }
  .hc-dot { width: 24px; }
  .hc-dot.is-active { width: 48px; }

  .vehicle-card {
    min-width: 86vw;
    flex-basis: 86vw;
  }
  .vehicle-card img {
    height: 210px;
  }
}
