/* ábordo turismo */

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0d10;
  --foam: #f7f7f5;
  --muted: #5c6370;
  --line: rgba(11, 13, 16, 0.1);
  --white: #ffffff;
  --yellow: #f0b429;
  --yellow-strong: #e8a017;
  --blue: #1a73e8;
  --blue-strong: #1557b0;
  --wa: #25d366;
  --wa-dark: #1ebe57;
  --header-h: 4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Gotham", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1120px;
  --float-h: 4.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--foam);
  padding-bottom: calc(var(--float-h) + 1.25rem + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

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

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

a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(37, 211, 102, 0.22);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header — só aparece ao rolar */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: calc(var(--header-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(14px);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  height: 2.4rem;
  width: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0 0.95rem 0 0.7rem;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.header-cta .wa-glyph {
  flex-shrink: 0;
}

.header-cta:hover,
.header-cta:active {
  background: var(--wa-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 3.35rem;
  padding: 0.7rem 1.5rem;
  border-radius: 0.4rem;
  font-family: var(--font-display);
  border: 0;
  text-align: center;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }
}

.btn-yellow,
.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn-yellow:hover,
.btn-wa:hover,
.btn-wa:active {
  background: var(--wa-dark);
}

.btn-wa {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 22.5rem);
  min-height: 3.75rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-align: center;
}

.btn-wa-icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.btn-wa-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
}

.btn-main {
  font-weight: 900;
  font-size: 0.98rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.btn-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  line-height: 1.2;
  opacity: 0.88;
}

.btn-cta {
  width: min(100%, 22.5rem);
}

.hero .btn-wa {
  width: 100%;
  min-height: 4.05rem;
  box-shadow:
    0 14px 34px rgba(37, 211, 102, 0.48),
    0 0 0 6px rgba(37, 211, 102, 0.16);
  animation: wa-glow 2.6s ease-in-out infinite;
}

@keyframes wa-glow {
  0%, 100% {
    box-shadow:
      0 14px 34px rgba(37, 211, 102, 0.42),
      0 0 0 6px rgba(37, 211, 102, 0.14);
  }
  50% {
    box-shadow:
      0 16px 38px rgba(37, 211, 102, 0.58),
      0 0 0 10px rgba(37, 211, 102, 0.22);
  }
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-strong);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  text-align: center;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 16, 0.28) 0%, rgba(11, 13, 16, 0.42) 38%, rgba(11, 13, 16, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  padding: calc(7.25rem + env(safe-area-inset-top, 0px)) 1.15rem 4.25rem;
  margin-top: 0;
  animation: rise 0.85s var(--ease) both;
}

.hero-tear {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: clamp(3.75rem, 9vw, 5.75rem);
  color: var(--foam);
  pointer-events: none;
  line-height: 0;
  filter: drop-shadow(0 -4px 7px rgba(0, 0, 0, 0.28));
}

.hero-tear svg {
  display: block;
  width: 104%;
  height: 100%;
  margin-left: -2%;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  margin: 0 auto 0.85rem;
  width: min(168px, 46vw);
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  margin: 0 auto 0.55rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 6.6vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 auto 0.9rem;
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.7rem;
  margin: 0 0 1.05rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof .stars {
  color: var(--yellow);
  letter-spacing: 0.04em;
}

.hero-meta {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--yellow);
}

.hero-meta a {
  color: var(--yellow);
}

/* Sections */
.section-head {
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  padding: 0 1.15rem;
  text-align: center;
}

.section-head h2,
.route-copy h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.45rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 1.15rem;
}

/* Routes */
.routes {
  padding: 4.5rem 0 2.5rem;
}

.route {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 20rem;
}

.route img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.route:hover img {
  transform: scale(1.04);
}

.route::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(11, 13, 16, 0.86) 100%);
}

.route-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-align: left;
}

.route-copy h3 {
  color: var(--white);
  font-size: 1.7rem;
}

.route-copy p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.route-wide {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 26rem;
}

.route-wide,
.routes-pair {
  padding-inline: 1.15rem;
}

.routes-pair {
  max-width: var(--max);
  margin: 0.85rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.routes-pair .route {
  min-height: 24rem;
}

@media (max-width: 760px) {
  .routes-pair {
    grid-template-columns: 1fr;
  }

  .route-wide,
  .routes-pair .route {
    min-height: 18rem;
  }
}

/* About — faixa fotográfica */
.about {
  position: relative;
  min-height: min(72svh, 34rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.about-media {
  position: absolute;
  inset: 0;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.about-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 16, 0.18) 0%, rgba(11, 13, 16, 0.55) 42%, rgba(11, 13, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(11, 13, 16, 0.55) 0%, transparent 62%);
}

.about-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.5rem 1.15rem 3rem;
}

.about-content .eyebrow {
  color: var(--yellow);
}

.about-content h2 {
  margin: 0 0 0.75rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.about-lead {
  margin: 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .about {
    min-height: 28rem;
  }

  .about-content {
    padding: 3.25rem 1.15rem 2.5rem;
  }
}

.site-footer {
  padding: 1.5rem 1.15rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

/* WhatsApp float — comprido, 2 linhas */
.whatsapp-float {
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(16px);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: min(calc(100vw - 1.5rem), 22rem);
  min-height: 3.55rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.4),
    0 0 0 5px rgba(37, 211, 102, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: background 0.2s ease, transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.whatsapp-float.is-visible:hover {
  background: var(--wa-dark);
  transform: translateX(-50%) translateY(-2px);
}

.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.whatsapp-float-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
}

.whatsapp-float-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.92rem;
  line-height: 1.15;
  white-space: nowrap;
}

.whatsapp-float-sub {
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.9;
  white-space: nowrap;
}

@media (max-width: 380px) {
  .whatsapp-float-main {
    font-size: 0.82rem;
  }

  .whatsapp-float-sub {
    font-size: 0.62rem;
  }
}

/* Chat Letícia */
.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--float-h) + 1.4rem + env(safe-area-inset-bottom));
  z-index: 55;
  width: min(calc(100vw - 2rem), 20rem);
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  animation: chat-in 0.45s var(--ease) both;
}

.chat-widget[hidden] {
  display: none;
}

@keyframes chat-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 2.2rem 0.9rem 0.9rem;
  background: #075e54;
  color: var(--white);
}

.chat-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.chat-head strong {
  display: block;
  font-size: 0.95rem;
}

.chat-head span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.85;
}

.chat-online {
  margin-left: auto;
  font-size: 0.68rem !important;
  color: #8ef0a8;
}

.chat-body {
  padding: 0.9rem;
  background: #ece5dd;
}

.chat-bubble {
  max-width: 92%;
  padding: 0.75rem 0.85rem;
  background: var(--white);
  border-radius: 0.25rem 0.85rem 0.85rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.chat-cta {
  display: block;
  margin: 0;
  padding: 0.95rem 1rem;
  background: var(--wa);
  color: var(--white);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
}

.chat-cta:hover {
  background: var(--wa-dark);
}

body.chat-open {
  padding-bottom: calc(18.5rem + env(safe-area-inset-bottom));
}

body.chat-open .whatsapp-float.is-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.whatsapp-float[hidden] {
  display: none !important;
}

@media (max-width: 520px) {
  .chat-widget {
    left: 1rem;
    right: 1rem;
    width: auto;
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

/* Aviso estilo notificação iOS / WhatsApp */
.wa-toast {
  position: fixed;
  top: calc(0.55rem + env(safe-area-inset-top, 0px));
  left: 50%;
  z-index: 80;
  width: min(calc(100% - 1.5rem), 24.5rem);
  padding: 0.55rem 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  background: rgba(246, 246, 248, 0.78);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  backdrop-filter: blur(28px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1.35rem;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
  color: #111;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
  transform: translate(-50%, calc(-120% - env(safe-area-inset-top, 0px)));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}

.wa-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.wa-toast.is-leaving {
  transform: translate(-50%, calc(-120% - env(safe-area-inset-top, 0px)));
  opacity: 0;
  pointer-events: none;
}

.wa-toast[hidden] {
  display: none !important;
}

.wa-toast:active {
  transform: translate(-50%, 2px) scale(0.985);
}

.wa-toast-handle {
  display: block;
  width: 2.2rem;
  height: 0.28rem;
  margin: 0 auto 0.42rem;
  border-radius: 999px;
  background: rgba(60, 60, 67, 0.22);
}

.wa-toast-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.18rem;
}

.wa-toast-app {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  color: rgba(60, 60, 67, 0.72);
}

.wa-toast-badge {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.32rem;
  background: #25d366;
  flex-shrink: 0;
}

.wa-toast-badge svg {
  display: block;
}

.wa-toast-time {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(60, 60, 67, 0.45);
}

.wa-toast-body {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.wa-toast-avatar {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
}

.wa-toast-avatar svg {
  display: block;
}

.wa-toast-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.wa-toast-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #111;
}

.wa-toast-msg {
  font-size: 0.9rem;
  line-height: 1.32;
  font-weight: 400;
  color: #1c1c1e;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .wa-toast {
    background: rgba(245, 245, 247, 0.96);
  }
}

/* Instagram embed slot */
.social {
  padding: 3rem 1.15rem 2.5rem;
}

.ig-embed {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 12rem;
  overflow: hidden;
}

.ig-embed behold-widget {
  display: block;
  width: 100%;
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: 0.4rem;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: 0.4rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.btn-google:hover {
  border-color: #4285f4;
}

/* Google reviews carousel */
.reviews {
  padding: 3.5rem 0 2.5rem;
  background: #fff;
}

.reviews-score {
  margin: 0.35rem 0 0;
  font-weight: 600;
}

.reviews-carousel {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.75rem;
}

.reviews-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0.1rem 0.85rem;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(85vw, 320px);
  scroll-snap-align: start;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--foam);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.review-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--av, #5f6368);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-top strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
}

.review-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.review-meta .stars {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.review-g {
  margin-left: auto;
  opacity: 0.9;
}

.review-card > p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft, #1a1d24);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
  left: 0.35rem;
}

.carousel-next {
  right: 0.35rem;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: 0.4rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.btn-google:hover {
  border-color: #4285f4;
}

@media (max-width: 640px) {
  .reviews-carousel {
    padding: 0 1.15rem;
  }

  .carousel-nav {
    display: none;
  }

  .review-card {
    flex-basis: min(86vw, 20rem);
  }

  .section-cta .btn-wa,
  .about .btn-wa {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-content {
    padding-inline: 1rem;
  }

  .hero-logo {
    width: min(158px, 48vw);
    margin-bottom: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    max-width: none;
  }

  .hero-lead {
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
  }

  .hero-proof {
    margin-bottom: 0.9rem;
  }

  .btn-main {
    font-size: 0.94rem;
  }

  .route-copy {
    padding: 1.2rem;
  }

  .route-copy h3 {
    font-size: 1.45rem;
  }

  .social,
  .routes {
    padding-top: 3.25rem;
  }
}

@media (max-height: 740px) {
  .hero-logo {
    width: min(140px, 40vw);
    margin-bottom: 0.55rem;
  }

  .hero h1 {
    margin-bottom: 0.4rem;
  }

  .hero-lead {
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
  }

  .hero-proof {
    margin-bottom: 0.8rem;
  }

  .hero-content {
    padding-top: calc(6.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: 3.4rem;
    margin-top: 0;
  }

  .hero-tear {
    height: 3.5rem;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .chat-widget,
  .hero-content,
  .wa-toast {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .wa-toast.is-visible {
    transform: translate(-50%, 0);
  }

  .hero .btn-wa {
    animation: none;
  }
}
