:root {
  color-scheme: light;
  --primary: #1a7ddb;
  --primary-dark: #0c457a;
  --accent: #73c7ff;
  --accent-soft: rgba(115, 199, 255, 0.22);
  --bg: #f5faff;
  --bg-alt: #e9f4ff;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --border: rgba(12, 74, 134, 0.12);
  --text: #0b2a3d;
  --muted: #5d748a;
  --success: #1ba27a;
  --danger: #e35353;
  --radius-lg: 26px;
  --radius-md: 18px;
  --page-pad-x: clamp(24px, 7vw, 96px);
  --page-pad-y: clamp(48px, 8vw, 120px);
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body.landing {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 125, 219, 0.18), transparent 42%),
    radial-gradient(circle at 78% 6%, rgba(115, 199, 255, 0.22), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  overflow-x: hidden;
}

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

p {
  margin: 0 0 1em;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hidden {
  display: none !important;
}

h1, h2, h3, h4 {
  margin: 0 0 0.4em;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(26, 125, 219, 0.3);
  padding: 0 26px;
  min-height: 48px;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-dark);
  box-shadow: 0 18px 30px rgba(12, 74, 132, 0.14);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.96), rgba(96, 184, 255, 0.96));
  color: #fff;
  border-color: rgba(26, 125, 219, 0.55);
  box-shadow: 0 20px 40px rgba(26, 125, 219, 0.32);
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(26, 125, 219, 0.45);
  color: var(--primary-dark);
}

.btn.ghost {
  background: rgba(26, 125, 219, 0.1);
  color: var(--primary-dark);
  border-color: transparent;
}

.btn.tiny {
  padding: 0 18px;
  min-height: 40px;
  font-size: 0.78rem;
  border-radius: 14px;
  border: 1px solid rgba(26, 125, 219, 0.28);
  background: rgba(255, 255, 255, 0.85);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(12, 74, 132, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(26, 125, 219, 0.5);
}

.btn.primary:hover {
  background: linear-gradient(135deg, rgba(96, 184, 255, 1), rgba(26, 125, 219, 1));
}

.btn:focus-visible {
  outline: 3px solid rgba(26, 125, 219, 0.35);
  outline-offset: 2px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 7vw, 72px);
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(26, 125, 219, 0.12);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-logo {
  width: clamp(54px, 6vw, 68px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(12, 74, 132, 0.18));
}

.brand-copy {
  display: grid;
  gap: 2px;
  font-weight: 600;
  line-height: 1.15;
  word-break: break-word;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-left: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(37, 211, 102, 0.6);
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.28);
  transition: transform 0.18s ease, box-shadow 0.22s ease, filter 0.2s ease;
  flex-shrink: 0;
}

.topbar__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(37, 211, 102, 0.32);
  filter: saturate(1.05);
}

.topbar__whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.topbar__lang {
  margin-left: 8px;
  flex-shrink: 0;
}

.topbar__nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--muted);
}

.topbar__nav a {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.topbar__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.topbar__nav a:hover {
  color: var(--primary-dark);
}

.topbar__nav a:hover::after {
  transform: scaleX(1);
}

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

.topbar__dropdown-actions {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.portal-accent {
  background: linear-gradient(135deg, #1a7ddb, #4fb5ff);
  color: #fff;
  border-color: rgba(26, 125, 219, 0.6);
  box-shadow: 0 18px 40px rgba(26, 125, 219, 0.24);
}

.portal-accent:hover {
  background: linear-gradient(135deg, #4fb5ff, #1a7ddb);
  border-color: rgba(26, 125, 219, 0.7);
  box-shadow: 0 22px 48px rgba(26, 125, 219, 0.3);
}

.topbar__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(26, 125, 219, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: auto;
}

.topbar__menu-toggle span {
  display: block;
  height: 3px;
  width: 22px;
  background: var(--primary-dark);
  margin: 0 auto;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.topbar__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 14px;
  background: rgba(26, 125, 219, 0.1);
  border: 1px solid rgba(26, 125, 219, 0.24);
}

.user-menu.hidden {
  display: none;
}

.user-avatar {
  font-size: 1.4rem;
}

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

.landing-main {
  display: grid;
  gap: clamp(64px, 12vw, 120px);
  padding: var(--page-pad-y) var(--page-pad-x);
}

.hero {
  position: relative;
  display: grid;
  gap: clamp(48px, 7vw, 72px);
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.12), rgba(115, 199, 255, 0.18));
  border-radius: var(--radius-lg);
  padding: clamp(56px, 12vw, 120px) clamp(24px, 7vw, 72px);
  min-height: clamp(640px, 88vh, 960px);
  box-shadow: 0 40px 88px rgba(15, 80, 134, 0.14);
  overflow: hidden;
}

.hero--sub {
  min-height: clamp(560px, 80vh, 860px);
}

.hero__grid {
  display: grid;
  gap: clamp(32px, 6vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary-dark);
  border: 1px solid rgba(26, 125, 219, 0.22);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__content h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.1rem);
  max-width: 18ch;
}

.lead {
  font-size: 1.1rem;
  max-width: 56ch;
}

.hero__headline {
  position: relative;
  margin: clamp(20px, 5vw, 32px) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 125, 219, 0.16);
  box-shadow: 0 30px 70px rgba(12, 74, 132, 0.15);
  isolation: isolate;
}

.hero__headline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.65));
  z-index: 1;
}

.hero__headline h1 {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px);
}

.hero--sub .hero__headline {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  animation: heroHeadlineRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.hero--sub .hero__headline h1 {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: heroTitleGlow 1s cubic-bezier(0.19, 1, 0.22, 1) 0.15s forwards;
  text-shadow: 0 0 0 rgba(12, 74, 132, 0.2);
}

.hero--sub .hero__headline h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: clamp(18px, 3vw, 26px);
  width: clamp(120px, 36%, 220px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 125, 219, 0.85), rgba(115, 199, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  animation: heroTitleUnderline 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.45s forwards;
}

.hero--sub .hero__headline h1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(115, 199, 255, 0.15), transparent 70%);
  filter: blur(0);
  opacity: 0;
  pointer-events: none;
  animation: heroTitleSheen 1.4s ease 0.25s forwards;
  z-index: -1;
}

.hero__copy {
  display: grid;
  gap: 16px;
  margin: clamp(18px, 5vw, 32px) 0;
  max-width: 62ch;
}

.hero__copy p + p {
  color: var(--primary-dark);
}

.hero__pricing {
  margin-top: clamp(18px, 4vw, 32px);
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hero__pricing .price-list {
  margin: 0;
  padding: clamp(22px, 5vw, 28px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 125, 219, 0.18);
  box-shadow: 0 22px 44px rgba(12, 74, 132, 0.14);
  backdrop-filter: blur(6px);
}

.hero__pricing .price-list ul {
  gap: 10px;
}

.hero__pricing .price-list li {
  background: rgba(26, 125, 219, 0.12);
  border: 1px solid rgba(26, 125, 219, 0.2);
}

.price-list__period {
  margin: 4px 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.price-list__note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

.hero__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero--fullscreen {
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  min-height: 100vh;
  gap: clamp(48px, 8vw, 96px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: calc(-1 * var(--page-pad-y));
}

.hero--fullscreen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 28, 0.15), rgba(5, 18, 32, 0.25));
  z-index: -1;
}

.hero--fullscreen .hero__background {
  z-index: -2;
}

.hero--fullscreen .hero__grid,
.hero--fullscreen .hero__ticker {
  position: relative;
  z-index: 1;
}

.hero--fullscreen .hero__grid {
  min-height: inherit;
  padding: clamp(96px, 12vw, 160px) var(--page-pad-x) clamp(72px, 10vw, 120px);
  align-content: center;
}

.hero--fullscreen .hero__content h1 {
  color: #fff;
  margin: 0 0 clamp(18px, 4vw, 32px);
}

.hero--fullscreen .hero__content p {
  color: rgba(255, 255, 255, 0.9);
}

.hero--fullscreen .hero__metrics strong {
  color: #fff;
}

.hero--fullscreen .hero__metrics span {
  color: rgba(255, 255, 255, 0.8);
}

.hero--fullscreen .hero__ticker {
  background: rgba(255, 255, 255, 0.85);
  border-color: transparent;
  box-shadow: 0 24px 48px rgba(5, 20, 35, 0.28);
}

.hero--fullscreen .hero__ticker span,
.hero--fullscreen .hero__ticker-track li {
  color: var(--primary-dark);
}

.hero--fullscreen .btn.outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(5, 20, 35, 0.25);
}

.hero--fullscreen .btn.outline:hover {
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(5, 20, 35, 0.3);
}

@media (max-width: 720px) {
  .hero--fullscreen {
    min-height: 72vh;
  }

  .hero--fullscreen .hero__grid {
    padding: clamp(64px, 16vh, 120px) var(--page-pad-x) clamp(42px, 18vh, 90px);
  }
}

@keyframes heroHeadlineRise {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  65% {
    opacity: 1;
    transform: translateY(-6px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTitleGlow {
  0% {
    opacity: 0;
    transform: translateY(12px);
    text-shadow: 0 0 0 rgba(12, 74, 132, 0.2);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 18px 36px rgba(12, 74, 132, 0.28);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 10px 24px rgba(12, 74, 132, 0.22);
  }
}

@keyframes heroTitleUnderline {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes heroTitleSheen {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.landing .hero--sub .hero__actions {
  margin-top: 18px;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero__metrics li {
  display: grid;
  gap: 4px;
  min-width: 100px;
  text-align: center;
}

.hero__metrics strong {
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.hero__metrics span {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 520px;
  justify-self: center;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 125, 219, 0.16);
  box-shadow: 0 30px 70px rgba(12, 74, 132, 0.15);
  width: 100%;
}

.visual-card img,
.visual-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visual-card figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 57, 96, 0.8) 100%);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.visual-card.secondary {
  max-width: 280px;
  align-self: flex-end;
}

.visual-badge {
  position: absolute;
  top: 12%;
  right: -10%;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(115, 199, 255, 0.9), rgba(26, 125, 219, 0.6));
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  filter: drop-shadow(0 22px 60px rgba(26, 125, 219, 0.32));
}

.hero__ticker {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(26, 125, 219, 0.1);
  border: 1px solid rgba(26, 125, 219, 0.2);
  overflow: hidden;
}

.hero__ticker span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
}

.hero__ticker-scroll {
  --ticker-duration: 20s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 6vw, 48px);
  animation: tickerScroll var(--ticker-duration) linear infinite;
  width: max-content;
  will-change: transform;
}

.hero__ticker-track {
  display: inline-flex;
  gap: clamp(28px, 6vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__ticker-track li {
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section {
  display: grid;
  gap: 32px;
}

.section__header {
  max-width: 720px;
}

.concept__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.concept__card {
  display: grid;
  gap: 18px;
  padding: 0;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 125, 219, 0.14);
  box-shadow: 0 24px 56px rgba(12, 74, 132, 0.14);
  overflow: hidden;
}

.concept__card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.concept__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.concept__copy {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.concept__card h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.concept__card span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.boats {
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.08), rgba(139, 210, 255, 0.18));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 125, 219, 0.16);
  padding: clamp(32px, 6vw, 48px);
  box-shadow: 0 28px 70px rgba(12, 74, 132, 0.12);
}

.hero__content .boats {
  margin: clamp(12px, 3vw, 22px) 0 clamp(18px, 4vw, 28px);
  padding: clamp(24px, 5vw, 36px);
}

.boats__grid {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.boats__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12, 74, 132, 0.18);
}

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

.boats__details {
  display: grid;
  gap: 18px;
}

.boats__specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--primary-dark);
}

.boats__specs li {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(26, 125, 219, 0.08);
  border: 1px solid rgba(26, 125, 219, 0.18);
  font-size: 0.95rem;
}

.boats__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.boats--fleet {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.fleet-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.fleet-intro__lead {
  margin: 6px 0 0;
  color: var(--muted);
}

.fleet-grid {
  align-items: stretch;
}

.fleet-card-alt {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.fleet-card-alt--accent {
  border-color: rgba(26, 125, 219, 0.24);
  box-shadow: 0 24px 60px rgba(26, 125, 219, 0.16);
}

.fleet-card-alt .label {
  background: rgba(26, 125, 219, 0.12);
  color: var(--primary-dark);
}

.label--accent {
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.9), rgba(115, 199, 255, 0.95));
  color: #fff;
}

.fleet-card-alt h3 {
  margin: 0;
}

.fleet-home {
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.06), rgba(115, 199, 255, 0.16));
  border: 1px solid rgba(26, 125, 219, 0.14);
  box-shadow: 0 28px 70px rgba(12, 74, 132, 0.12);
  padding: clamp(32px, 7vw, 68px);
  border-radius: var(--radius-lg);
}

.fleet-home__wrap {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.05fr;
  gap: clamp(28px, 5vw, 44px);
  align-items: stretch;
}

.fleet-home__copy {
  display: grid;
  gap: 14px;
}

.fleet-home__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(26, 125, 219, 0.14);
  border: 1px solid rgba(26, 125, 219, 0.32);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.fleet-home__lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.fleet-home__specs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 6px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 125, 219, 0.16);
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(12, 74, 132, 0.08);
  width: 100%;
  min-height: 52px;
}

.pill--highlight {
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.12), rgba(115, 199, 255, 0.2));
  border: 1px solid rgba(26, 125, 219, 0.26);
}

.pill__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1a7ddb;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(26, 125, 219, 0.25);
}

.fleet-home__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 3vw, 26px);
  align-items: stretch;
  padding-top: 6px;
}

.fleet-card {
  background: #fff;
  border: 1px solid rgba(26, 125, 219, 0.12);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 44px rgba(12, 74, 132, 0.12);
  min-height: 100%;
}

.fleet-card--accent {
  border-color: rgba(26, 125, 219, 0.32);
  box-shadow: 0 18px 50px rgba(26, 125, 219, 0.2);
}

.fleet-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 10px;
}

.fleet-card__label {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--primary-dark);
}

.fleet-card__meta {
  font-size: 0.9rem;
  color: var(--muted);
  justify-self: end;
}

.fleet-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(26, 125, 219, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.78rem;
  border: 1px solid rgba(26, 125, 219, 0.28);
}

.fleet-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.fleet-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--primary-dark);
}

.fleet-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(26, 125, 219, 0.06);
  border: 1px solid rgba(26, 125, 219, 0.12);
  font-size: 0.92rem;
}

.fleet-card li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

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

  .fleet-home__cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
  }

  .fleet-card img {
    height: 150px;
  }
}

@media (max-width: 640px) {
  .fleet-home {
    padding: 22px;
  }

  .fleet-home__specs {
    grid-template-columns: 1fr;
  }

  .fleet-card {
    grid-template-rows: auto auto auto;
  }

  .fleet-card img {
    height: 140px;
  }

  .fleet-card__meta {
    justify-self: start;
  }
}

.boats__grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.boat-card {
  display: grid;
  gap: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 125, 219, 0.16);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 48px rgba(12, 74, 132, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.boat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(12, 74, 132, 0.14);
}

.boat-card__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.boat-card__carousel,
.card-carousel {
  position: absolute;
  inset: 0;
}

.boat-card__carousel img,
.card-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.boat-card__carousel img.is-active,
.card-carousel img.is-active {
  opacity: 1;
}

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

.boat-card__body {
  display: grid;
  gap: 10px;
  padding: 14px 16px 18px;
}

.boat-card__body h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.boat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, rgba(26, 125, 219, 0.9), rgba(115, 199, 255, 0.95), rgba(26, 125, 219, 0.9));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(26, 125, 219, 0.25);
  background-size: 200% 100%;
}

.boat-badge--new {
  animation: badgeWave 2.2s ease-in-out infinite, badgeFloat 3.6s ease-in-out infinite;
}

.boat-title__text {
  font-weight: 700;
  color: var(--primary-dark);
}

@keyframes badgeWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes badgeFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

.boats--detail {
  margin-top: clamp(32px, 6vw, 48px);
}

.excursions__grid {
  display: grid;
  gap: clamp(24px, 5vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.excursion-card {
  display: grid;
  gap: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 125, 219, 0.14);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(12, 74, 132, 0.14);
  background: var(--surface);
}

.excursion-card figure {
  margin: 0;
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.excursion-card__body {
  display: grid;
  gap: 12px;
  padding: 20px 22px 24px;
}

.excursion-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.excursion-card__body ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary);
}

.excursion-card__body ul li {
  position: relative;
  padding-left: 16px;
}

.amenities-grid {
  display: grid;
  gap: clamp(20px, 4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.amenity-card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 125, 219, 0.14);
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(12, 74, 132, 0.12);
  display: grid;
  gap: 12px;
}

.amenity-card .label,
.excursion-card .label {
  background: rgba(26, 125, 219, 0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.boat-gallery__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
  max-height: 82vh;
  max-height: 80dvh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  padding-right: 6px;
}

.boat-gallery__grid figure {
  margin: 0;
  position: relative;
  min-height: clamp(420px, 70vh, 760px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 74, 132, 0.2);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: flex-end;
  background: #0b1b2c;
}

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

.boat-gallery__grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px 20px;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 10, 20, 0) 0%, rgba(5, 10, 20, 0.75) 55%, rgba(5, 10, 20, 0.9) 100%);
  letter-spacing: 0.01em;
}

.finale--alt {
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.1), rgba(231, 244, 255, 0.95));
}

.excursion-detail {
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.05), rgba(139, 210, 255, 0.12));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 125, 219, 0.12);
  padding: clamp(28px, 5vw, 44px);
}

.detail__grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.detail__copy {
  display: grid;
  gap: 16px;
  color: var(--primary-dark);
}

.detail__copy ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.detail__copy h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin: 18px 0 8px;
}

.detail__copy ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.price-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.price-list h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
}

.price-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(26, 125, 219, 0.08);
  border: 1px solid rgba(26, 125, 219, 0.16);
  color: var(--primary-dark);
  font-weight: 600;
}

.price-list li span {
  font-weight: 500;
}

@media (max-width: 480px) {
  .price-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.detail__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(12, 74, 132, 0.14);
}

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

.signature__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.signature__item {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.12), rgba(139, 210, 255, 0.16));
  border: 1px solid rgba(26, 125, 219, 0.14);
  box-shadow: 0 24px 50px rgba(12, 74, 132, 0.14);
}

.signature__item figure {
  margin: -28px -28px 0;
  overflow: hidden;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  border-bottom: 1px solid rgba(26, 125, 219, 0.16);
}

.signature__item img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.signature__item:hover img {
  transform: scale(1.05);
}

.signature__item .label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(26, 125, 219, 0.12);
  border: 1px solid rgba(26, 125, 219, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 18px;
}

.signature__item h3 {
  font-size: 1.2rem;
}

.gallery {
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: -10% -5% auto;
  height: 60%;
  background: radial-gradient(circle at top, rgba(11, 111, 242, 0.2), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.ig-carousel {
  position: relative;
  display: grid;
  gap: 18px;
}

.ig-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 125, 219, 0.14);
  box-shadow: 0 28px 60px rgba(12, 74, 132, 0.18);
  background: var(--surface);
  width: min(100%, 880px);
  margin: 0 auto;
  touch-action: pan-y;
  cursor: grab;
}

.ig-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.ig-carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}

.ig-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: clamp(360px, 45vw, 480px);
}

.ig-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px 12px;
}

.ig-card__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(26, 125, 219, 0.2);
  padding: 6px;
}

.ig-card__header strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.ig-card__header span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ig-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  padding: 0 22px;
}

.ig-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 48px rgba(12, 74, 132, 0.18);
}

.ig-card__footer {
  padding: 18px 22px 26px;
  display: grid;
  gap: 10px;
}

.ig-card__caption {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.ig-card__caption strong {
  color: var(--primary-dark);
}

.ig-carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 20px 46px rgba(12, 74, 132, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.ig-carousel__control:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(12, 74, 132, 0.24);
}

.ig-carousel__control:focus-visible {
  outline: 3px solid rgba(26, 125, 219, 0.45);
  outline-offset: 3px;
}

.ig-carousel__control:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
  box-shadow: none;
}

.ig-carousel__control--prev {
  left: 12px;
}

.ig-carousel__control--next {
  right: 12px;
}

.ig-carousel__control span {
  font-size: 1.2rem;
  line-height: 1;
}

.ig-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.ig-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(26, 125, 219, 0.25);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ig-carousel__dot:focus-visible {
  outline: 3px solid rgba(26, 125, 219, 0.5);
  outline-offset: 3px;
}

.ig-carousel__dot.is-active {
  transform: scale(1.25);
  background: var(--primary);
}

.gallery-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 26px 56px rgba(12, 74, 132, 0.16);
  border: 1px solid rgba(26, 125, 219, 0.12);
  min-height: 220px;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(5, 15, 32, 0.65);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.location {
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.12), rgba(139, 210, 255, 0.2));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 56px);
  border: 1px solid rgba(26, 125, 219, 0.16);
  box-shadow: 0 32px 74px rgba(12, 74, 132, 0.16);
}

.location__grid {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
  grid-template-columns: 1fr;
  align-items: start;
}

.location__info {
  display: grid;
  gap: 18px;
}

.location__logo {
  width: min(180px, 45%);
  height: auto;
}

.location__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.location__contact li {
  display: grid;
  gap: 4px;
}

.location__contact span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.location__contact a {
  color: var(--primary-dark);
  font-weight: 600;
}

.location__contact address {
  font-style: normal;
  color: var(--primary-dark);
  font-weight: 600;
}

.location__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(26, 125, 219, 0.18);
  box-shadow: 0 26px 60px rgba(12, 74, 132, 0.18);
  min-height: clamp(360px, 45vw, 520px);
  height: 100%;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer__logo {
  width: 72px;
  height: auto;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(12, 74, 132, 0.16));
}

.routes__grid {
  display: grid;
  gap: clamp(24px, 5vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.route-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 125, 219, 0.16);
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.1), rgba(139, 210, 255, 0.2));
  box-shadow: 0 26px 58px rgba(12, 74, 132, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.route-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.route-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.route-card__index {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(26, 125, 219, 0.14);
  border: 1px solid rgba(26, 125, 219, 0.24);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.route-card__intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.route-card__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.route-card__highlights li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--primary-dark);
}

.route-card__highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 0.8rem;
  line-height: 1.6;
}

.finale {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  padding: clamp(32px, 5vw, 52px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26, 125, 219, 0.15), rgba(139, 210, 255, 0.2));
  border: 1px solid rgba(26, 125, 219, 0.16);
  box-shadow: 0 28px 70px rgba(12, 74, 132, 0.16);
}

.finale .hero__actions .btn {
  min-width: 220px;
}

.finale__visual {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: 0 24px 60px rgba(12, 74, 132, 0.18);
}

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

.footer {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(32px, 6vw, 64px);
  background: linear-gradient(135deg, rgba(231, 244, 255, 0.95), rgba(255, 241, 209, 0.85));
  border-top: 1px solid rgba(26, 125, 219, 0.12);
  color: var(--text);
}

.footer__grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer__brand {
  display: grid;
  gap: 14px;
}

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

.footer h4 {
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.footer__group {
  display: grid;
  gap: 12px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer__list li {
  display: grid;
  gap: 4px;
}

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

.footer__list a {
  color: var(--primary-dark);
  font-weight: 600;
}

.footer__list p {
  margin: 0;
  color: var(--text);
}

.footer__social {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__social a {
  color: var(--primary-dark);
  font-weight: 600;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
}


.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.modal.hidden {
  pointer-events: none;
}

.modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(240, 247, 255, 0.9);
  backdrop-filter: blur(10px);
}

.modal-window {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(231, 243, 255, 0.94));
  border: 1px solid rgba(26, 125, 219, 0.18);
  min-width: min(480px, 92vw);
  box-shadow: 0 36px 100px rgba(12, 74, 132, 0.18);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 125, 219, 0.12);
  color: var(--primary-dark);
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.08);
}

.boat-modal {
  max-width: min(900px, 92vw);
  width: 100%;
  padding: clamp(24px, 5vw, 36px);
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 18px;
}

.boat-modal__header {
  display: grid;
  gap: 10px;
}

.boat-modal__desc {
  margin: 0;
  color: var(--primary-dark);
}

.boat-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.boat-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 125, 219, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  background: #f6fbff;
}

.boat-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.boat-carousel__slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

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

.boat-carousel__control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(26, 125, 219, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(12, 74, 132, 0.16);
  transition: box-shadow 0.2s ease;
}

.boat-modal {
  max-width: min(900px, 92vw);
  width: 100%;
  grid-template-rows: auto auto auto;
}

.boat-modal__header {
  display: grid;
  gap: 10px;
}

.boat-modal__desc {
  margin: 0;
  color: var(--primary-dark);
}

.boat-carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.boat-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(26, 125, 219, 0.4);
  background: rgba(26, 125, 219, 0.12);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease;
}

.boat-carousel__dot.is-active {
  background: var(--primary);
  border-color: rgba(26, 125, 219, 0.8);
  transform: scale(1.08);
}

.boat-carousel__dot:focus-visible {
  outline: 2px solid rgba(26, 125, 219, 0.5);
  outline-offset: 2px;
}

.auth-card {
  display: grid;
  gap: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(26, 125, 219, 0.16);
  border-radius: var(--radius-md);
  padding: clamp(16px, 4vw, 24px);
  box-shadow: 0 18px 40px rgba(12, 74, 132, 0.12);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(26, 125, 219, 0.12);
  border-radius: 999px;
  padding: 4px;
}

.tab {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--primary);
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: rgba(26, 125, 219, 0.2);
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px rgba(26, 125, 219, 0.32);
}

.tab-panel {
  display: none;
  gap: 14px;
}

.tab-panel.active {
  display: grid;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

input,
textarea,
select {
  border-radius: 16px;
  border: 1px solid rgba(26, 125, 219, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 12px 16px;
  font: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(26, 125, 219, 0.55);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 125, 219, 0.18);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(26, 125, 219, 0.5) 50%), linear-gradient(135deg, rgba(26, 125, 219, 0.5) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 7px), calc(100% - 12px) calc(50% - 7px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-feedback {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-feedback.success {
  color: var(--success);
}

.form-feedback.error {
  color: var(--danger);
}

.demo-window article {
  display: grid;
  gap: 16px;
  text-align: center;
}

pre {
  margin: 0;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(26, 125, 219, 0.12);
  color: var(--primary-dark);
  text-align: left;
  overflow-x: auto;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .topbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .topbar__brand {
    order: 1;
    flex: 1 1 auto;
  }

  .topbar__whatsapp {
    order: 2;
  }

  .topbar__lang {
    order: 3;
  }

  .topbar__menu-toggle {
    order: 4;
  }

  .topbar__nav {
    order: 5;
  }

  .topbar__actions {
    order: 6;
  }

  .topbar__menu-toggle {
    display: flex;
  }

  .topbar__nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(26, 125, 219, 0.14);
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(12, 74, 132, 0.12);
    text-align: center;
  }

  .topbar__nav a {
    padding: 10px 0;
  }

  .topbar__nav .topbar__dropdown-actions {
    display: flex;
  }

  .topbar__nav.is-open {
    display: flex;
  }

  .hero__ticker {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .landing-main {
    padding: 48px 20px 80px;
    gap: 48px;
  }

  .topbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 12px 14px;
    gap: 6px;
    width: 100%;
  }

  .topbar__brand {
    gap: 10px;
    align-items: center;
    justify-content: center;
    order: 1;
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 42px;
  }

  .brand-copy {
    display: none;
  }

  .topbar__brand {
    order: 1;
    justify-content: center;
  }

  .topbar__menu-toggle,
  .topbar__whatsapp,
  .topbar__lang {
    order: initial;
    width: auto;
    min-height: 44px;
    justify-content: center;
    align-self: center;
    flex: 0 0 auto;
  }

  .topbar__whatsapp {
    order: 3;
    padding: 6px 10px;
    margin-left: 6px;
  }

  .topbar__whatsapp span {
    display: none;
  }

  .topbar__menu-toggle {
    order: 4;
    flex-shrink: 0;
    margin-left: 6px;
  }

  .topbar__lang {
    order: 2;
    padding: 0 12px;
    margin-left: auto;
  }

  .topbar__actions {
    display: none;
  }

  .topbar__actions {
    display: none;
  }

  .topbar__actions.is-open {
    display: none;
  }

  .topbar__nav {
    width: 100%;
  }

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

  .hero__content {
    text-align: center;
  }

  .hero__metrics {
    justify-content: center;
    gap: 16px;
  }

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

  .hero__visual {
    order: 2;
    margin-top: 24px;
  }

  .hero__content {
    order: 1;
  }

  .hero {
    padding: 40px 20px 80px;
    min-height: min(700px, 92vh);
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100vw;
  }

  .hero__headline {
    margin: 28px 0 36px;
  }

  .hero__headline h1 {
    padding: clamp(18px, 8vw, 32px);
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero__visual,
  .visual-card,
  .visual-card.secondary {
    max-width: 100%;
  }

  .hero--fullscreen {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .visual-card.secondary {
    align-self: center;
  }

  .section__header {
    text-align: center;
  }

  .services,
  .concept__grid,
  .signature__grid,
  .gallery-grid,
  .fleet-grid,
  .experience-grid,
  .routes__grid,
  .location__grid {
    grid-template-columns: 1fr;
  }

  .routes__grid {
    gap: 20px;
  }

  .boats__cta {
    justify-content: center;
  }

  .hero__content .boats {
    padding: 20px;
    margin: 14px 0;
    box-shadow: 0 18px 40px rgba(12, 74, 132, 0.12);
  }

  .boats__grid--cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .boat-card {
    gap: 10px;
  }

  .boat-card__media {
    aspect-ratio: 16 / 9;
  }

  .boat-card__body {
    padding: 12px 14px 16px;
  }

  .boat-modal {
    padding: 18px;
    gap: 14px;
  }

  .boat-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
  }

  .boat-carousel__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
  }

  #boatCarouselPrev {
    left: 10px;
  }

  #boatCarouselNext {
    right: 10px;
  }

  .amenities-grid,
  .excursions__grid {
    grid-template-columns: 1fr;
  }

  .detail__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .detail__media {
    order: -1;
  }

  .location {
    padding: 28px 20px;
  }

  .location__info {
    text-align: center;
  }

  .location__logo {
    margin: 0 auto;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: 1;
    grid-row: auto;
  }

  .ig-card {
    min-height: auto;
  }

  .ig-card__media {
    padding: 0 16px;
  }

  .ig-carousel__control {
    display: none;
  }

  .modal-window {
    min-width: min(360px, 92vw);
    padding: 28px;
  }

  .footer {
    text-align: center;
  }

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

  .footer__brand {
    justify-items: center;
  }

  .footer__legal {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 28px 20px;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__brand {
    justify-items: center;
  }

  .footer__group,
  .footer__list li {
    text-align: center;
    justify-items: center;
  }

  .footer__legal {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@keyframes sectionRise {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.section, .hero__grid, .hero__ticker, .routes__grid, .footer__grid {
  animation: sectionRise 0.8s ease both;
}

.section:nth-of-type(odd) {
  animation-delay: 0.1s;
}

.section:nth-of-type(even) {
  animation-delay: 0.2s;
}

.legal-page {
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f6fbff 0%, #e3f1ff 100%);
  color: #0b2a3d;
}

.legal-header {
  padding: clamp(32px, 8vw, 64px);
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(26, 125, 219, 0.12);
  box-shadow: 0 12px 32px rgba(12, 74, 132, 0.14);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(26, 125, 219, 0.12);
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.legal-brand img {
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(26, 125, 219, 0.18);
}

.legal-content {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px);
  display: grid;
  gap: 32px;
}

.legal-content section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  border: 1px solid rgba(26, 125, 219, 0.14);
  padding: clamp(24px, 5vw, 36px);
  box-shadow: 0 24px 60px rgba(12, 74, 132, 0.12);
}

.legal-content h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.legal-content p {
  line-height: 1.6;
  margin: 0;
}

.legal-content ul {
  margin: 16px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
  line-height: 1.6;
}

.legal-content a {
  color: #1a7ddb;
  text-decoration: underline;
}

.legal-footer {
  padding: clamp(24px, 6vw, 48px);
  text-align: center;
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(26, 125, 219, 0.12);
}

.legal-footer .btn {
  justify-self: center;
}
