/* LinkTravel — Layout limpo (referencia Pontual) */

:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --text: #0c1b33;
  --text-soft: #5a6578;
  --text-muted: #8b95a5;
  --primary: #1565c0;
  --secondary: #0d47a1;
  --border: #e4e9f0;
  --footer-bg: #061428;
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 72px;
  --shadow: 0 4px 24px rgba(12, 27, 51, 0.07);
  --shadow-card: 0 2px 12px rgba(12, 27, 51, 0.06);
  --cards-grid-gap: 40px;
  --cards-grid-gap-mobile: 32px;
  --gradient-brand: linear-gradient(135deg, var(--primary), var(--secondary));
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.hidden { display: none !important; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-bar {
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
}

.brand-logo img {
  display: block;
  max-height: 44px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-logo-fallback {
  display: block;
}

.brand-logo-fallback {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  width: max-content;
  max-width: 100%;
  flex-shrink: 0;
}

.header-actions .btn {
  white-space: nowrap;
  flex: 0 0 auto;
  width: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), transform 0.15s;
}

.btn:active { transform: scale(0.98); }
.btn-sm { padding: 9px 16px; font-size: 0.84rem; }

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary);
}

.btn-outline {
  color: var(--primary);
  background: transparent;
  border: 1.5px solid color-mix(in srgb, var(--primary) 40%, #e2e8f0);
}

.btn-outline:hover {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}

.btn-cart {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
}

.btn-cart:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
}

.btn-outline-light {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-card {
  width: 100%;
  min-height: 46px;
  padding: 13px 20px;
  border: none;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn-card:hover {
  background: var(--secondary);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--primary) 24%, transparent);
}

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

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 980px);
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: left;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 20, 40, 0.9) 0%,
    rgba(6, 20, 40, 0.58) 48%,
    rgba(6, 20, 40, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  padding: 48px 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero__eyebrow {
  margin: 0 0 22px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.85rem, 7vw, 4.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.hero h1 .hero__highlight {
  position: relative;
  white-space: nowrap;
}

.hero h1 .hero__highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.11em;
  border-radius: 2px;
  background: var(--hero-highlight-underline, linear-gradient(90deg, var(--primary), var(--secondary)));
  opacity: 0.92;
}

.hero__subtitle {
  margin: 30px 0 0;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 42px;
}

.hero__actions.hidden,
.hero__actions[hidden] {
  display: none !important;
}

.hero__actions .btn {
  min-height: 52px;
  padding: 14px 30px;
  font-size: 1.02rem;
  font-weight: 700;
}

.hero__actions .btn.hidden,
.hero__actions .btn[hidden] {
  display: none !important;
}

/* ── Sections ───────────────────────────────────────── */
.section {
  padding: 56px 0;
  background: var(--surface);
}

.section-alt {
  background: var(--bg);
}

.section--themed {
  background-color: var(--secao-bg, var(--surface));
  color: var(--secao-text, var(--text));
}

.section--themed .section-title-block h2 {
  color: var(--secao-title, var(--secao-text, var(--text)));
}

.section--themed .section-eyebrow {
  color: var(--secao-text, var(--text-soft));
  opacity: 0.88;
}

.section--themed .section-desc,
.section--themed .dynamic-section__body,
.section--themed .dynamic-section__body p,
.section--themed .dynamic-section__body .faq-list details summary {
  color: var(--secao-text, var(--text-soft));
  opacity: 0.88;
}

.section-galeria.section--themed {
  background: var(--secao-bg, var(--bg));
}

.section-galeria.section--themed .gallery-carousel__footer {
  background: var(--secao-bg, var(--bg));
}

.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-title-block h2 {
  margin: 4px 0 0;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-title-block--center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-desc {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.search-box input {
  width: min(300px, 80vw);
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-box input::placeholder { color: var(--text-muted); }

.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.empty-msg {
  margin: 0;
  padding: 40px 24px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* ── Cards grid ─────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 300px));
  justify-content: center;
  gap: var(--cards-grid-gap);
  align-items: stretch;
}

.section[data-secao-servicos] {
  padding: 64px 0;
}

.section[data-secao-servicos] .section-title-block--center {
  margin-bottom: 48px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
}

a.tour-card,
.tour-card--link {
  text-decoration: none;
  color: inherit;
}

.tour-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.tour-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 18%, var(--border));
}

.tour-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf3;
}

.tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card:hover .tour-card__media img { transform: scale(1.04); }

.tour-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--primary);
}

.tour-card__price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.tour-card__price-value {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.1;
}

.tour-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
  gap: 0;
}

.tour-card__title {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.tour-card__desc {
  flex: 1;
  margin: 0 0 18px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__footer {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tour-card__label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Features (Por que nos) ─────────────────────────── */
#sobre {
  background: var(--porque-bg, var(--surface));
}

#sobre .section-title-block h2 {
  color: var(--porque-title, var(--text));
}

#sobre .feature-card__icon {
  color: var(--porque-icon, var(--primary));
  background: color-mix(in srgb, var(--porque-icon, var(--primary)) 10%, #fff);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
}

.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, #fff);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-soft);
}

/* ── Seções dinâmicas ───────────────────────────────── */
.dynamic-section__body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.dynamic-section__body p { margin: 0 0 1rem; }

.section-banner {
  padding: 0;
}

.section-banner__img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── Galeria (carrossel full-bleed) ──────────────────── */
.section-galeria {
  background: linear-gradient(180deg, var(--bg) 0%, #eef2f8 45%, var(--bg) 100%);
  padding: 48px 0 0;
}

.section-galeria .container {
  margin-bottom: 28px;
}

.section-title-block--galeria h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.gallery-carousel {
  outline: none;
}

.gallery-carousel--full {
  width: 100%;
  max-width: none;
  margin: 0;
}

.gallery-carousel:focus-visible .gallery-carousel__viewport-wrap {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.gallery-carousel__viewport-wrap {
  position: relative;
  width: 100%;
}

.gallery-carousel__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: #0f172a;
}

.gallery-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  margin: 0;
}

.gallery-carousel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: min(50vh, 520px);
  overflow: hidden;
}

.gallery-carousel__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.35) 100%);
  pointer-events: none;
}

.gallery-carousel__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.gallery-carousel__slide.is-active .gallery-carousel__frame img {
  transform: scale(1);
}

.gallery-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.gallery-carousel__nav--prev { left: 20px; }
.gallery-carousel__nav--next { right: 20px; }

.gallery-carousel__nav:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.gallery-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 16px 40px;
  background: linear-gradient(180deg, #eef2f8 0%, var(--bg) 100%);
}

.gallery-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.gallery-carousel__dot.is-active {
  width: 32px;
  background: var(--primary);
}

.gallery-carousel__dot:hover:not(.is-active) {
  background: #94a3b8;
}

.gallery-carousel__counter {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .section-galeria { padding-top: 36px; }

  .gallery-carousel__frame {
    aspect-ratio: 16 / 10;
    max-height: min(45vh, 400px);
  }

  .gallery-carousel__nav {
    width: 42px;
    height: 42px;
  }

  .gallery-carousel__nav--prev { left: 12px; }
  .gallery-carousel__nav--next { right: 12px; }

  .gallery-carousel__footer {
    padding-bottom: 32px;
  }
}

/* legacy grid (seções antigas) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.faq-item p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.testimonial-card p {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.6;
}

.testimonial-card footer {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg, #061428);
  color: var(--footer-text, rgba(255, 255, 255, 0.85));
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.85fr;
  gap: 48px;
  padding: 52px 0 44px;
}

.footer-col.hidden {
  display: none;
}

.footer-logo { margin-bottom: 16px; }
.footer-logo img { max-height: 40px; width: auto; }

.footer-logo-fallback {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--footer-title, var(--footer-text, #fff));
}

.footer-desc {
  margin: 0 0 20px;
  max-width: 400px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--footer-text-muted, rgba(255, 255, 255, 0.65));
  opacity: 0.75;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--footer-social, #fff);
  border: 1px solid color-mix(in srgb, var(--footer-social, #fff) 28%, transparent);
  transition: background var(--transition);
}

.footer-social a:hover {
  background: color-mix(in srgb, var(--footer-social, #fff) 12%, transparent);
}

.footer-heading {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--footer-title, var(--footer-text, #fff));
}

.footer-contact-list { display: grid; gap: 16px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  background: var(--footer-icon, var(--primary));
}

.footer-contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--footer-text-muted, rgba(255, 255, 255, 0.5));
  opacity: 0.7;
  margin-bottom: 2px;
}

.footer-contact-item a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--footer-text, #fff);
}

.footer-contact-item a:hover { opacity: 0.8; }

.footer-contact-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--footer-text, #fff);
}

.footer-links-list {
  display: grid;
  gap: 10px;
}

.footer-links-list a {
  color: var(--footer-text, #fff);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links-list a:hover { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom-inner p {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--footer-text-muted, rgba(255, 255, 255, 0.45));
  opacity: 0.65;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--footer-text-muted, rgba(255, 255, 255, 0.5));
  opacity: 0.7;
}

.footer-legal a:hover { color: var(--footer-text, #fff); opacity: 1; }

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-fab.hidden { display: none; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-bar {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }
}

/* ── Mobile nav drawer ───────────────────────────────── */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  pointer-events: none;
}

.mobile-nav-drawer:not([hidden]) {
  pointer-events: auto;
}

.mobile-nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer.is-open .mobile-nav-drawer__backdrop {
  opacity: 1;
}

.mobile-nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 320px);
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: env(safe-area-inset-top);
}

.mobile-nav-drawer.is-open .mobile-nav-drawer__panel {
  transform: translateX(0);
}

.mobile-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-drawer__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.mobile-nav-drawer__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-nav-drawer__links {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer__links .nav-link {
  display: block;
  padding: 14px 16px;
  width: 100%;
  text-align: left;
  border-radius: 8px;
}

.mobile-nav-drawer__links .nav-link:hover,
.mobile-nav-drawer__links .nav-link.is-active {
  background: var(--bg);
  color: var(--primary);
}

.mobile-nav-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
}

.mobile-nav__action {
  width: 100%;
  justify-content: center;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-row {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box input { width: 100%; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
  }

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

  .cards-grid {
    grid-template-columns: 1fr;
    gap: var(--cards-grid-gap-mobile);
  }

  .section[data-secao-servicos] {
    padding: 48px 0;
  }

  .section[data-secao-servicos] .section-title-block--center {
    margin-bottom: 36px;
  }
}

/* ── Service drawer (e-commerce detail) ─────────────── */
body.drawer-open,
body.cart-open {
  overflow: hidden;
}

.service-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.service-drawer:not([hidden]) {
  pointer-events: auto;
}

.service-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.service-drawer.is-open .service-drawer__backdrop {
  opacity: 1;
}

.service-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 440px);
  height: 100%;
  max-height: 100dvh;
  background: #e8eef5;
  box-shadow: -8px 0 40px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-drawer.is-open .service-drawer__panel {
  transform: translateX(0);
}

.service-drawer__inner {
  height: 100%;
  overflow: hidden;
}

.drawer-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #e8eef5;
  position: relative;
}

.drawer-top {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.drawer-hero {
  position: relative;
  z-index: 1;
  height: 240px;
  background: #0f2847;
  overflow: hidden;
}

.drawer-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drawer-hero__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #0f2847;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s;
}

.drawer-hero__close:hover {
  transform: scale(1.06);
}

.drawer-hero:has(.drawer-hero__thumbs) {
  height: 248px;
}

.drawer-hero__thumbs {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.drawer-hero:has(.drawer-hero__thumbs) .drawer-hero__thumbs {
  bottom: 54px;
}

.drawer-hero__thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 40px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  background: none;
  transition: opacity 0.15s, border-color 0.15s;
}

.drawer-hero__thumb.is-active {
  border-color: #fff;
  opacity: 1;
}

.drawer-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drawer-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 16px 28px;
  -webkit-overflow-scrolling: touch;
}

.drawer-shell.has-booking-bar .drawer-scroll {
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.drawer-shell.has-booking-bar .drawer-book-row,
.drawer-shell.has-booking-bar .drawer-tabs,
.drawer-shell.has-booking-bar .drawer-tab-panel {
  display: none;
}

.drawer-shell.has-booking-bar .drawer-booking {
  margin-bottom: 0.5rem;
}

.drawer-booking-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #e8edf2;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
}

.drawer-booking-bar .bk-actions {
  display: flex;
  gap: 0.5rem;
  margin: 0;
}

.drawer-booking-bar .bk-btn--primary {
  flex: 1;
}

.drawer-booking-bar[hidden] {
  display: none !important;
}

.drawer-summary-card {
  position: relative;
  z-index: 3;
  margin: -52px 16px 0;
  padding: 20px 18px 18px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 36px rgba(15, 40, 71, 0.14);
}

.drawer-top .drawer-summary-card {
  margin-bottom: 4px;
}

.drawer-summary-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.drawer-summary-card__meta .drawer-cat-tag {
  margin-bottom: 0;
}

.drawer-cat-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: #e8f0fe;
}

.drawer-manage-id {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  color: #94a3b8;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e8edf2;
  line-height: 1;
  user-select: all;
  cursor: default;
  transition: color 0.15s, border-color 0.15s;
}

.drawer-manage-id:hover {
  color: #64748b;
  border-color: #cbd5e1;
}

.drawer-eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  color: #64748b;
}

.drawer-title {
  margin: 0 0 14px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #0f2847;
}

.drawer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drawer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.drawer-pill--rating strong {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: var(--primary, #2563eb);
}

.drawer-book-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 0 4px;
}

.drawer-book-row[hidden] {
  display: none !important;
}

.drawer-book-row__value {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f2847;
  line-height: 1.1;
}

.drawer-book-row__cta {
  flex-shrink: 0;
  padding: 14px 22px;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: #0f2847;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 40, 71, 0.25);
  transition: transform 0.15s, background 0.15s;
}

.drawer-book-row__cta:hover {
  background: #1a3a5c;
  transform: translateY(-1px);
}

.drawer-tabs {
  display: flex;
  gap: 4px;
  padding: 5px;
  margin-bottom: 12px;
  background: #d8e2ed;
  border-radius: 14px;
}

.drawer-tabs__btn {
  flex: 1;
  padding: 10px 6px;
  border: none;
  border-radius: 11px;
  background: transparent;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.drawer-tabs__btn.is-active {
  background: #fff;
  color: #0f2847;
  box-shadow: 0 2px 10px rgba(15, 40, 71, 0.1);
}

.drawer-tab-panel {
  display: none;
  padding: 20px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(15, 40, 71, 0.06);
}

.drawer-tab-panel.is-active {
  display: block;
}

.drawer-prose {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #334155;
}

.drawer-prose p {
  margin: 0;
}

.drawer-empty {
  margin: 0;
  font-size: 0.88rem;
  color: #94a3b8;
  text-align: center;
  padding: 12px 0;
}

.drawer-subhead {
  margin: 1rem 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.drawer-subhead:first-child {
  margin-top: 0;
}

.drawer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-list li {
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  color: #334155;
}

.drawer-list--details li {
  padding-left: 0;
}

.drawer-list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary, #2563eb);
  font-weight: 800;
}

.drawer-list--muted li {
  color: #64748b;
}

.drawer-list--muted li::before {
  content: "·";
  position: absolute;
  left: 0.35rem;
  font-weight: 700;
}

.drawer-meeting {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.drawer-meeting__pin {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.drawer-meeting p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #334155;
}

.drawer-notice {
  margin-top: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #78350f;
}

.drawer-shell--loading {
  position: relative;
  min-height: 320px;
}

.drawer-preloader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-content: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
}

.drawer-preloader__spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 3px solid #dbeafe;
  border-top-color: var(--primary, #2563eb);
  border-radius: 50%;
  animation: drawer-spin 0.8s linear infinite;
}

.drawer-preloader__text {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
}

@keyframes drawer-spin {
  to { transform: rotate(360deg); }
}

.drawer-hero--skeleton {
  background: linear-gradient(90deg, #1a3a5c 25%, #243f5f 50%, #1a3a5c 75%);
  background-size: 200% 100%;
  animation: drawer-shimmer 1.2s infinite;
}

.drawer-summary-card--skeleton {
  min-height: 140px;
}

.drawer-skeleton__line {
  height: 12px;
  border-radius: 6px;
  background: #e2e8f0;
  margin-bottom: 10px;
}

.drawer-skeleton__line--tag { width: 40%; height: 22px; border-radius: 999px; }
.drawer-skeleton__line--lg { width: 85%; height: 22px; }

@keyframes drawer-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.drawer-error {
  padding: 2rem 1.25rem;
  text-align: center;
}

.drawer-error p {
  margin: 0 0 1rem;
  color: #64748b;
}

.drawer-availability {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #f8fafc;
}

.drawer-availability__title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.drawer-availability__warn {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.82rem;
  line-height: 1.45;
}

.drawer-availability__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-availability__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.drawer-availability__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

.drawer-availability__field input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
}

.drawer-availability__field input:focus {
  outline: 2px solid color-mix(in srgb, var(--primary) 35%, transparent);
  border-color: var(--primary);
}

.drawer-availability__field--pax {
  grid-column: 1 / -1;
}

.drawer-availability__submit {
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 12px;
  background: var(--gradient-brand, var(--primary));
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.drawer-availability__submit:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}

.drawer-availability__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.drawer-availability__results {
  margin-top: 0.85rem;
}

.drawer-availability__result-meta {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #64748b;
}

.drawer-availability__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.drawer-availability__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.drawer-availability__table th,
.drawer-availability__table td {
  padding: 0.55rem 0.6rem;
  text-align: left;
  border-bottom: 1px solid #eef2f7;
  white-space: nowrap;
}

.drawer-availability__table th {
  background: #f1f5f9;
  font-weight: 700;
  color: #334155;
}

.drawer-availability__table tr:last-child td {
  border-bottom: none;
}

.drawer-availability__block {
  margin-top: 0.85rem;
}

.drawer-availability__error {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* ── Booking wizard ─────────────────────────────────── */
.drawer-booking {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition:
    max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    margin 0.4s ease;
}

.drawer-booking.is-visible {
  max-height: 3200px;
  opacity: 1;
  margin: 1rem 0 1.25rem;
  overflow: visible;
}

.drawer-booking__panel {
  position: relative;
  padding: 1.1rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid color-mix(in srgb, var(--primary) 18%, #e2e8f0);
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  overflow: visible;
}

.drawer-booking__glow {
  display: none;
}

.drawer-booking__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.drawer-booking__kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.drawer-booking__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

.drawer-booking__close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.15);
  color: #64748b;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.drawer-booking__close:hover {
  background: rgba(148, 163, 184, 0.28);
  color: #334155;
}

.booking-stepper {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.booking-stepper__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.booking-stepper__dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: #e2e8f0;
  color: #64748b;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.booking-stepper__item.is-active .booking-stepper__dot {
  background: var(--gradient-brand, var(--primary));
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary) 35%, transparent);
}

.booking-stepper__item.is-done .booking-stepper__dot {
  background: #dcfce7;
  color: #15803d;
}

.booking-stepper__label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-stepper__item.is-active .booking-stepper__label {
  color: var(--primary);
}

.booking-step {
  animation: booking-step-in 0.35s ease;
}

@keyframes booking-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-step__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-step__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.booking-step__desc {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #64748b;
}

.booking-pax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.booking-pax-card {
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.booking-pax-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.booking-pax-card__emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.booking-pax-card__head strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
}

.booking-pax-card__head span {
  display: block;
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
}

.booking-pax-card__ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.booking-pax-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fafc;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.booking-pax-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--primary) 10%, #fff);
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
}

.booking-pax-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-pax-val {
  min-width: 1.5rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.booking-pax-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 8%, #fff);
  font-size: 0.82rem;
  color: #475569;
}

.booking-pax-total strong {
  font-size: 1rem;
  color: var(--primary);
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

.booking-field input {
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.88rem;
  background: #fff;
}

.booking-field input:focus {
  outline: 2px solid color-mix(in srgb, var(--primary) 35%, transparent);
  border-color: var(--primary);
}

.booking-error {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.82rem;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: 12px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.booking-btn--primary {
  width: 100%;
  background: var(--gradient-brand, var(--primary));
  color: #fff;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary) 30%, transparent);
}

.booking-btn--primary:hover:not(:disabled) {
  opacity: 0.94;
  transform: translateY(-1px);
}

.booking-btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.booking-btn--ghost {
  background: transparent;
  color: #64748b;
  border: 1px solid var(--border);
}

.booking-btn--confirm {
  background: linear-gradient(135deg, #16a34a, #059669);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.booking-step__actions {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.booking-step__actions .booking-btn--primary {
  flex: 1;
  width: auto;
}

.booking-days {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.55rem;
}

.booking-day-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.booking-day-card:hover {
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
  transform: translateY(-2px);
}

.booking-day-card.is-selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 6%, #fff);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 20%, transparent);
}

.booking-day-card__date {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.booking-day-card__meta {
  font-size: 0.72rem;
  color: #64748b;
}

.booking-day-card__price {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.booking-day-card__hint {
  font-size: 0.65rem;
  color: #94a3b8;
}

.booking-pickup-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.booking-pickup-search svg {
  flex-shrink: 0;
  color: #94a3b8;
}

.booking-pickup-search input {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  font-size: 0.88rem;
  background: transparent;
}

.booking-pickup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.booking-pickup-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
}

.booking-pickup-item:last-child {
  border-bottom: none;
}

.booking-pickup-item:hover {
  background: #f8fafc;
}

.booking-pickup-item.is-selected {
  background: color-mix(in srgb, var(--primary) 10%, #fff);
  font-weight: 700;
}

.booking-pickup-item__pin {
  flex-shrink: 0;
}

.booking-pickup-item__check {
  margin-left: auto;
  color: var(--primary);
  font-weight: 800;
}

.booking-empty {
  margin: 0;
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

.booking-summary {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.booking-summary__hero {
  padding: 1rem;
  background: var(--gradient-brand, linear-gradient(135deg, var(--primary), var(--secondary)));
  color: #fff;
}

.booking-summary__tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-summary__hero h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
}

.booking-summary__date {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.92;
}

.booking-summary__list {
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem;
}

.booking-summary__list > li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.82rem;
}

.booking-summary__list > li span:first-child {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-summary__pax {
  list-style: none;
  margin: 0;
  padding: 0;
}

.booking-summary__pax li {
  padding: 0.15rem 0;
  border: none;
}

.booking-summary__total {
  border-bottom: none !important;
  padding-top: 0.75rem !important;
}

.booking-summary__total strong {
  font-size: 1.25rem;
  color: var(--primary);
}

@media (max-width: 480px) {
  .service-drawer__panel {
    width: 100%;
  }

  .drawer-book-row {
    flex-direction: column;
    align-items: stretch;
  }

  .drawer-book-row__cta {
    width: 100%;
    text-align: center;
  }

  .drawer-tabs__btn {
    font-size: 0.68rem;
    padding: 9px 4px;
  }

  .drawer-availability__fields,
  .booking-pax-grid,
  .booking-dates {
    grid-template-columns: 1fr;
  }

  .booking-stepper__label {
    font-size: 0.58rem;
  }
}

/* ── Cart drawer ────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 210;
  pointer-events: none;
}

.cart-drawer:not([hidden]) {
  pointer-events: auto;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 460px);
  height: 100%;
  max-height: 100dvh;
  background: var(--surface, #fff);
  box-shadow: -8px 0 40px color-mix(in srgb, var(--primary) 12%, rgba(15, 23, 42, 0.18));
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__inner {
  height: 100%;
  overflow: hidden;
}

.cart-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 28px calc(28px + env(safe-area-inset-bottom));
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 12%, var(--border));
}

.cart-header__text {
  min-width: 0;
}

.cart-kicker {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.cart-title {
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.cart-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.cart-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s, color 0.15s;
}

.cart-close:hover {
  background: color-mix(in srgb, var(--primary) 8%, #fff);
  color: var(--secondary);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

.cart-empty-hint {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted, var(--text-soft));
}

.cart-empty-hint strong {
  color: var(--text-soft);
  font-weight: 700;
}

.cart-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--primary) 14%, var(--border));
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary) 4%, #fff);
}

.cart-item__thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}

.cart-item__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.cart-item__meta {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}

.cart-item__details {
  margin: 0;
  display: grid;
  gap: 4px;
}

.cart-item__details div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}

.cart-item__details dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.cart-item__details dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.cart-item__details-total {
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px dashed color-mix(in srgb, var(--primary) 15%, var(--border));
}

.cart-item__details-total dd {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.cart-item__remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border));
  border-radius: 50%;
  background: var(--surface, #fff);
  color: var(--text-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.cart-item__remove:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 6%, #fff);
}

.cart-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.cart-summary-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border));
  border-radius: 18px;
  background: color-mix(in srgb, var(--primary) 5%, #fff);
}

.cart-summary-secure {
  flex: 1;
  margin: 0;
  max-width: 220px;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.cart-summary-total {
  flex-shrink: 0;
  text-align: right;
}

.cart-total-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.cart-total-value {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.cart-total-currency {
  font-size: 1rem;
  font-weight: 800;
}

.cart-total-amount {
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-btn-clear,
.cart-btn-checkout {
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.cart-btn-clear {
  border: 1.5px solid color-mix(in srgb, var(--primary) 25%, var(--border));
  background: var(--surface, #fff);
  color: var(--primary);
}

.cart-btn-clear:hover:not(:disabled) {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 6%, #fff);
}

.cart-btn-checkout {
  margin-left: auto;
  border: none;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary) 32%, transparent);
}

.cart-btn-checkout:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--secondary) 35%, transparent);
}

.cart-btn-clear:disabled,
.cart-btn-checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .cart-drawer__panel {
    width: 100%;
  }

  .cart-shell {
    padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
  }

  .cart-summary-box {
    flex-direction: column;
    gap: 16px;
  }

  .cart-summary-secure {
    max-width: none;
  }

  .cart-summary-total {
    width: 100%;
    text-align: left;
  }

  .cart-total-value {
    justify-content: flex-start;
  }

  .cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-btn-checkout {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .cart-btn-clear {
    width: 100%;
    text-align: center;
  }

  .cart-item__details div {
    grid-template-columns: 4.75rem 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Páginas institucionais ─────────────────────────────── */
.content-page {
  --content-page-max: 52rem;
  max-width: var(--content-page-max);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1rem, 3vw, 1.5rem) clamp(3rem, 6vw, 4.5rem);
}

.content-page__breadcrumb {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  font-size: 0.875rem;
}

.content-page__breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-soft, #64748b);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.content-page__breadcrumb a:hover {
  color: var(--primary);
}

.content-page__header {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.content-page__title {
  margin: 0;
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-title, var(--text));
  font-weight: 800;
}

.content-page--links-only .content-page__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

/* Cards de links / contato */
.content-page__cards {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.content-page__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
  gap: 1rem;
}

.content-page--links-only .content-page__card-list {
  gap: 1.15rem;
}

.content-page__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.25rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid color-mix(in srgb, var(--border, #e2e8f0) 90%, var(--primary) 10%);
  border-radius: 16px;
  background: var(--surface, #fff);
  color: var(--text, #0f172a);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.content-page__card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border, #e2e8f0));
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

.content-page__card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.content-page__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 11%, var(--surface, #fff));
  color: var(--primary);
  flex-shrink: 0;
}

.content-page__card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.content-page__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft, #64748b);
  line-height: 1.2;
}

.content-page__card-value {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-title, var(--text));
  word-break: break-word;
}

.content-page__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: var(--text-soft, #94a3b8);
  background: color-mix(in srgb, var(--border, #e2e8f0) 55%, transparent);
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}

.content-page__card:hover .content-page__card-arrow {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  transform: translateX(2px);
}

/* Corpo de texto */
.content-page__body {
  color: var(--text-soft, #475569);
  line-height: 1.75;
  font-size: 1.02rem;
}

.content-page--has-cards .content-page__body {
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid var(--border, #e2e8f0);
}

.content-page__body p {
  margin: 0 0 1rem;
}

.content-page__body p:last-child {
  margin-bottom: 0;
}

.content-page__body h2,
.content-page__body h3 {
  margin: 1.5rem 0 0.75rem;
  line-height: 1.3;
  color: var(--text-title, var(--text));
}

.content-page__body h2 { font-size: 1.35rem; }
.content-page__body h3 { font-size: 1.15rem; }

.content-page__body ul,
.content-page__body ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  text-align: left;
}

.content-page__body li {
  margin-bottom: 0.35rem;
}

.content-page__body a {
  color: var(--primary);
  text-decoration: underline;
}

.content-page__body strong,
.content-page__body b {
  font-weight: 700;
  color: var(--text-title, var(--text));
}

.content-page__body blockquote {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border-radius: 0 8px 8px 0;
}

@media (max-width: 480px) {
  .content-page__card {
    padding: 1rem;
    gap: 0.85rem;
  }

  .content-page__card-arrow {
    display: none;
  }
}

body.is-content-page .hero,
body.is-content-page #sobre {
  display: none !important;
}

body.is-content-page #sectionsContainer {
  min-height: 55vh;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--primary) 4%, var(--bg, #f8fafc)) 0%,
    var(--bg, #f8fafc) 12rem
  );
}

/* ── Página 404 ─────────────────────────────────────────── */
.not-found-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 32rem;
  padding: 0;
  text-align: center;
  animation: nf-fade-in 0.55s ease-out both;
}

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

.not-found-page__visual {
  position: relative;
  width: 11rem;
  height: 11rem;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.not-found-page__orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--primary) 28%, transparent);
}

.not-found-page__orbit--outer {
  animation: nf-spin 18s linear infinite;
}

.not-found-page__orbit--inner {
  inset: 1.1rem;
  border-style: solid;
  border-color: color-mix(in srgb, var(--primary) 14%, transparent);
  animation: nf-spin 12s linear infinite reverse;
}

@keyframes nf-spin {
  to { transform: rotate(360deg); }
}

.not-found-page__globe {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  animation: nf-bob 3.2s ease-in-out infinite;
}

@keyframes nf-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.not-found-page__code {
  position: absolute;
  right: -0.15rem;
  bottom: 0.35rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-title, var(--text));
  background: var(--surface, #fff);
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
  border: 1px solid var(--border, #e2e8f0);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  animation: nf-pulse 2.4s ease-in-out infinite;
}

@keyframes nf-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.not-found-page__copy {
  max-width: 26rem;
  animation: nf-fade-in 0.65s ease-out 0.12s both;
}

.not-found-page__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.not-found-page__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-title, var(--text));
  line-height: 1.2;
}

.not-found-page__desc {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft, #64748b);
}

.not-found-page__path {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--primary) 8%, var(--surface, #fff));
  color: var(--text-title, var(--text));
  font-size: 0.92em;
  font-weight: 600;
  word-break: break-all;
}

.not-found-page__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding-inline: 1.35rem;
  font-weight: 600;
  transition: transform 0.18s, box-shadow 0.18s;
}

.not-found-page__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--primary) 28%, transparent);
}

body.is-not-found-page .site-header,
body.is-not-found-page #mobileNavDrawer,
body.is-not-found-page .hero,
body.is-not-found-page #sobre,
body.is-not-found-page footer.site-footer {
  display: none !important;
}

.not-found-page__shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: min(78vh, 680px);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
}

.not-found-page__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  text-decoration: none;
  color: inherit;
  animation: nf-fade-in 0.5s ease-out both;
}

.not-found-page__brand .mk-brand {
  text-decoration: none;
}

.not-found-page__brand--tenant {
  flex-direction: column;
  gap: 0.5rem;
}

.not-found-page__brand-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.not-found-page__brand-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 12%, var(--surface, #fff));
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
}

.not-found-page__brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-title, var(--text));
}

.not-found-page__brand .mk-brand__text small {
  color: var(--mk-text-soft, var(--text-soft, #64748b));
}

body.is-not-found-page #sectionsContainer {
  min-height: 70vh;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    color-mix(in srgb, var(--primary) 7%, var(--bg, #f8fafc)) 0%,
    var(--bg, #f8fafc) 70%
  );
}

@media (prefers-reduced-motion: reduce) {
  .not-found-page,
  .not-found-page__copy,
  .not-found-page__globe,
  .not-found-page__code,
  .not-found-page__orbit {
    animation: none !important;
  }
}
