/* ==========================================================================
   Escola de Condução Tarouca — stylesheet
   Design tokens
   ========================================================================== */
:root {
  --navy-deep: #0a2540;
  --navy: #123b63;
  --navy-soft: #1c4c7c;
  --amber: #f3a712;
  --amber-dark: #d68f0a;
  --signal-red: #d7263d;
  --asphalt: #1c1f24;
  --asphalt-soft: #2a2e35;
  --paper: #f6f4ee;
  --paper-dim: #ece8de;
  --white: #ffffff;
  --ink: #1a2430;
  --ink-soft: #55606c;
  --line: #dfdacd;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --container: 1180px;
  --shadow: 0 18px 40px -20px rgba(10, 37, 64, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--navy-deep);
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--signal-red);
  border-radius: 2px;
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.08; }
.section-head p { color: var(--ink-soft); font-size: 17px; margin-top: 14px; line-height: 1.6; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

section { padding: 92px 0; position: relative; }
.bg-paper { background: var(--paper); }
.bg-dim { background: var(--paper-dim); }
.bg-navy { background: var(--navy-deep); color: var(--paper); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .section-head p { color: #b9c8da; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.btn-amber { background: var(--amber); color: var(--navy-deep); box-shadow: 0 12px 24px -10px rgba(243,167,18,0.7); }
.btn-amber:hover { background: var(--amber-dark); }

.btn-outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-navy { border-color: var(--navy); color: var(--navy-deep); }
.btn-outline-navy:hover { background: var(--navy-deep); color: var(--white); }

.btn-whatsapp { background: #25D366; color: #06210f; box-shadow: 0 12px 24px -10px rgba(37,211,102,0.6); }
.btn-whatsapp:hover { background: #1ebc59; }

.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ==========================================================================
   Header
   ========================================================================== */
.top-strip {
  background: var(--asphalt);
  color: #cfd6dc;
  font-size: 13px;
}
.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.top-strip a { display: inline-flex; align-items: center; gap: 6px; }
.top-strip a:hover { color: var(--amber); }
.top-strip .strip-links { display: flex; gap: 22px; flex-wrap: wrap; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,244,238,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 50px; height: auto; flex: none; }
.logo-text { font-family: var(--font-display); line-height: 1.05; }
.logo-text .l1 { display: block; font-size: 12px; letter-spacing: 0.14em; color: var(--ink-soft); font-weight: 500; text-transform: uppercase; }
.logo-text .l2 { display: block; font-size: 21px; font-weight: 700; color: var(--navy-deep); letter-spacing: 0.03em; }
.logo-text .l2 span { color: var(--amber-dark); }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 3px;
  background: var(--signal-red);
  border-radius: 2px;
  transition: right 0.22s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy-deep);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Road divider (signature element)
   ========================================================================== */
.road-divider {
  width: 100%;
  height: 46px;
  line-height: 0;
  background: var(--asphalt);
}
.road-divider svg { width: 100%; height: 100%; display: block; }
.road-divider.flip { transform: scaleY(-1); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--asphalt);
  color: var(--paper);
  padding: 76px 0 0;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--amber); }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.03;
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero-copy p {
  font-size: 18px;
  color: #cfd8e2;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--amber);
}
.hero-stats div span { font-size: 13px; color: #9fadbc; text-transform: uppercase; letter-spacing: 0.06em; }

.hero-media {
  position: relative;
  align-self: end;
}
.hero-media img {
  width: 100%;
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  box-shadow: var(--shadow);
}
.hero-media .plate {
  position: absolute;
  top: 26px;
  left: -26px;
  background: var(--amber);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-s);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
  transform: rotate(-6deg);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Intro / about
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-media img { width: 100%; }
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 16px 20px;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.35);
  display: flex;
  gap: 12px;
  align-items: center;
}
.about-badge strong { font-family: var(--font-display); color: var(--navy-deep); font-size: 22px; display: block; }
.about-badge span { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }

.about-copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.about-list { margin-top: 26px; display: grid; gap: 14px; }
.about-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink);
}
.about-list .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  margin-top: 1px;
}
.about-quote {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy-deep);
  border-left: 4px solid var(--signal-red);
  padding-left: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Categories — road-sign cards
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  background: var(--navy-deep);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card .sign {
  width: 58px; height: 58px;
  border-radius: var(--radius-s);
  background: var(--amber);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.cat-card .sign svg { width: 30px; height: 30px; }
.cat-card h3 { color: var(--white); font-size: 19px; margin-bottom: 8px; letter-spacing: 0.02em; }
.cat-card p { font-size: 14px; color: #a9b7c6; margin: 0; line-height: 1.5; }
.cat-card .tag {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--amber);
  border: 1px solid rgba(243,167,18,0.5);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
}

/* certified trainings — round badges */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 50px;
  padding-top: 42px;
  border-top: 1px dashed var(--line);
}
.cert-row .cert-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: center;
  margin-right: 6px;
}
.cert-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--navy-deep);
  border-radius: 999px;
  padding: 10px 20px 10px 12px;
  box-shadow: var(--shadow);
}
.cert-chip .dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--signal-red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.cert-chip strong { font-family: var(--font-display); font-size: 15px; color: var(--navy-deep); letter-spacing: 0.03em; }

/* ==========================================================================
   Heavy vehicles spotlight
   ========================================================================== */
.spotlight {
  background: var(--navy-deep);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  box-shadow: var(--shadow);
}
.spotlight-media { position: relative; min-height: 100%; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-copy { padding: 52px; color: var(--paper); }
.spotlight-copy .eyebrow { color: var(--amber); }
.spotlight-copy h3 { color: var(--white); font-size: clamp(26px, 3vw, 34px); line-height: 1.1; margin-bottom: 18px; }
.spotlight-copy p { color: #b9c8da; font-size: 16px; line-height: 1.7; margin-bottom: 26px; }
.spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.spotlight-grid div {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  font-size: 14px;
  color: #dbe4ee;
}
.spotlight-grid strong { display: block; font-family: var(--font-display); color: var(--amber); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }

/* ==========================================================================
   Gallery / instalações
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; inset: auto 0 0 0;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(10,37,64,0.9), transparent);
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

/* ==========================================================================
   Fleet
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.fleet-card img { width: 100%; height: 300px; object-fit: cover; }
.fleet-card .fleet-body { padding: 26px 28px 30px; }
.fleet-card h3 { font-size: 20px; margin-bottom: 8px; }
.fleet-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   Schedule / horário
   ========================================================================== */
.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.schedule-board {
  background: var(--asphalt);
  border-radius: var(--radius-l);
  padding: 40px;
  color: var(--paper);
  box-shadow: var(--shadow);
  position: relative;
}
.schedule-board::before {
  content: "";
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 26px, transparent 26px 44px);
  border-radius: 0 0 6px 6px;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  gap: 20px;
}
.schedule-row:last-of-type { border-bottom: none; }
.schedule-row .day {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.schedule-row .times { text-align: right; font-size: 14.5px; color: #b9c8da; line-height: 1.9; }
.schedule-note {
  margin-top: 22px;
  background: rgba(243,167,18,0.14);
  border: 1px solid rgba(243,167,18,0.4);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--amber);
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-grid.two {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.03em;
}
.stars { color: var(--amber-dark); font-size: 16px; letter-spacing: 2px; }
.review-card p { font-size: 15px; color: var(--ink); line-height: 1.65; flex: 1; }
.review-name { font-family: var(--font-display); font-size: 15px; color: var(--navy-deep); letter-spacing: 0.03em; }
.review-name span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.review-time { font-size: 13px; color: var(--ink-soft); }
.g-badge {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--ink-soft);
}

.review-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--paper-dim);
  border-radius: var(--radius-m);
  padding: 26px 30px;
}
.review-cta .rating-big { display: flex; align-items: center; gap: 16px; }
.review-cta .rating-big strong { font-family: var(--font-display); font-size: 40px; color: var(--navy-deep); }
.review-cta .rating-big .stars { font-size: 18px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-card {
  background: var(--navy-deep);
  border-radius: var(--radius-l);
  padding: 44px;
  color: var(--paper);
}
.contact-card h3 { color: var(--white); font-size: 24px; margin-bottom: 26px; }
.contact-list { display: grid; gap: 20px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(243,167,18,0.16);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
}
.contact-list strong { display: block; font-size: 14px; color: var(--white); font-family: var(--font-display); letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 3px; }
.contact-list span, .contact-list a { font-size: 14.5px; color: #b9c8da; }
.contact-list a:hover { color: var(--amber); }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.map-frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--asphalt);
  color: #9fadbc;
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text .l1 { color: #8592a1; }
.footer-brand .logo-text .l2 { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 14px; letter-spacing: 0.05em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.45);
  animation: pulse 2.6s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 14px 30px -8px rgba(0,0,0,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 14px 30px -8px rgba(0,0,0,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 14px 30px -8px rgba(0,0,0,0.45); }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,14,20,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-s); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; height: 260px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .schedule-wrap { grid-template-columns: 1fr; }
  .review-grid, .review-grid.two { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .top-strip .strip-links { display: none; }
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: var(--white); box-shadow: -20px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%); transition: transform 0.3s ease; padding: 100px 30px 30px; z-index: 99; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .nav-toggle { display: block; flex: none; }
  .header-cta { gap: 8px; }
  .header-cta .btn span.label { display: none; }
  .header-cta a.btn-amber { display: none; }
  .header-cta .btn-whatsapp { padding: 12px; }
  section { padding: 64px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .review-grid, .review-grid.two { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.big { grid-column: span 2; height: 220px; }
  .schedule-board { padding: 30px 24px; }
  .spotlight-copy { padding: 34px 26px; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .review-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 22px; }
  .about-badge { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
}
