/* ============================================================
   ZF TURISMO – style.css
   Mobile-first | Performance-first | SEO-ready
   ============================================================ */

/* ── RESET & CUSTOM PROPERTIES ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --navy: #0a1628;
  --navy-mid: #0d1f3c;
  --navy-light: #1a3158;
  --navy-soft: #f0f4fa;
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-dim: #8a6c28;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text: #1e2a3a;
  --text-muted: #5a6a7e;
  --border: #dde3ed;

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", "Helvetica Neue", sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-w: 1200px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.25s;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
blockquote {
  quotes: none;
}
cite {
  font-style: normal;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}
.btn--md {
  padding: 0.75rem 1.5rem;
}
.btn--lg {
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
}
.btn--xl {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}
.btn--gold:active {
  transform: translateY(0);
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.btn--outline-dark {
  border: 2px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  display: none;
}
@media (min-width: 768px) {
  .topbar {
    display: block;
  }
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.topbar__cta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-weight: 600;
  transition: opacity var(--dur);
}
.topbar__cta:hover {
  opacity: 0.8;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: box-shadow var(--dur);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

/* NAV */
.nav {
  display: none;
}
@media (min-width: 900px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-right: 1rem;
}
.nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: all var(--dur);
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.nav__cta {
  flex-shrink: 0;
}

/* MOBILE TOGGLE */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--dur);
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAV DRAWER */
.nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1.5rem 1.25rem;
  gap: 0.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.25s var(--ease);
}
.nav.open .nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 100%;
  margin-right: 0;
  margin-bottom: 1rem;
}
.nav.open .nav__link {
  font-size: 1rem;
  padding: 0.7rem 1rem;
  width: 100%;
  display: block;
  border-radius: 8px;
}
.nav.open .nav__cta {
  width: 100%;
  justify-content: center;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 5rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(26, 49, 88, 0.8) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -80px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__highlight {
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero__subtitle strong {
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero__trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 959px) {
  .hero__visual {
    display: none;
  }
}

.hero__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero__card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.hero__card-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.hero__stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.hero__stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero__stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 14px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%,
  100% {
    top: 5px;
    opacity: 1;
  }
  80% {
    top: 18px;
    opacity: 0;
  }
}

/* ── SECTIONS ── */
.section {
  padding-block: var(--space-2xl);
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--soft {
  background: var(--navy-soft);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section__header--light .section__title,
.section__header--light .section__desc {
  color: rgba(255, 255, 255, 0.85);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section--dark .section__title {
  color: var(--white);
}
.section__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── CARDS GRID (Serviços) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
  transform: translateY(-4px);
}
.card:hover::before {
  transform: scaleX(1);
}

.card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--white);
}
.card--featured .card__title {
  color: var(--white);
}
.card--featured .card__desc {
  color: rgba(255, 255, 255, 0.75);
}
.card--featured .card__icon {
  background: rgba(201, 168, 76, 0.15);
}
.card--featured .card__icon svg {
  color: var(--gold);
}
.card--featured::before {
  transform: scaleX(1);
}

.card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.card__icon {
  width: 60px;
  height: 60px;
  background: var(--navy-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
  transition: background var(--dur);
}
.card:hover .card__icon {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-dim);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── DIFERENCIAIS ── */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.diferencial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.diferencial:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}
.diferencial__num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  user-select: none;
}
.diferencial__icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.diferencial__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.diferencial__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ── FROTA ── */
.frota-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .frota-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.frota-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(10, 22, 40, 0.07);
}
.frota-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
}
.frota-card__img svg {
  width: 100%;
  height: 100%;
}
.frota-card__body {
  padding: 1.5rem;
}
.frota-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.frota-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.frota-card__specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.frota-card__specs svg {
  color: var(--gold);
  flex-shrink: 0;
}

.frota-info__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.frota-info__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.frota-info__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 480px) {
  .frota-info__items {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.frota-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--navy-soft);
  border-radius: var(--radius);
  padding: 0.85rem;
  min-width: 0;
}
.frota-info__item > div {
  min-width: 0;
  overflow: hidden;
}
.frota-info__item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.frota-info__item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.frota-info__item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  word-break: break-word;
}

/* ── SOBRE ── */
.sobre-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .sobre-layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.sobre__content .section__label,
.sobre__content .section__title {
  text-align: left;
}

.sobre__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.sobre__text strong {
  color: var(--navy);
}

.sobre__valores {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
.sobre__valor {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.sobre__valor-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.sobre__valor strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.sobre__valor span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sobre__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sobre__card-big {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.sobre__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sobre__number-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.sobre__card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sobre__card-sm {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.sobre__card-sm--wide {
  grid-column: 1 / -1;
}
.sobre__card-sm strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.sobre__card-sm span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--dur) var(--ease);
}
.review:hover {
  box-shadow: 0 10px 40px rgba(10, 22, 40, 0.09);
  transform: translateY(-3px);
}
.review__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review__avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.1rem;
}
.review__detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--navy-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
}
.reviews-rating__score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.reviews-rating__stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: 0.3rem;
}
.reviews-rating p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.reviews-rating strong {
  color: var(--navy);
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  background: var(--navy);
  padding-block: var(--space-2xl);
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(26, 49, 88, 0.8) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-banner__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-inline: auto;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── CONTATO ── */
.contato-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: all var(--dur);
}
.contato-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}
.contato-item__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contato-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contato-item a,
.contato-item span {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color var(--dur);
}
.contato-item a:hover {
  color: var(--gold-dim);
}

.contato-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.location-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.location-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.location-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 280px;
}
.location-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.location-card__tags span {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}
.footer__top {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 600px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-block: 1rem;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 0.5rem;
}
.footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--dur);
}
.footer__social-link:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

.footer__nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__nav ul,
.footer__services ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__nav a,
.footer__contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--dur);
}
.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--gold);
}
.footer__services li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.25rem;
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── WHATSAPP FLUTUANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  animation: waBounce 3s ease-in-out 2s infinite;
}
.whatsapp-float:hover {
  background: #20bc5a;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
  transform: translateY(-3px) scale(1.03);
  animation: none;
}
@keyframes waBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.whatsapp-float__label {
  display: none;
}
@media (min-width: 480px) {
  .whatsapp-float__label {
    display: inline;
  }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── FOCUS STYLES (acessibilidade) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── SCROLL BAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}

/* ── MOBILE OVERFLOW FIXES ── */
.hero__orb--1,
.hero__orb--2 {
  max-width: 100vw;
}
.section,
.cta-banner,
.footer {
  overflow-x: hidden;
}
.cards-grid,
.diferenciais-grid,
.reviews-grid {
  overflow: hidden;
}
/* Frota card image container: garante que SVG não extrapole */
.frota-card__img {
  overflow: hidden;
  width: 100%;
}
.frota-card__img svg {
  width: 100%;
  height: auto;
  display: block;
}
/* Topbar sem overflow em telas pequenas */
.topbar__inner {
  flex-wrap: wrap;
  row-gap: 0.25rem;
}
/* Sobre visual: cards não extrapolam */
.sobre__card-sm strong {
  font-size: clamp(1rem, 4vw, 1.4rem);
  word-break: break-word;
}
/* Botões hero não extrapolam em mobile pequeno */
@media (max-width: 380px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-banner__actions {
    flex-direction: column;
  }
  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .frota-info__items {
    grid-template-columns: 1fr;
  }
}

@media print {
  .header,
  .topbar,
  .whatsapp-float,
  .hero__scroll,
  .cta-banner {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
}
