﻿/* Titanium Rental Car â€” landing page (locaÃ§Ã£o de veÃ­culos) */
@import url("../../css/tokens.css");
@import url("../../css/polish.css");

:root {
  --ink: #111827;
  --ink-soft: #5c6578;
  --paper: #eceef2;
  --paper-2: #f6f7f9;
  --chrome: #152238;
  --chrome-deep: #0c1525;
  --chrome-glow: rgba(21, 34, 56, 0.08);
  --gold: #152238;
  --gold-light: rgba(255, 255, 255, 0.72);
  --gold-soft: rgba(21, 34, 56, 0.08);
  --line: rgba(17, 24, 39, 0.08);
  --line-strong: rgba(17, 24, 39, 0.14);
  --success: #0f6b45;
  --success-hover: #0c5738;
  --promo-bg: #f6f7f9;
  --promo-border: var(--line-strong);
  --radius: 8px;
  --radius-lg: 10px;
  --shadow: 0 8px 32px rgba(17, 24, 39, 0.1);
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  --shadow-card: none;
  --font-sans: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-serif: var(--font-sans);
  --hero-img: url("../assets/hero-grid-bg.png");
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.lp-body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
  background-image: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--chrome);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
}

.skip-link:focus {
  left: 0.75rem;
}

a {
  color: var(--chrome);
}

a:hover {
  color: var(--chrome-deep);
}

/* â€”â€”â€” Header â€”â€”â€” */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lp-header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: rgba(10, 15, 26, 0.06);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.lp-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(10, 15, 26, 0.08);
}

.lp-header-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lp-header .lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.lp-header .lang-btn {
  padding: 0.35rem 0.6rem;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.lp-header .lang-btn:last-child {
  border-right: 0;
}

.lp-header .lang-btn:hover {
  color: var(--ink);
  background: var(--paper-2);
  text-decoration: none;
}

.lp-header .lang-btn.active {
  background: var(--chrome);
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  background: transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.5vw, 1.25rem);
}

.site-nav a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.35rem 0.25rem;
}

.site-nav a:not(.btn):hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

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

.btn-primary {
  background: var(--chrome);
  color: #fff;
  border-color: var(--chrome-deep);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--chrome-deep);
  color: #fff;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--chrome);
  border-color: rgba(26, 58, 108, 0.35);
}

.btn-ghost:hover {
  background: rgba(26, 58, 108, 0.06);
  color: var(--chrome-deep);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 0.7rem 1.35rem;
  font-size: 1rem;
}

.btn-search {
  width: 100%;
  min-height: 50px;
  background: var(--chrome);
  color: #fff;
  border: 1px solid var(--chrome-deep);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.btn-search:hover {
  background: var(--chrome-deep);
  color: #fff;
  box-shadow: none;
}

/* â€”â€”â€” Sub-tabs (estilo locadora premium) â€”â€”â€” */
.lp-tabs {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.lp-tabs-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.lp-tab {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.lp-tab:hover {
  color: var(--ink);
  background: var(--paper-2);
}

.lp-tab.is-active {
  color: var(--chrome);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  cursor: default;
}

/* Abertura â€” zoom 3D ao scroll (referÃªncia: https://codepen.io/argyleink/pen/ZEdrzJZ) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* â€”â€”â€” Hero + busca â€”â€”â€” */
.lp-hero {
  position: relative;
}

.lp-hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  min-height: clamp(520px, 88vh, 780px);
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1rem, 4vw, 2.5rem) clamp(8rem, 16vw, 10rem);
  background: #0c1525;
  color: #fff;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.lp-hero-sides {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  z-index: 0;
}

.lp-hero-side {
  position: relative;
  overflow: hidden;
}

.lp-hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.lp-hero-side--miami img {
  object-position: center center;
}

.lp-hero-side--castle img {
  object-position: center 45%;
}

.lp-hero-side--miami {
  mask-image: linear-gradient(90deg, #000 0%, #000 68%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 68%, transparent 100%);
}

.lp-hero-side--castle {
  mask-image: linear-gradient(270deg, #000 0%, #000 68%, transparent 100%);
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 68%, transparent 100%);
}

.lp-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(12, 21, 37, 0.18) 0%, rgba(12, 21, 37, 0.72) 36%, rgba(12, 21, 37, 0.78) 64%, rgba(12, 21, 37, 0.18) 100%),
    linear-gradient(180deg, rgba(12, 21, 37, 0.28) 0%, rgba(12, 21, 37, 0.12) 45%, rgba(12, 21, 37, 0.55) 100%);
  pointer-events: none;
}

.lp-hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.45;
}

.lp-hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.lp-hero-brand-logo {
  display: block;
  width: auto;
  height: clamp(15rem, 44vmin, 26rem);
  max-width: min(480px, 88vw);
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.lp-hero-inner {
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.lp-hero-brand,
.lp-hero-inner {
  position: relative;
  z-index: 1;
}

.lp-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 1rem;
  padding: 0.35rem 0.85rem 0.4rem;
  font-size: clamp(1.55rem, 5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 2px 0 rgba(0, 40, 104, 0.45),
    0 8px 28px rgba(0, 0, 0, 0.45);
  background: linear-gradient(90deg, rgba(191, 10, 48, 0.28), rgba(0, 40, 104, 0.35), rgba(191, 10, 48, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.lp-hero-flag {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.lp-hero-flag svg {
  display: block;
  width: clamp(1.75rem, 4.5vw, 2.6rem);
  height: auto;
}

.lp-hero-kicker-text {
  line-height: 1;
  padding-top: 0.08em;
}

.lp-hero h1 {
  margin: 0 auto 1.15rem;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4.2vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 22ch;
}

.lp-hero-lead {
  margin: 0 auto 1.75rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.lp-booking-wrap {
  max-width: 1100px;
  margin: -5rem auto 0;
  padding: 0 clamp(1rem, 4vw, 2.5rem) 3rem;
  position: relative;
  z-index: 5;
  scroll-margin-top: 5.5rem;
}

.lp-booking {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0 clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.lp-booking::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--chrome);
}

.lp-booking-header {
  padding: clamp(1.25rem, 3vw, 1.65rem) 0 0.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.lp-booking-section {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
  min-width: 0;
}

.lp-booking-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 0 0.65rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.lp-booking-grid--contact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-booking-hint {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.lp-return-location {
  display: none;
  margin-top: 0.5rem;
}

.lp-return-location--visible {
  display: block;
}

.lp-field-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.lp-hotel-name {
  display: none;
  margin-top: 0.75rem;
}

.lp-hotel-name--visible,
.lp-pickup-wrap:has(#lead-local option:checked[value="Entrega no hotel"]) > .lp-hotel-name,
.lp-return-wrap:has(#lead-local-devolucao option:checked[value="Entrega no hotel"]) > .lp-hotel-name {
  display: block;
}

.lp-lead-banner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.lp-lead-banner--warn {
  background: #fffbeb;
  color: #92400e;
  border-bottom: 1px solid #fde68a;
}

.lp-lead-success {
  text-align: center;
  padding: 2rem 1.25rem 1.5rem;
  max-width: 36rem;
  margin: 0 auto;
}

.lp-lead-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
}

.lp-lead-success-text {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.lp-lead-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.lp-lead-success-meta {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted, #5b6472);
}

.lp-booking-section--car .lp-booking-section-title {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.lp-booking-section--car .lp-booking-hint {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
}

.lp-booking-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.lp-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 160px);
  gap: 0.85rem 1rem;
  align-items: end;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-field--grow {
  min-width: 0;
}

.lp-field--btn {
  justify-content: flex-end;
}

.lp-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.lp-label--ghost {
  opacity: 0;
}

.lp-input {
  width: 100%;
  min-height: 48px;
  padding: 0.6rem 0.9rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.lp-input:hover {
  border-color: rgba(26, 58, 108, 0.25);
  background: #fff;
}

.lp-input:focus {
  outline: none;
  border-color: var(--chrome);
  background: #fff;
  box-shadow: 0 0 0 4px var(--chrome-glow);
}

.lp-phone-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  min-width: 0;
}

.lp-phone-country {
  flex: 0 0 auto;
  width: min(44%, 10rem);
  min-width: 7.5rem;
}

.lp-phone-number {
  flex: 1 1 auto;
  min-width: 0;
}

.lp-input--country {
  padding-left: 0.65rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.lp-phone {
  position: relative;
  min-width: 0;
}

.lp-phone-control {
  display: flex;
  align-items: stretch;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.lp-phone-control:focus-within {
  border-color: var(--chrome);
  background: #fff;
  box-shadow: 0 0 0 4px var(--chrome-glow);
}

.lp-phone-flag-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 0.65rem 0 0.75rem;
  border: 0;
  border-right: 1px solid var(--line-strong);
  background: rgba(26, 58, 108, 0.04);
  color: inherit;
  cursor: pointer;
  min-height: 48px;
  min-width: 4.75rem;
}

.lp-phone-flag-btn:hover {
  background: rgba(26, 58, 108, 0.08);
}

.lp-phone-flag {
  font-size: 1.35rem;
  line-height: 1;
}

.lp-phone-dial {
  font-size: 0.8125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}

.lp-phone-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
}

.lp-phone-input {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  min-height: 48px;
}

.lp-phone-input:hover,
.lp-phone-input:focus {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.lp-phone-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  max-width: 22rem;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(21, 34, 56, 0.16);
  overflow: hidden;
}

.lp-phone-search-wrap {
  padding: 0.65rem 0.75rem 0.4rem;
  border-bottom: 1px solid var(--line);
}

.lp-phone-search {
  width: 100%;
  min-height: 2.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  background: var(--paper);
}

.lp-phone-search:focus {
  outline: none;
  border-color: var(--chrome);
  box-shadow: 0 0 0 3px var(--chrome-glow);
}

.lp-phone-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: 14rem;
  overflow: auto;
}

.lp-phone-option {
  display: grid;
  grid-template-columns: 1.6rem 1fr auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.lp-phone-option:hover,
.lp-phone-option.is-active {
  background: rgba(26, 58, 108, 0.06);
}

.lp-phone-option.is-selected {
  background: rgba(26, 58, 108, 0.1);
  font-weight: 600;
}

.lp-phone-option-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.lp-phone-option-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-phone-option-dial {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.lp-phone-empty {
  margin: 0;
  padding: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.875rem;
  text-align: center;
}

.lp-phone-option[hidden] {
  display: none !important;
}

.lp-same-return {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.lp-same-return input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--chrome);
}

/* â€”â€”â€” Trust strip â€”â€”â€” */
.lp-trust {
  padding: 3rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  background: transparent;
  border-bottom: none;
}

.lp-trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.lp-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-soft);
  padding: 1.25rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.lp-trust-item strong {
  font-size: 0.9375rem;
  color: var(--ink);
}

.lp-trust-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--chrome-glow);
  color: var(--chrome);
  margin-bottom: 0.15rem;
}

/* â€”â€”â€” Promo â€”â€”â€” */
.lp-promo {
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  margin: 0 auto 2rem;
  max-width: 1180px;
}

.lp-promo-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--promo-bg);
  border: 1px solid var(--promo-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.lp-promo-tag {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b45309;
}

.lp-promo-text {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.9375rem;
  color: var(--ink);
}

.lp-promo-link {
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
}

/* â€”â€”â€” Sections â€”â€”â€” */
.lp-section {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem);
}

.lp-section--wide {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.lp-section--muted {
  background: var(--paper-2);
}

.lp-section-head {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.lp-section-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lp-section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
}

.lp-section-head p {
  margin: 0;
  max-width: 56ch;
  font-size: 1.0625rem;
}

/* â€”â€”â€” Fleet â€”â€”â€” */
.lp-fleet-toolbar {
  margin-bottom: 1.25rem;
}

.lp-fleet-hint {
  margin: 0 0 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.lp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-filter {
  padding: 0.45rem 0.95rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lp-filter:hover {
  border-color: var(--chrome);
  color: var(--chrome);
}

.lp-filter.is-active {
  background: var(--chrome);
  border-color: var(--chrome);
  color: #fff;
}

.lp-fleet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.lp-car.is-hidden {
  display: none;
}

.lp-car {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.lp-car:hover {
  border-color: var(--line-strong);
}

.lp-car-img {
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}

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

.lp-car-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(10, 15, 26, 0.1);
  backdrop-filter: blur(6px);
}

.lp-car-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lp-car-group {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome);
}

.lp-car h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.lp-car-specs {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

.lp-car-specs li {
  padding-right: 0.75rem;
  border-right: 1px solid var(--line);
}

.lp-car-specs li:last-child {
  border-right: 0;
}

.lp-car-price {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.lp-car-price strong {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.lp-car-price span {
  font-size: 0.875rem;
  font-weight: 500;
}

.lp-car-disclaimer {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.lp-car .btn {
  margin-top: auto;
}

/* ——— Benefits + steps ——— */
.lp-split {
  display: grid;
  gap: 1.5rem;
}

.lp-section-head--center {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.lp-diff-grid {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp-diff-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem 1.05rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(21, 34, 56, 0.04);
}

.lp-diff-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink, #152238);
}

.lp-diff-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(26, 58, 108, 0.08);
  color: var(--brand, #1a3a6c);
}

.lp-diff-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (max-width: 900px) {
  .lp-diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.lp-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 640px;
}

.lp-benefits li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.lp-benefits li:last-child {
  border-bottom: 0;
}

.lp-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--chrome);
}

.lp-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-steps li {
  display: flex;
  gap: 1.15rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.lp-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--chrome);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: none;
}

.lp-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.lp-steps p {
  margin: 0;
  font-size: 0.9375rem;
}

/* â€”â€”â€” FAQ â€”â€”â€” */
.lp-faq {
  max-width: 720px;
}

.lp-faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease-out);
}

.lp-faq-item:hover {
  box-shadow: var(--shadow-card);
}

.lp-faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--chrome);
}

.lp-faq-item[open] summary::after {
  content: "âˆ’";
}

.lp-faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

/* â€”â€”â€” CTA band â€”â€”â€” */
.lp-cta {
  margin: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2.5rem);
}

.lp-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.25rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--chrome);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.lp-cta-inner::before {
  display: none;
}

.lp-cta-inner > * {
  position: relative;
  z-index: 1;
}

.lp-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #fff;
}

.lp-cta p {
  margin: 0;
  max-width: 48ch;
}

.lp-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 220px;
}

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

.lp-cta .btn-primary:hover {
  background: var(--paper);
}

.lp-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.lp-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* â€”â€”â€” Footer â€”â€”â€” */
.lp-footer {
  padding: 3.25rem clamp(1rem, 4vw, 2.5rem) 1.75rem;
  background: var(--chrome-deep);
  color: rgba(248, 250, 252, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

.lp-footer a {
  color: #e2e8f0;
}

.lp-footer a:hover {
  color: #fff;
}

.lp-footer-grid {
  max-width: 1180px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}

.lp-footer strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-footer-links li {
  margin-bottom: 0.45rem;
}

.lp-footer-links a {
  text-decoration: none;
}

.lp-footer-note {
  font-size: 0.75rem;
  opacity: 0.75;
}

.lp-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.65);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  /* Em mobile o blur/opacity 0 travava a frota e outras seções. */
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.lp-fleet-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--ink-soft);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-strong);
}

@media (max-width: 1024px) {
  .lp-hero-stage::before {
    background:
      linear-gradient(90deg, rgba(12, 21, 37, 0.35) 0%, rgba(12, 21, 37, 0.82) 34%, rgba(12, 21, 37, 0.82) 66%, rgba(12, 21, 37, 0.35) 100%),
      linear-gradient(180deg, rgba(12, 21, 37, 0.4) 0%, rgba(12, 21, 37, 0.2) 40%, rgba(12, 21, 37, 0.7) 100%);
  }

  .lp-trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .lp-booking-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .lp-field--grow {
    grid-column: 1 / -1;
  }

  .lp-field--btn {
    grid-column: 1 / -1;
  }

  .lp-cta-inner {
    grid-template-columns: 1fr;
  }

  .lp-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lp-cta-actions .btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 720px) {
  .lp-header-right {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    gap: 0.15rem;
    display: none;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  .site-nav a,
  .site-nav .btn {
    padding: 0.65rem 0;
    justify-content: flex-start;
  }

  .site-nav .btn {
    margin-top: 0.35rem;
  }

  .lp-booking-wrap {
    margin-top: -3rem;
  }

  .lp-booking-grid {
    grid-template-columns: 1fr;
  }

  .lp-trust-inner {
    grid-template-columns: 1fr;
  }

  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Aviso LGPD / cookies (mesmo padrÃ£o do painel) */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.94);
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.cookie-notice.cookie-notice--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-notice-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.cookie-notice-title {
  margin: 0;
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}

.cookie-notice-text {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.cookie-notice-text a {
  color: #93c5fd;
  font-weight: 600;
}

.cookie-notice-btn {
  flex-shrink: 0;
  border-radius: 8px;
  padding: 0.45rem 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--chrome);
  color: #fff;
}

.cookie-notice-btn:hover {
  background: var(--chrome-deep);
}

/* Honeypot anti-bot â€” oculto de utilizadores reais */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Form UX â€” erros, loading, veÃ­culo selecionado */
.lp-form-errors {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #991b1b;
}

.lp-form-errors-list {
  margin: 0;
  padding-left: 1.1rem;
}

.lp-form-errors-list li + li {
  margin-top: 0.25rem;
}

.lp-car-selected {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.9rem;
}

.lp-car-selected-clear {
  margin-left: auto;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  padding: 0 0.25rem;
}

.lp-car-selected-clear:hover {
  opacity: 1;
}

.lp-lead-summary {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-strong, #d8dee8);
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.lp-lead-summary-title {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted, #5b6575);
}

.lp-lead-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 0;
}

.lp-lead-summary-grid dt {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-muted, #5b6575);
}

.lp-lead-summary-grid dd {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink, #152238);
}

.lp-lead-summary-total {
  grid-column: 1 / -1;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line, #e6ebf2);
}

.lp-lead-summary-total dd {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand, #1a3a6c);
  letter-spacing: -0.02em;
}

.lp-lead-summary-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
}

.lp-lead-summary-clear {
  margin-top: 0.65rem;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.82rem;
  color: var(--brand, #1a3a6c);
  text-decoration: underline;
  cursor: pointer;
}

.lp-lead-summary-clear:hover {
  color: #0f2748;
}

@media (max-width: 640px) {
  .lp-lead-summary-grid {
    grid-template-columns: 1fr;
  }
}

.btn.is-loading {
  opacity: 0.85;
  cursor: wait;
  position: relative;
}

.btn.is-loading::after {
  content: '';
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.45em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: lp-spin 0.65s linear infinite;
  vertical-align: -0.1em;
}

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

/* Bloco scroll-zoom: efeito nÃ£o activo â€” oculto para nÃ£o quebrar o layout */
.lp-scroll-zoom {
  display: none;
}

@media (max-width: 768px) {
  .lp-scroll-zoom-track {
    min-height: 0;
  }
}

/* PÃ¡gina /reservar */
.lp-body--booking {
  background: var(--paper, #f8f6f2);
}

.lp-booking-page {
  padding-top: 5rem;
}

.lp-booking-wrap--page {
  max-width: 920px;
  margin-inline: auto;
}

.lp-date-filter {
  padding: 1.25rem;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(26, 58, 108, 0.08);
}

.lp-booking-grid--filter {
  align-items: end;
}

/* No /reservar o filtro já pede local/datas — evita pedir de novo no formulário. */
.lp-body--booking .lp-booking-grid--trip > :not(.lp-field--btn) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.lp-body--booking .lp-booking-section:has(.lp-booking-grid--trip) > .lp-booking-section-title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.lp-body--booking .lp-same-return,
.lp-body--booking .lp-return-location,
.lp-body--booking .lp-booking-section--car {
  display: none !important;
}

.lp-car--selected {
  outline: 2px solid var(--chrome);
  outline-offset: 2px;
}

.lp-empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(26, 58, 108, 0.06);
}

.lp-empty-state p {
  margin: 0 0 1rem;
  color: var(--ink-muted, #64748b);
}

.lp-footer--compact {
  padding: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.lp-booking-form-section {
  padding-bottom: 4rem;
}
