:root {
  --ink: #f7f7fb;
  --ink-2: #eef2f6;
  --ink-3: #e6edf2;
  --brand-pink: #005279;
  --brand-blue: #125377;
  --gold: #d4af37;
  --aqua: #1fc2c3;
  --text: #0f1b24;
  --muted: #566573;
  --border: rgba(15, 27, 36, 0.12);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow-lg: 0 30px 80px rgba(14, 30, 42, 0.12);
  --shadow-md: 0 16px 40px rgba(14, 30, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-display: "Playfair Display", serif;
  --font-body: "Manrope", sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 2000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(14, 30, 42, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand-pink);
  transition: var(--transition);
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

.nav a.active::after,
.nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 22px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, #32557a, #b067b0);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(0, 82, 121, 0.28);
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 82, 121, 0.4);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.btn.outline {
  background: rgba(255, 255, 255, 0.8);
}

.btn.outline:hover {
  border-color: var(--brand-pink);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.65);
}

.lang-toggle {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 48px;
}

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

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

.hero-media .hero-fallback {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: left;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero h1,
.hero h1 span,
.section-title,
.card-body h3 {
  background: linear-gradient(135deg, #32557a, #b067b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  max-width: 760px;
}

.stat-card {
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brand-pink);
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

/* === Fleet Editorial Header === */
.fleet-section {
  position: relative;
}

.fleet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.fleet-section .container {
  position: relative;
  z-index: 1;
}

.fleet-intro {
  max-width: 1080px;
  margin: 0 auto 56px;
  text-align: center;
}

.fleet-intro .section-tag {
  background: rgba(0, 82, 121, 0.12);
  border: 1px solid rgba(0, 82, 121, 0.28);
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.fleet-intro .section-title {
  max-width: 1040px;
  margin: 0 auto 12px;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.fleet-intro .section-divider {
  width: 96px;
  height: 1px;
  background: rgba(0, 82, 121, 0.35);
  margin: 12px auto 16px;
}

.fleet-intro .section-subtitle {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
  color: rgba(15, 27, 36, 0.7);
}

@media (max-width: 900px) {
  .fleet-intro .section-title {
    max-width: 720px;
    line-height: 1.1;
  }
  .fleet-intro .section-subtitle {
    max-width: 640px;
  }
}

/* === Experiences Video Background === */
.experiences-video {
  position: relative;
  overflow: hidden;
}

.experiences-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experiences-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experiences-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.experiences-video .container {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 82, 121, 0.12);
  border: 1px solid rgba(0, 82, 121, 0.35);
  color: #005279;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 82, 121, 0.4);
}

.card-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 82, 121, 0.85);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-pill {
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  appearance: none;
}

.price-pill span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.price-pill strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.card-deposit {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-hero {
  width: 100%;
  height: clamp(240px, 40vw, 420px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 0 0 24px;
}

.blog-inline {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 24px 0;
}

.slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef2f6;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
}

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

.slider-control {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}

.slider-btn {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: var(--transition);
  cursor: pointer;
}

.slider-btn:hover {
  border-color: var(--brand-pink);
}

.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 10px;
  border-radius: 999px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 27, 36, 0.3);
  border: none;
  cursor: pointer;
}

.dot.active {
  width: 18px;
  background: var(--brand-pink);
}

.glass-panel {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

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

.icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.icon-item svg {
  color: var(--aqua);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-family: var(--font-body);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(0, 82, 121, 0.18);
}

label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 30, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 2000;
  padding: 24px;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(860px, 94vw);
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: min(86vh, 860px);
  overflow: auto;
}

.modal-header {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
}

.price-options {
  display: grid;
  gap: 10px;
  margin: 14px 0 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.price-option:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 82, 121, 0.5);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.price-option span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--muted);
}

.price-option strong {
  font-size: 0.98rem;
}

.selected-option {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 6px;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin: 12px 0 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form .form-field {
  display: grid;
  gap: 6px;
}

.lead-form button {
  grid-column: span 2;
}

.lead-form .form-note {
  grid-column: span 2;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .price-options {
    grid-template-columns: 1fr;
  }
  .lead-form {
    grid-template-columns: 1fr;
  }
  .lead-form button,
  .lead-form .form-note {
    grid-column: auto;
  }
}

.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.deposit-line {
  font-size: 0.85rem;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s ease;
}

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

.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: rgba(245, 247, 250, 0.95);
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 32px;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--brand-pink);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 1500;
}

@media (max-width: 900px) {
  .hero {
    min-height: 70vh;
    padding: 80px 0 42px;
  }
  .hero-content {
    max-width: 92%;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
  .nav {
    position: fixed;
    top: 70px;
    right: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 140px;
  }
}
