/* =========================================================
   Rio Sky Tour - Cloudflare Pages Edition
   Palette: mixes of #000 / #FFF / #E0E0E0 / #CCC / #222 (no color accents)
   Fonts:   Montserrat (headings), Roboto (body)
   ========================================================= */

:root {
  --c-primary: #000000;
  --c-secondary: #E0E0E0;
  --c-text-light: #FFFFFF;
  /* Highlight on dark backgrounds */
  --c-accent: #FFFFFF;
  /* Strong text on light backgrounds */
  --c-accent-2: #222222;
  --c-gray: #CCCCCC;
  --c-gray-2: #777777;
  --c-muted: #7d7d7d;
  --c-bg: #FFFFFF;
  --c-bg-alt: #0d0d0d;
  --ff-head: "Montserrat", system-ui, sans-serif;
  --ff-body: "Roboto", system-ui, sans-serif;
  --container: 1140px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --transition: .3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--c-primary);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent-2); }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #E0E0E0;
  color: #111;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.site-header .logo img {
  /* keep original logo colors */
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}

.logo img {
  height: 62px;
  width: auto;
}

.nav-main ul {
  list-style: none;
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Vertical separator between nav items */
.nav-main li + li {
  border-left: 1px solid rgba(0,0,0,.2);
}

.nav-main a {
  color: #111;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  padding: .35rem 1rem;
  display: inline-block;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: -6px;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-main a:hover::after,
.nav-main a.active::after {
  transform: scaleX(1);
}

.nav-main a.active {
  color: #000;
  font-weight: 700;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .75rem;
}

/* ========== Language Switcher ========== */
.lang-switcher {
  position: relative;
  font-family: var(--ff-body);
}

.lang-current {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.15);
  color: #111;
  padding: .4rem .75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: .85rem;
  text-transform: uppercase;
  transition: background var(--transition);
}

.lang-current:hover { background: rgba(0,0,0,.12); }

.lang-current img {
  width: 22px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-arrow {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #111;
  margin-left: 2px;
  transition: transform var(--transition);
}

.lang-switcher.open .lang-arrow { transform: rotate(180deg); }

.lang-options {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  display: none;
  box-shadow: var(--shadow);
}

.lang-switcher.open .lang-options { display: block; }

.lang-options a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem;
  color: var(--c-text-light);
  font-size: .9rem;
  transition: background var(--transition);
}

.lang-options a:hover { background: rgba(255,255,255,.08); color: var(--c-accent); }
.lang-options a.active { background: rgba(255,255,255,.1); color: #fff; }

.lang-options img {
  width: 22px; height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* ========== Mobile menu toggle ========== */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #111;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .25rem .5rem;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  color: var(--c-text-light);
}

.hero-video, .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.65));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 900px;
}

.hero-inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
}

.hero-inner p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 720px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

/* Page hero (non-video pages) */
.page-hero {
  background: linear-gradient(135deg, #000, #222);
  color: var(--c-text-light);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-hero::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--c-accent);
  margin: 1rem auto 0;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: #000;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #222;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--c-text-light);
  border: 2px solid var(--c-text-light);
}

.btn-outline:hover {
  background: var(--c-text-light);
  color: #000;
}

/* ========== Sections ========== */
section.block {
  padding: 5rem 0;
}

section.block-dark {
  background: var(--c-bg-alt);
  color: var(--c-text-light);
}

section.block-gradient {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: var(--c-text-light);
}

section.block-accent {
  background: radial-gradient(ellipse at center, #292929 0%, #000 75%);
  color: var(--c-text-light);
}

section.block-accent h1,
section.block-accent h2,
section.block-accent h3 { color: var(--c-text-light); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--c-accent);
  margin: 1rem auto 0;
}

.section-title.light::after { background: var(--c-text-light); }

/* ========== Two-column intro ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ========== Cross-grid section ==========
   Base: the simple + cross divider used by Nossos Valores.
   Variant `.helix-grid`: L-shapes on diagonal blocks with a gap that
   offsets them into a propeller look (used by 'Com a Rio Sky Tour').    */
.block-image-bg {
  position: relative;
  background-color: #000;
  background-image:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.65)),
    url("/assets/img/scraped/servicos/cristo-wallpaper.webp");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--c-text-light);
}

.block-image-bg .section-title { color: var(--c-text-light); }

.cross-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

.cross-grid::before,
.cross-grid::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.55);
  pointer-events: none;
}

.cross-grid::before {
  left: 18%;
  right: 18%;
  top: 50%;
  height: 1px;
}

.cross-grid::after {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
}

.cross-item {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.cross-item h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  color: var(--c-text-light);
  letter-spacing: .5px;
}

.cross-item p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ---- Helix variant (Com a Rio Sky Tour, você pode) ---- */
.helix-grid {
  max-width: 1300px;
  gap: clamp(1.5rem, 4vw, 3rem);
}

/* disable the inherited + cross */
.helix-grid::before,
.helix-grid::after { display: none; }

/* Top-right block: L at bottom-left corner (border-left + border-bottom) */
.helix-grid > .cross-item:nth-child(2) {
  border-left: 2px solid rgba(255,255,255,.75);
  border-bottom: 2px solid rgba(255,255,255,.75);
  padding-left: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

/* Bottom-left block: L at top-right corner (border-top + border-right) */
.helix-grid > .cross-item:nth-child(3) {
  border-top: 2px solid rgba(255,255,255,.75);
  border-right: 2px solid rgba(255,255,255,.75);
  padding-right: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(2rem, 4vw, 4rem);
}

.helix-grid .cross-item h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
}

.helix-grid .cross-item p {
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  max-width: 420px;
}

@media (max-width: 680px) {
  .cross-grid { grid-template-columns: 1fr; }
  .cross-grid::before,
  .cross-grid::after { display: none; }
  .helix-grid > .cross-item:nth-child(2),
  .helix-grid > .cross-item:nth-child(3) {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.25);
    padding: 2rem 1rem;
  }
  .cross-item { padding: 2rem 1rem; border-bottom: 1px solid rgba(255,255,255,.2); }
  .cross-item:last-child { border-bottom: 0; }
}

/* ========== Flip boxes ========== */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.flip-box {
  perspective: 1000px;
  height: 220px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .6s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-inner,
.flip-box:focus-within .flip-inner,
.flip-box.flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.flip-front {
  background: var(--c-primary);
  color: var(--c-text-light);
  border: 1px solid rgba(255,255,255,.12);
}

.flip-front .flip-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: .75rem;
}

.flip-back {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: #fff;
  transform: rotateY(180deg);
}

.flip-back h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.flip-back p { font-size: .95rem; margin: 0; }

/* ========== Icon-box cards ========== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.icon-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}

.icon-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-accent);
}

.icon-card i {
  font-size: 2.5rem;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.icon-card h3 { margin-bottom: .75rem; }
.icon-card p { margin: 0; opacity: .85; }

/* ========== CTA Section ========== */
.cta-section {
  text-align: center;
  padding: 4rem 1.25rem;
}

.cta-section h2 {
  margin-bottom: 2rem;
  white-space: pre-line;
}

/* ========== Services pricing ========== */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid #000;
  color: #000;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--c-primary);
}

.service-card .duration {
  display: inline-block;
  font-size: .85rem;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  padding: .2rem .75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-card ul li {
  padding: .6rem 0;
  border-bottom: 1px dashed var(--c-gray);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.service-card ul li:last-child { border-bottom: 0; }

.service-card ul li strong { color: var(--c-accent-2); }

.route-list {
  margin-top: 3rem;
  background: #111;
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
}

.route-list h3 { color: var(--c-accent); margin-bottom: 1rem; }

/* ========== Fleet ========== */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.fleet-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  color: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.fleet-card:hover { transform: translateY(-4px); }

.fleet-card.reverse { grid-template-columns: 1fr 1.1fr; }
.fleet-card.reverse .fleet-img { order: 2; }

.fleet-img {
  aspect-ratio: 4/3;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
}

.fleet-img img { width: 100%; height: 100%; object-fit: cover; }

.fleet-body { padding: 2rem; }

.fleet-body h3 { font-size: 1.6rem; color: var(--c-primary); }

.fleet-specs {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
  font-size: .9rem;
}

.fleet-specs li {
  padding: .35rem 0;
  border-bottom: 1px dashed var(--c-gray);
}

.fleet-specs li strong { color: var(--c-accent-2); display: inline-block; min-width: 90px; }

/* ========== FAQ accordion ========== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--c-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: #000; }

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #000;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--c-accent-2);
  transition: transform var(--transition);
  font-weight: 400;
}

.faq-item.open .faq-question::after { content: "−"; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height var(--transition), padding var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p { margin: 0; color: #333; }

/* ========== Contact form ========== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-wrap > * {
  display: flex;
  flex-direction: column;
}

.contact-info {
  background: var(--c-primary);
  color: var(--c-text-light);
  padding: 0 0 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-info > :not(.contact-photo) {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.contact-photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin-bottom: 1.75rem;
}

.contact-info h3 { color: var(--c-accent); margin-bottom: 1rem; margin-top: 0; }

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.contact-info li i {
  color: var(--c-accent);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-info li a { color: var(--c-text-light); }
.contact-info li a:hover { color: var(--c-accent); }

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid #000;
}

.contact-form .field {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: .35rem;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--c-gray);
  border-radius: 6px;
  font: inherit;
  color: #000;
  background: #fff;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-msg {
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: 6px;
  display: none;
}

.form-msg.show { display: block; }

.form-msg.success { background: #d4edda; color: #155724; }

/* ========== Links page (linktree style) ========== */
.links-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.85)),
    url("https://rioskytour.com.br/wp-content/uploads/2024/04/output4.mp4") center/cover;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  color: var(--c-text-light);
}

.links-card {
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.links-card img.logo-main {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

.links-card h1 {
  font-size: 1.5rem;
  margin-bottom: .25rem;
}

.links-card p.tagline {
  opacity: .85;
  margin-bottom: 2rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.5rem;
  margin-bottom: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--c-text-light);
  border-radius: 50px;
  font-family: var(--ff-head);
  font-weight: 500;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.link-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
}

.link-btn i { font-size: 1.2rem; }

/* ========== Footer ========== */
.site-footer {
  background: #E0E0E0;
  color: #111;
  padding: 3rem 1.25rem 1.5rem;
  text-align: center;
}

.footer-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.footer-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-partners img {
  max-height: 40px;
  opacity: .75;
  transition: opacity var(--transition);
}

.footer-partners a:hover img { opacity: 1; }

.footer-info {
  max-width: 700px;
  margin: 0 auto;
  font-size: .85rem;
  line-height: 1.8;
  color: #333;
}

.footer-info a { color: var(--c-accent-2); font-weight: 600; }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* ========== Floating WhatsApp ========== */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform var(--transition);
  animation: wa-pulse 2s infinite;
}

.wa-float:hover { transform: scale(1.1); color: #fff; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,.9); }
}

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; }

  .menu-toggle { display: block; order: 3; }

  .nav-main {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .nav-main.open { max-height: 500px; border-top: 1px solid rgba(0,0,0,.1); box-shadow: 0 8px 20px rgba(0,0,0,.1); }

  .nav-main ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-main li { width: 100%; }
  .nav-main li + li { border-left: 0; } /* no vertical separator on mobile */

  .nav-main a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .nav-main a::after {
    left: 1.5rem; right: auto; width: 30px; bottom: 12px;
  }

  .header-right { order: 2; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }

  .flip-grid { grid-template-columns: 1fr; }

  .icon-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .service-list { grid-template-columns: 1fr; }

  .fleet-card, .fleet-card.reverse { grid-template-columns: 1fr; }
  .fleet-card.reverse .fleet-img { order: 0; }

  .contact-wrap { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  section.block { padding: 3.5rem 0; }
  .logo img { height: 48px; }
  .hero { min-height: 80vh; }
  .lang-current { padding: .35rem .5rem; font-size: .8rem; }
  .lang-current .lang-label { display: none; }
  .fleet-specs { grid-template-columns: 1fr; }
  .footer-partners { gap: 1rem; }
}

/* ========================================================
   NEW LAYOUT BLOCKS (home values-split / services / fleet wide)
   ======================================================== */

/* ---------- Home: Nossos Valores (full-width 50/50 split on black) ---------- */
section.block-values {
  background: #000;
  color: #fff;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

/* The split itself is 50/50 edge-to-edge.                                  */
/* Left column: title + paragraph, comfortable padding.                     */
/* Right column: 2×2 cross-grid of values.                                  */
.values-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: calc(100vh - 82px); /* nearly full desktop height, sub header */
  align-items: stretch;
}

/* Prevent grid blow-out when content is long */
.values-split > * { min-width: 0; }

.values-split .values-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 4rem clamp(2rem, 6vw, 6rem);
}

.values-split .values-intro h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  color: #fff;
  margin-bottom: 1.75rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.5px;
}

.values-split .values-intro p {
  color: rgba(255,255,255,.92);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

/* Right side 2×2 grid with + cross dividers */
.values-split .cross-grid {
  max-width: none;
  margin: 0;
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding: 4rem clamp(2rem, 4vw, 4rem);
}

.values-split .cross-grid::before {
  left: 5%;
  right: 5%;
  height: 2px;
}

.values-split .cross-grid::after {
  top: 8%;
  bottom: 8%;
  width: 2px;
}

.values-split .cross-item {
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values-split .cross-item h3 {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  margin-bottom: .75rem;
  color: #fff;
}

.values-split .cross-item p {
  font-size: clamp(.92rem, 1vw, 1.05rem);
  line-height: 1.55;
  max-width: none;
  color: rgba(255,255,255,.85);
  margin: 0;
}

@media (max-width: 980px) {
  .values-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .values-split .values-intro {
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem 1.5rem;
  }
  .values-split .cross-grid { padding: 1.5rem 1rem 3rem; }
}

/* ---------- "Rio Sky Tour é a escolha perfeita" on white ---------- */
section.block-choice-light {
  background: #fff;
  color: #000;
  padding: 5rem 0;
}

section.block-choice-light .section-title {
  color: #000;
}

section.block-choice-light .icon-card {
  background: #fff;
  border: 1px solid transparent;
  color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
}

section.block-choice-light .icon-card:hover {
  border-color: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,.15), 0 4px 10px rgba(0,0,0,.1);
  transform: translateY(-8px);
}

section.block-choice-light .icon-card i {
  color: #000;
}

section.block-choice-light .icon-card p {
  color: #444;
  opacity: 1;
}

/* ---------- Services: Flight cards ---------- */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.flight-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  color: #000;
  transition: transform var(--transition), box-shadow var(--transition);
}

.flight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.15);
}

.flight-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}

.flight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.flight-card:hover .flight-image img { transform: scale(1.05); }

.flight-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem 1.5rem 1rem;
  text-align: center;
}

.meta-item i {
  display: block;
  font-size: 2rem;
  color: #000;
  margin-bottom: .75rem;
}

.meta-item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  margin-bottom: .25rem;
  color: #000;
}

.meta-item span {
  font-size: .85rem;
  color: #666;
  display: block;
}

.flight-aircraft {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #eee;
}

.flight-aircraft h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #000;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-size: .9rem;
  padding: .35rem 0;
}

.price-row .label { color: #333; }

.price-row .leader {
  flex: 1;
  border-bottom: 2px dotted #bbb;
  transform: translateY(-4px);
}

.price-row .price {
  font-weight: 700;
  white-space: nowrap;
  color: #000;
}

.price-total {
  font-size: .8rem;
  color: #777;
  margin-top: .1rem;
}

/* ---------- Services: Route cards ---------- */
.routes-section {
  margin-top: 4rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.route-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
  padding-bottom: 1.5rem;
  color: #000;
  transition: transform var(--transition), box-shadow var(--transition);
}
.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,.25), 0 4px 12px rgba(0,0,0,.12);
}

.route-map {
  aspect-ratio: 16/9;
  background: #f2f2f2;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-map img,
.route-map svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}

.route-time {
  text-align: center;
  padding: 1.5rem 1rem .5rem;
}

.route-time i {
  font-size: 2rem;
  color: #000;
  margin-bottom: .75rem;
}

.route-time strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: #000;
}

.route-time span {
  font-size: .9rem;
  color: #666;
}

.route-label {
  text-align: center;
  font-family: var(--ff-head);
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin: 1rem 0;
  color: #000;
}

.route-desc {
  padding: 0 1.5rem;
  text-align: center;
  font-size: .9rem;
  line-height: 1.6;
  color: #333;
}

/* ---------- Fleet: full width 2-col grid ---------- */
section.block-fleet-wide {
  padding: 4rem 0;
  background: #f7f7f7;
}

.fleet-wide-grid {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.fleet-card-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  align-items: stretch;
  color: #000;
}

.fleet-card-wide .fleet-photo {
  background: #000;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.fleet-card-wide .fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.fleet-card-wide:hover .fleet-photo img { transform: scale(1.05); }

.fleet-card-wide .fleet-info {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-card-wide h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: .5rem;
}

.fleet-card-wide > .fleet-info > p {
  color: #444;
  font-size: .9rem;
  margin-bottom: .75rem;
  line-height: 1.5;
}

.fleet-specs-wide {
  list-style: none;
  padding: 0;
  margin-top: .5rem;
  font-size: .85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .15rem .75rem;
}

.fleet-specs-wide li {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px dashed #e2e2e2;
  gap: .5rem;
}

.fleet-specs-wide li strong {
  color: #666;
  font-weight: 500;
}

.fleet-specs-wide li span {
  color: #000;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 1024px) {
  .fleet-wide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .fleet-card-wide { grid-template-columns: 1fr; }
  .fleet-specs-wide { grid-template-columns: 1fr; }
  .flight-meta { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ========================================================
   CAROUSEL — used by services and routes
   Shows 3 cards per view on desktop, 2 on tablet, 1 on mobile.
   Snap=start so every click lands a full card at the left edge.
   Arrow buttons sit OUTSIDE the track.
   ======================================================== */
.carousel-wrapper {
  position: relative;
  margin: 2rem auto 0;
  padding: 0 68px;
  max-width: 1800px;
  width: 100%;
}

.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel > * {
  /* 3 cards per view, two 1.5rem gaps between */
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

/* Disable text + image selection and native image drag while the
   user is dragging the carousel — avoids accidental text-copy or
   drag-preview of the helicopter photos. */
.carousel.is-dragging,
.carousel.is-dragging * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.carousel img {
  -webkit-user-drag: none;
  user-select: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.carousel-arrow:hover {
  background: #333;
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow:disabled { opacity: .25; cursor: default; }
.carousel-arrow.prev { left: 6px; }
.carousel-arrow.next { right: 6px; }

/* Tablet: 2 per view */
@media (max-width: 1100px) {
  .carousel > * { flex-basis: calc((100% - 1.5rem) / 2); }
}

/* Mobile: 1 per view */
@media (max-width: 680px) {
  .carousel-wrapper { padding: 0 2.5rem; }
  .carousel > * { flex-basis: 100%; }
  .carousel-arrow {
    width: 40px; height: 40px;
    background: rgba(0,0,0,.85);
  }
  .carousel-arrow.prev { left: 0; }
  .carousel-arrow.next { right: 0; }
}

/* ========================================================
   FLEET — full-width alternating rows (photo | text)
   ======================================================== */
section.block-fleet-rows {
  padding: 0;
  background: #000;
}

.fleet-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
}

.fleet-row .fleet-photo-cell {
  overflow: hidden;
  background: #fff;
  position: relative;
}

.fleet-row .fleet-photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.fleet-row:hover .fleet-photo-cell img { transform: scale(1.04); }

.fleet-row .fleet-info-cell {
  background: #000;
  color: #fff;
  padding: 3.5rem clamp(1.5rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-row .fleet-info-cell h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.fleet-row .fleet-info-cell p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.fleet-row-specs {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  color: #fff;
  font-style: italic;
  font-size: .95rem;
}

.fleet-row-specs li {
  padding: .35rem 0;
}

.fleet-row-specs li strong {
  font-weight: 700;
  font-style: italic;
  color: #fff;
}

/* Alternate photo/text: default info-left+photo-right;
   even rows reverse to photo-left+info-right. */
.fleet-row:nth-child(even) .fleet-photo-cell { order: 1; }
.fleet-row:nth-child(even) .fleet-info-cell  { order: 2; }

@media (max-width: 900px) {
  .fleet-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .fleet-row .fleet-photo-cell {
    aspect-ratio: 16/10;
  }
  .fleet-row:nth-child(even) .fleet-photo-cell { order: 1; }
  .fleet-row:nth-child(even) .fleet-info-cell { order: 2; }
  .fleet-row .fleet-info-cell { padding: 2.5rem 1.5rem; }
}

/* ========================================================
   PASSEIO LANDING — redesigned packages + Google reviews
   ======================================================== */

.passeio-section {
  background: linear-gradient(180deg, #f2f2f2 0%, #e5e5e5 100%);
  padding: 5rem 1.5rem;
}

.passeio-section .section-title {
  color: #000;
  text-transform: none;
}
.passeio-section .section-title::after { background: #000; }

.passeio-subtitle {
  text-align: center;
  font-family: var(--ff-head);
  font-weight: 500;
  letter-spacing: 4px;
  font-size: clamp(.95rem, 1.3vw, 1.15rem);
  margin: -1rem 0 3rem;
  color: #333;
  text-transform: uppercase;
}

.passeio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

.passeio-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.2), 0 2px 8px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  color: #000;
  transition: transform var(--transition), box-shadow var(--transition);
}

.passeio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,.28), 0 4px 12px rgba(0,0,0,.15);
}

.passeio-card .badge-promo {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: #000;
  color: #fff;
  font-size: .7rem;
  letter-spacing: 1px;
  padding: .25rem .65rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.passeio-card .card-photo {
  aspect-ratio: 4/3;
  background: #000;
  overflow: hidden;
}
.passeio-card .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.passeio-card .strip-cancel {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: .82rem;
  padding: .5rem;
  letter-spacing: .5px;
}

.passeio-card .price-area {
  text-align: center;
  padding: 1rem .75rem .75rem;
  background: #fff;
}
.passeio-card .price-big {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.passeio-card .price-per {
  font-size: .85rem;
  color: #000;
  margin-top: .25rem;
}

.passeio-card .pax-line {
  text-align: center;
  padding: .6rem;
  background: #f5f5f5;
  font-size: .8rem;
  color: #222;
  letter-spacing: .5px;
}

.passeio-card .card-cartao {
  text-align: center;
  padding: .55rem;
  background: #fff;
  font-size: .8rem;
  color: #333;
  font-weight: 500;
}

.passeio-card .strip-time {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  padding: .55rem;
}

.passeio-card .card-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem .75rem .75rem;
  background: #fff;
}

.passeio-card .card-actions .btn {
  width: 100%;
  justify-content: center;
  padding: .65rem 1rem;
  font-size: .85rem;
  letter-spacing: .5px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.passeio-card .btn-reserve {
  background: #000;
  color: #fff;
}
.passeio-card .btn-reserve:hover { background: #222; color: #fff; }

.passeio-card .btn-know-more {
  background: #fff;
  color: #000;
  border-color: #000;
}
.passeio-card .btn-know-more:hover { background: #f0f0f0; color: #000; }

.passeio-card .cancel-sub {
  padding: .5rem .75rem;
  color: #999;
  font-size: .75rem;
  text-align: center;
  line-height: 1.3;
}

.passeio-card .consult-less {
  padding: .65rem .75rem 1rem;
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
  color: #000;
  line-height: 1.35;
}

/* Consult more below cards */
.consult-more-area {
  text-align: center;
  margin-top: 3rem;
  color: #000;
}

.consult-more-area .kicker {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: .95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.consult-more-area .btn-attendant {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  padding: 1rem clamp(2rem, 5vw, 4rem);
  background: #000;
  color: #fff;
  border-radius: 8px;
  letter-spacing: 2px;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  transition: background var(--transition), transform var(--transition);
}
.consult-more-area .btn-attendant:hover {
  background: #222;
  transform: translateY(-2px);
  color: #fff;
}

.consult-more-area .pax-footer {
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 1px;
}

@media (max-width: 560px) {
  .passeio-cards { grid-template-columns: 1fr; }
}

/* ========================================================
   GOOGLE REVIEWS section — matches Google widget style
   ======================================================== */
section.reviews-section {
  background: #fff;
  padding: 5rem 1.5rem 6rem;
  color: #000;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-header h2.excellent {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 2px;
  font-weight: 700;
  color: #000;
  margin-bottom: .75rem;
  text-transform: uppercase;
}

.reviews-header .big-stars {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #FBBC04;
  letter-spacing: 4px;
  margin-bottom: .5rem;
  line-height: 1;
}

.reviews-header .rating-count {
  font-size: 1rem;
  color: #222;
  margin-bottom: 1rem;
}
.reviews-header .rating-count strong { font-weight: 700; }

.google-wordmark {
  height: 36px;
  width: auto;
  margin: .5rem auto 0;
}

/* Review card — Google widget style */
.review-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  color: #000;
  min-height: 280px;
  position: relative;
}

.review-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  position: relative;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--ff-head);
  font-size: 1rem;
  flex-shrink: 0;
}

.review-top .review-date {
  color: #222;
  font-size: .9rem;
  font-weight: 500;
}

.review-g-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.review-stars-row .stars {
  color: #FBBC04;
  letter-spacing: 2px;
  font-size: 1rem;
  line-height: 1;
}

.review-verified {
  width: 16px;
  height: 16px;
  fill: #1A73E8;
  flex-shrink: 0;
}

.review-text {
  flex: 1;
  color: #222;
  font-size: .92rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-more {
  margin-top: auto;
  padding-top: .75rem;
  font-size: .85rem;
  color: #888;
  text-align: center;
  border-top: 1px solid #eee;
  transition: color var(--transition);
}
.review-more:hover { color: #000; }

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ========================================================
   HOME POLISH — hero rating, stats strip, gallery mosaic
   ======================================================== */

/* Hero CTAs wrapper so multiple buttons stack cleanly */
.hero-ctas {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Rating badge in the hero */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  font-size: .92rem;
  backdrop-filter: blur(8px);
  margin-top: .25rem;
}
.hero-rating .stars { color: #FBBC04; letter-spacing: 2px; }
.hero-rating strong { color: #fff; font-weight: 700; }
.hero-rating .hr-meta { opacity: .85; font-weight: 400; }

/* Stats strip — 4 big numbers on #111 */
section.stats-strip {
  background: #111;
  color: #fff;
  padding: 3rem 1.5rem;
}
.stats-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 1rem .5rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.stat-number {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat-item + .stat-item::before { display: none; }
}

/* Gallery mosaic */
section.gallery-section {
  background: #000;
  color: #fff;
  padding: 5rem 1.5rem;
}
section.gallery-section .section-title { color: #fff; }
section.gallery-section .section-title::after { background: #fff; }

.gallery-grid {
  max-width: 1400px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: .75rem;
}
.gallery-grid > a {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: #111;
  display: block;
}
.gallery-grid > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  display: block;
}
.gallery-grid > a:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gallery-grid > a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-grid > a:hover::after { opacity: 1; }

/* Span bigger tiles */
.gallery-grid .g-span-2 { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-wide   { grid-column: span 2; }
.gallery-grid .g-tall   { grid-row: span 2; }

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-grid .g-span-2 { grid-column: span 2; }
  .gallery-grid .g-wide, .gallery-grid .g-tall { grid-column: span 1; grid-row: span 1; }
}

/* ========================================================
   FROTA POLISH — compare strip + "Ideal para" tag
   ======================================================== */

section.fleet-compare {
  background: #f5f5f5;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid #e2e2e2;
}
.compare-title {
  text-align: center;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1.5rem;
}
.compare-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.compare-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.compare-card:hover {
  border-color: #000;
  transform: translateY(-4px);
}
.compare-card h4 {
  font-size: .98rem;
  font-weight: 700;
  color: #000;
  margin-bottom: .5rem;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem .5rem;
  font-size: .78rem;
  margin: 0;
  text-align: left;
}
.compare-card dt { color: #888; font-weight: 500; }
.compare-card dd { color: #000; margin: 0; text-align: right; font-weight: 600; }
@media (max-width: 980px) {
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* "Ideal para" tag on each fleet row */
.fleet-ideal {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  align-self: center;
}
.fleet-ideal i { color: #fff; font-size: .75rem; }

/* Improve spacing / hierarchy in the fleet-info-cell */
.fleet-row .fleet-info-cell {
  gap: .25rem;
}
.fleet-row .fleet-info-cell > * { max-width: 540px; margin-left: auto; margin-right: auto; }
.fleet-row .fleet-info-cell h3 { margin-bottom: .85rem; }

/* Prettier spec list: 2-column grid */
.fleet-row-specs {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .15rem .75rem;
  font-style: normal;
  font-size: .9rem;
  max-width: 540px;
}
.fleet-row-specs li {
  padding: .4rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.15);
  font-style: normal;
  display: flex;
  justify-content: space-between;
  gap: .5rem;
}
.fleet-row-specs li strong {
  color: rgba(255,255,255,.65);
  font-style: normal;
  font-weight: 500;
}
.fleet-row-specs li span {
  color: #fff;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 680px) {
  .fleet-row-specs { grid-template-columns: 1fr; }
}
