/* ============================================================
   CHARTER — Public stylesheet (v7 design)
   Montserrat · black header · navy hero · white chips
   ============================================================ */

:root {
  --navy:#0a2540; --navy-2:#1a3550; --navy-deep:#061a30;
  --black:#0d0d0f;
  --sand:#f5efe6; --sand-2:#faf6ef; --cream:#fffdf8;
  --line:#e4ddd0; --line-soft:#efe9dd;
  --gold:#c9a961; --gold-2:#b8964c;
  --ink:#1a1a1f; --ink-soft:#5a6577;
  --wa:#25d366;

  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --shadow: 0 24px 48px -20px rgba(10,37,64,.18);
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 400; letter-spacing: -0.025em; }
h2 { font-size: clamp(26px, 3.6vw, 42px); }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; }
h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 14px;
  display: inline-block;
}
.lead { font-size: clamp(16px, 1.4vw, 18px); color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }

/* Layout */
.wrap { max-width: var(--max-w); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h2 { color: var(--cream); }
.section--navy .eyebrow { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.btn:hover { background: var(--navy); color: var(--cream); }
.btn--primary { background: var(--navy); color: var(--cream); }
.btn--primary:hover { background: var(--navy-2); }
.btn--light { border: 1px solid #fff; color: #fff; }
.btn--light:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn--ghost { border-color: var(--line); }
.btn--ghost:hover { background: var(--sand); color: var(--navy); }
.btn--wa { background: var(--wa); border-color: var(--wa); color: white; }
.btn--wa:hover { background: #1eb955; border-color: #1eb955; color: white; }
.btn--block { width: 100%; }

/* Header — BLACK */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.brand__lines {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
}
.brand__name {
  font-family: var(--font);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.brand__tag {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
  padding-left: 1px;
  margin-top: 3px;
}
.brand--footer .brand__name { font-size: 22px; }
@media (max-width: 600px) {
  .brand__name { font-size: 17px; letter-spacing: 0.16em; }
  .brand__tag  { font-size: 9px; letter-spacing: 0.38em; }
}

.lang-switch { display: flex; gap: 2px; font-size: 12px; }
.lang-switch a {
  padding: 7px 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all .2s;
}
.lang-switch a:hover { color: #fff; }
.lang-switch a.active { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
.lang-switch .flag { font-size: 14px; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav ul { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; }
.site-nav ul a {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,0.75); position: relative; padding: 8px 0;
  transition: color .2s;
}
.site-nav ul a:hover { color: var(--gold); }
.site-nav ul a.active { color: #fff; }
.site-nav ul a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; width: 36px; height: 36px; flex-direction: column; justify-content: center; gap: 4px; }
.nav-toggle span { display: block; height: 1.5px; background: #fff; width: 20px; transition: transform .3s; }

@media (max-width: 960px) {
  .site-header__inner { flex-wrap: wrap; }
  .brand { order: 1; margin-right: auto; }
  .nav-toggle { display: flex; order: 2; }

  /* no celular, escondemos switchers + nav até abrir o menu */
  .lang-switch, .cur-switch { display: none; }
  .site-nav { display: none; order: 5; width: 100%; }

  body.nav-open .site-nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    width: 100%; padding: 8px 0 0;
  }
  body.nav-open .site-nav ul { flex-direction: column; gap: 0; width: 100%; }
  body.nav-open .site-nav ul a { display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13px; }

  body.nav-open .lang-switch,
  body.nav-open .cur-switch {
    display: flex; width: 100%; justify-content: center; gap: 6px;
    order: 4; padding: 12px 0 0;
  }
  body.nav-open .lang-switch { order: 3; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8px; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: 80px var(--gutter) 64px;
  text-align: center;
}
.hero__video {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -3;
  background: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 60% 40% at 30% 40%, #2a6090 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 75% 65%, #1a4570 0%, transparent 60%),
    linear-gradient(180deg, #08203a 0%, #0a2540 60%, #061a30 100%);
  background-size: 200% 200%, 180% 180%, 100% 100%;
  animation: oceanDrift 22s ease-in-out infinite alternate;
}
@keyframes oceanDrift {
  0% { background-position: 0% 0%, 100% 100%, 0% 0%; }
  100% { background-position: 100% 50%, 0% 50%, 0% 0%; }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,13,15,0.15) 0%, rgba(13,13,15,0.6) 100%);
}
.hero__inner {
  max-width: 760px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.hero__inner .lead-hero { margin-left: auto; margin-right: auto; }
.hero__search { margin-left: auto; margin-right: auto; }
.hero .country-chips, .hero .dest-chips { justify-content: center; }
.hero h1 {
  color: #fff;
  margin: 0 0 8px;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.hero h1 strong { font-weight: 600; }
.hero__sub {
  color: var(--gold);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  display: block;
}
.hero p.lead-hero {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin: 0 auto 28px;
  line-height: 1.6;
  max-width: 48ch;
}

/* Hero search */
.hero__search {
  display: flex; align-items: center; gap: 10px;
  padding: 0 18px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.28);
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s;
  max-width: 560px;
}
.hero__search:focus-within { background: rgba(255,255,255,0.12); border-color: var(--gold); }
.hero__search input {
  background: none; border: 0; outline: 0; color: #fff;
  flex: 1; font-family: inherit; font-size: 14px; padding: 0;
}
.hero__search input::placeholder { color: rgba(255,255,255,0.6); }
.hero__search-icon { color: rgba(255,255,255,0.7); font-size: 17px; }

/* CHIPS — white outline + white text → invert on hover */
.country-chips {
  display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap;
}
.country-chips .chip {
  all: unset;
  cursor: pointer;
  padding: 11px 18px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  transition: background-color .2s, color .2s;
  text-transform: uppercase;
  text-decoration: none;
}
.country-chips .chip > * { color: inherit; }
.country-chips .chip:hover,
.country-chips .chip.active {
  background-color: #ffffff;
  color: #000000;
}
.country-chips .chip:hover > *,
.country-chips .chip.active > * { color: #000000; }
.country-chips .flag { font-size: 15px; }

.dest-chips {
  display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap;
  opacity: 0; max-height: 0;
  transition: opacity .25s, max-height .25s, margin-bottom .25s;
  overflow: hidden;
}
.dest-chips.visible { opacity: 1; max-height: 90px; margin-bottom: 28px; }
.dest-chips .dchip {
  all: unset;
  cursor: pointer;
  padding: 9px 15px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: var(--font);
  transition: background-color .2s, color .2s;
  text-transform: uppercase;
  text-decoration: none;
}
.dest-chips .dchip:hover { background-color: #ffffff; color: #000000; }

.hero__actions { margin-top: 12px; }
.hero__actions .btn {
  display: inline-flex; flex-direction: row; align-items: center;
  white-space: nowrap; gap: 9px;
  padding: 11px 24px;          /* mais fino que o padrão (16px 28px) */
  font-size: 11px;
  letter-spacing: 0.14em;
}
.hero__actions .btn svg { flex-shrink: 0; width: 13px; height: 13px; }

/* Section heads */
.section-head { margin-bottom: clamp(32px, 4vw, 52px); }
.section-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Boat carousel */
.carousel-section { padding: clamp(56px, 7vw, 80px) 0; }
.carousel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; padding: 0 var(--gutter); max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.carousel-head h2 { margin: 0; }
.filter-badge { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; padding: 5px 10px; background: var(--sand); border: 1px solid var(--line); }
.carousel-scroller { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gutter) 16px; -webkit-overflow-scrolling: touch; }
.carousel-scroller::-webkit-scrollbar { height: 8px; }
.carousel-scroller::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.carousel-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  text-decoration: none;
}
.carousel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.carousel-card.hidden { display: none; }
.carousel-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--sand); position: relative; }
.carousel-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.carousel-card:hover .carousel-card__media img { transform: scale(1.05); }
.carousel-card__loc {
  position: absolute; top: 12px; left: 12px;
  background: rgba(13,13,15,0.78); color: #fff;
  padding: 5px 10px; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 5px; font-weight: 600;
}
.carousel-card__body { padding: 18px 20px 22px; }
.carousel-card__name { font-size: 19px; margin: 0 0 8px; font-weight: 600; }
.carousel-card__meta { font-size: 12px; color: var(--ink-soft); display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; font-weight: 500; }
.carousel-card__price { font-size: 17px; color: var(--navy); font-weight: 600; }
.carousel-card__price small { font-size: 10px; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; display: block; font-weight: 500; margin-bottom: 2px; }

/* Destinations showcase on home */
.destinations-section { padding: clamp(56px, 7vw, 90px) 0; background: var(--cream); }
.destinations-section .section-head { padding: 0 var(--gutter); max-width: var(--max-w); margin: 0 auto clamp(32px, 4vw, 48px); }
.destinations-section h2 { margin: 0 0 8px; }

.dest-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) { .dest-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

.dest-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  display: block;
  isolation: isolate;
  text-decoration: none;
}
.dest-card__bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.dest-card:hover .dest-card__bg { transform: scale(1.05); }
.dest-card__bg--fallback {
  background: linear-gradient(135deg, #2a6090, #0a2540);
}
.dest-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,13,15,0.78) 100%);
  z-index: 0;
}
.dest-card__content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 24px 26px;
  color: #fff;
}
.dest-card__country {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
  display: inline-flex; align-items: center; gap: 7px;
}
.dest-card__name {
  font-size: clamp(24px, 3vw, 32px);
  color: #fff; font-weight: 500;
  margin: 0 0 6px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.dest-card__count {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); font-weight: 600;
}
.dest-card__arrow {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
  z-index: 2;
}
.dest-card:hover .dest-card__arrow { background: #fff; color: #000; transform: translateX(4px); }

/* Catalog (destination) page */
.catalog-hero {
  position: relative; min-height: 360px; color: #fff;
  padding: 56px var(--gutter) 48px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate; overflow: hidden;
}
.catalog-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.catalog-hero__bg--fallback {
  background: linear-gradient(135deg, #2a6090, #0a2540);
}
.catalog-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,13,15,0.25) 0%, rgba(13,13,15,0.72) 100%);
}
.catalog-hero__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; }
.catalog-hero .eyebrow { color: var(--gold); }
.catalog-hero h1 { color: #fff; margin: 6px 0 14px; font-weight: 400; }
.catalog-hero p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0; font-size: 15px; line-height: 1.6; }
.catalog-hero__stats { display: flex; gap: 32px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.2); }
.catalog-hero__stat { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 600; }
.catalog-hero__stat strong { display: block; font-size: 24px; font-weight: 500; letter-spacing: -0.01em; text-transform: none; margin-bottom: 2px; color: #fff; }

.catalog-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 18px;
  position: relative;
}
.catalog-back::before { content: '←'; }

.catalog-body { padding: clamp(44px, 6vw, 72px) var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.catalog-body__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; margin-bottom: 28px; flex-wrap: wrap; }
.catalog-body__count { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

.catalog-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-card { background: var(--cream); border: 1px solid var(--line-soft); transition: transform .3s, box-shadow .3s; cursor: pointer; display: block; text-decoration: none; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); position: relative; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.cat-card:hover .cat-card__media img { transform: scale(1.04); }
.cat-card__price-tag { position: absolute; top: 14px; right: 14px; background: var(--cream); padding: 7px 13px; font-size: 12px; font-weight: 600; color: var(--navy); }
.cat-card__body { padding: 20px 22px 22px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; }
.cat-card__name { font-size: 20px; margin: 0 0 8px; font-weight: 600; }
.cat-card__meta { font-size: 12px; color: var(--ink-soft); display: flex; gap: 16px; flex-wrap: wrap; font-weight: 500; }
.cat-card__cta { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); font-weight: 700; white-space: nowrap; }
.cat-card__cta::after { content: ' →'; }
.cat-empty { padding: 50px 28px; text-align: center; color: var(--ink-soft); background: var(--sand-2); border: 1px dashed var(--line); }

/* Boat detail — nova estrutura: topbar, intro, carrossel, preço, body */
.boat-detail { max-width: var(--max-w); margin: 0 auto; padding: 28px var(--gutter) 0; }
.boat-detail__topbar { margin-bottom: 18px; }
.boat-detail__intro { margin-bottom: 20px; }
.boat-detail__location { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; margin-bottom: 8px; }
.boat-detail__intro h1 { margin: 0; font-weight: 500; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; }

/* Carrossel de fotos */
.boat-carousel { position: relative; margin-bottom: 24px; }
.boat-carousel__viewport { overflow: hidden; background: var(--sand); border: 1px solid var(--line); }
.boat-carousel__track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.boat-carousel__slide { flex: 0 0 100%; min-width: 100%; }
.boat-carousel__slide img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.boat-carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(13,13,15,0.55); color: #fff; border: 1px solid rgba(255,255,255,0.3);
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2; backdrop-filter: blur(3px);
}
.boat-carousel__nav:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.boat-carousel__nav--prev { left: 14px; }
.boat-carousel__nav--next { right: 14px; }
.boat-carousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }
.boat-carousel__dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  border: 1px solid var(--gold); background: transparent; cursor: pointer; transition: background .2s;
}
.boat-carousel__dot.active { background: var(--gold); }

/* Barra de preço destacada */
.boat-detail__pricebar {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  padding: 18px 24px; margin-bottom: 36px;
}
.boat-detail__pricelabel { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.boat-detail__priceval { font-size: clamp(24px, 3vw, 34px); color: var(--navy); font-weight: 700; }

.boat-detail__body {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start;
}
@media (max-width: 900px) { .boat-detail__body { grid-template-columns: 1fr; gap: 24px; } }

.boat-detail__desc { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.boat-detail__desc p { margin: 0 0 1.2em; }

.spec-list { background: var(--sand); padding: 28px; }
.spec-list h4 { margin: 0 0 18px; color: var(--navy); }
.spec-list dl { display: grid; grid-template-columns: 1fr auto; gap: 12px 20px; margin: 0; font-size: 14px; }
.spec-list dt { color: var(--ink-soft); }
.spec-list dd { margin: 0; font-weight: 600; color: var(--navy); text-align: right; }
.spec-list .btn { width: 100%; justify-content: center; margin-top: 22px; }

@media (max-width: 600px) {
  .boat-carousel__nav { width: 38px; height: 38px; font-size: 22px; }
  .boat-carousel__slide img { aspect-ratio: 4/3; }
}

/* Specialist card */
.specialist-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 18px 20px;
  text-align: left;
  margin-top: 14px;
  box-shadow: 0 12px 32px -20px rgba(201,169,97,0.55);
  position: relative;
}
/* elegant inner gold frame */
.specialist-card::before {
  content: ''; position: absolute; inset: 5px;
  border: 1px solid rgba(201,169,97,0.30);
  border-radius: 3px; pointer-events: none;
}
.specialist-card > * { position: relative; z-index: 1; }

/* cabeçalho horizontal: foto à esquerda, nome à direita */
.specialist-head { display: flex; align-items: center; gap: 14px; }
.specialist-head__text { min-width: 0; }
.specialist-card__label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 4px; font-weight: 600;
}
.specialist-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af6f, #b8924c);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font);
  font-size: 19px; font-weight: 600;
  margin: 0; flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(201,169,97,0.4);
  border: 2px solid var(--cream);
}
.specialist-avatar::after { content: none; }
.specialist-name { font-size: 17px; margin: 0; color: var(--navy); font-weight: 600; line-height: 1.2; }
.specialist-role { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-top: 4px; font-weight: 600; }
.specialist-divider { display: none; }
.specialist-contact { font-size: 13px; margin: 14px 0 14px; }
.specialist-contact div { padding: 4px 0; display: flex; align-items: center; justify-content: flex-start; gap: 9px; color: var(--ink-soft); }
.specialist-contact .ico { color: var(--gold-2); width: 16px; flex-shrink: 0; }
.specialist-card .btn { width: 100%; justify-content: center; padding: 12px 20px; }

.amenity-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.amenity-list span { background: var(--sand-2); border: 1px solid var(--line); padding: 7px 12px; font-size: 13px; color: var(--navy); font-weight: 500; }

.boat-gallery {
  max-width: var(--max-w); margin: 60px auto 0;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.boat-gallery img { aspect-ratio: 4/3; object-fit: cover; }

/* Page hero (sub pages) */
.page-hero {
  padding: clamp(56px, 7vw, 100px) 0 clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}
.page-hero h1 { margin-bottom: 14px; }

/* Gallery */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
}
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 540px) { .gallery-grid { columns: 1; } }
.gallery-grid figure {
  break-inside: avoid; margin: 0 0 14px;
  position: relative; overflow: hidden;
}
.gallery-grid img { width: 100%; height: auto; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px; background: linear-gradient(transparent, rgba(13,13,15,0.7));
  color: #fff; font-size: 13px; opacity: 0; transition: opacity .3s;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 36px; }
.post-card { text-decoration: none; cursor: pointer; }
.post-card__media { aspect-ratio: 3/2; overflow: hidden; background: var(--sand); margin-bottom: 20px; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__date { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; font-weight: 600; }
.post-card__title { font-size: 22px; color: var(--navy); margin: 0 0 12px; line-height: 1.25; font-weight: 600; }
.post-card__excerpt { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.post-article { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.post-article header { text-align: center; margin: clamp(40px, 6vw, 80px) 0; }
.post-article__date { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; font-weight: 600; }
.post-article__cover { aspect-ratio: 16/9; object-fit: cover; width: 100%; margin-bottom: 50px; }
.post-article__body { font-size: 17px; line-height: 1.75; }
.post-article__body p { margin: 0 0 1.3em; }
.post-article__body h2 { margin-top: 1.8em; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
  cursor: pointer; list-style: none;
  font-size: clamp(17px, 1.6vw, 20px); color: var(--navy); font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 28px; color: var(--gold); transition: transform .3s; font-weight: 300; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding-top: 14px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 64px); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label span { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 16px; font-family: inherit; font-size: 15px;
  border: 1px solid var(--line); background: var(--cream); color: var(--navy);
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--navy); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { margin-top: 12px; }
.contact-info { background: var(--sand); padding: clamp(28px, 4vw, 44px); }
.contact-info h3 { font-size: 22px; margin: 0 0 18px; font-weight: 600; }
.contact-info dl { margin: 0; }
.contact-info dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 22px; margin-bottom: 6px; font-weight: 600; }
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: 0; font-size: 15px; color: var(--navy); }
.contact-info dd a { color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.contact-info .btn { margin-top: 26px; width: 100%; justify-content: center; }

.flash { padding: 16px 20px; margin-bottom: 24px; font-size: 14px; border-left: 3px solid; }
.flash--success { background: #e8f3ec; border-color: #2d7a4f; color: #1f5234; }
.flash--error { background: #f8e8e8; border-color: #a83232; color: #6b1d1d; }

.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 28px; font-weight: 600; }
.back-link::before { content: '←'; }

/* CTA strip */
.cta-strip { text-align: center; padding: clamp(64px, 8vw, 100px) var(--gutter); }
.cta-strip h2 { color: var(--cream); margin-bottom: 14px; }
.cta-strip p { color: rgba(255,253,248,0.85); max-width: 50ch; margin: 0 auto 30px; }

/* Footer */
.site-footer { background: var(--black); color: rgba(255,255,255,0.65); }
.site-footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) var(--gutter) 36px;
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 36px;
}
@media (max-width: 800px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer .brand__name { color: #fff; }
.site-footer h4 { color: #fff; margin: 0 0 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 14px; }
.site-footer a { color: rgba(255,255,255,0.65); }
.site-footer a:hover, .site-footer li a:hover { color: var(--gold); }
.footer-tag { margin: 16px 0 8px; font-size: 14px; max-width: 32ch; }
.footer-loc { font-size: 13px; opacity: 0.7; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px var(--gutter);
  text-align: center; font-size: 13px;
  max-width: var(--max-w); margin: 0 auto;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 100;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Placeholder */
.placeholder { background: linear-gradient(135deg, var(--sand) 0%, var(--line) 100%); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.empty { text-align: center; color: var(--ink-soft); padding: 80px 20px; }

/* Honeypot — invisible to humans, baits bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* LGPD cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 101;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 22px 56px -22px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.cookie-banner--visible { transform: translateY(0); opacity: 1; }
.cookie-banner__text { flex: 1; font-size: 13px; color: var(--ink); line-height: 1.55; }
.cookie-banner__text strong { display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.cookie-banner__text p { margin: 0; }
.cookie-banner__text a { color: var(--navy); border-bottom: 1px solid var(--gold); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 12px 20px; font-size: 11px; letter-spacing: 0.16em; }
@media (max-width: 760px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px 20px; bottom: 12px; left: 12px; right: 12px; gap: 14px; }
  .cookie-banner__actions { flex-direction: column-reverse; }
  .cookie-banner__actions .btn { width: 100%; }
}
/* Move the WhatsApp float higher when banner is visible to avoid overlap */
.cookie-banner--visible ~ .wa-float { bottom: 130px; }
@media (max-width: 760px) {
  .cookie-banner--visible ~ .wa-float { bottom: 220px; }
}

/* Featured boats — premium section above the carousel */
.featured-section { padding: clamp(56px, 7vw, 80px) 0; background: linear-gradient(180deg, var(--cream) 0%, var(--sand-2) 100%); }
.featured-head { text-align: center; margin-bottom: clamp(32px, 4vw, 48px); }
.featured-head h2 { margin: 0; }
.featured-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .featured-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
.featured-card {
  background: var(--cream); border: 1px solid var(--line);
  text-decoration: none; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  display: flex; flex-direction: column;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -24px rgba(10,37,64,0.25); }
.featured-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); position: relative; }
.featured-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.featured-card:hover .featured-card__media img { transform: scale(1.05); }
.featured-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--black);
  padding: 6px 12px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.featured-card__body { padding: 22px 24px 24px; }
.featured-card__loc { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; font-weight: 600; }
.featured-card__name { font-size: clamp(20px, 2vw, 24px); margin: 0 0 12px; font-weight: 600; letter-spacing: -0.01em; }
.featured-card__meta { display: flex; gap: 14px; font-size: 13px; color: var(--ink-soft); align-items: center; flex-wrap: wrap; font-weight: 500; }
.featured-card__price { margin-left: auto; color: var(--navy); font-weight: 600; }

/* Related boats section on boat detail */
.related-section { padding: clamp(56px, 7vw, 90px) 0; background: var(--sand); border-top: 1px solid var(--line); margin-top: 60px; }
.related-section .eyebrow { text-align: center; display: block; margin-bottom: 8px; }
.related-section h2 { text-align: center; margin: 0; font-size: clamp(24px, 3vw, 32px); }

/* Lightbox */
.boat-gallery__thumb {
  all: unset; cursor: zoom-in; display: block;
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--sand);
}
.boat-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.boat-gallery__thumb:hover img { transform: scale(1.04); }

.lb-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(13,13,15,0.92);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.lb-overlay.lb-visible { display: flex; opacity: 1; }
.lb-img { max-width: 92vw; max-height: 86vh; object-fit: contain; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.lb-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 13px; padding: 0 20px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  width: 48px; height: 48px; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s; border-radius: 50%;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-close { top: 18px; right: 18px; }
.lb-prev  { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; top: 22px; left: 22px; color: rgba(255,255,255,0.65); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 540px) {
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 18px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* Long-form destination content (SEO body) */
.destination-content { background: var(--cream); padding: clamp(48px, 7vw, 80px) 0; border-top: 1px solid var(--line); }
.destination-content__inner { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--ink); }
.destination-content__inner p { margin: 0 0 1.3em; }
.destination-content__inner h3 { font-size: clamp(20px, 2.2vw, 26px); margin: 1.8em 0 0.6em; color: var(--navy); font-weight: 600; }
.destination-content__inner h4 { font-size: 14px; margin: 1.5em 0 0.5em; color: var(--navy); font-weight: 600; letter-spacing: 0; text-transform: none; }
.destination-content__inner ul, .destination-content__inner ol { margin: 0 0 1.3em; padding-left: 1.4em; }
.destination-content__inner li { margin-bottom: 0.4em; }
.destination-content__inner a { color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.destination-content__inner img { margin: 1.5em 0; }

/* Testimonials / reviews */
.reviews-section, .home-reviews-section {
  padding: clamp(56px, 7vw, 90px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.home-reviews-section { background: var(--sand); border-top: 0; }
.reviews-head, .home-reviews-head { text-align: center; margin-bottom: clamp(32px, 4vw, 48px); }
.reviews-head h2, .home-reviews-head h2 { margin: 0 0 14px; }
.reviews-summary {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-size: 16px; color: var(--ink);
  margin-top: 6px;
}
.reviews-summary__stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; line-height: 1; }
.reviews-summary strong { font-size: 22px; font-weight: 600; color: var(--navy); }
.reviews-summary__count { color: var(--ink-soft); font-size: 14px; }
.reviews-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); max-width: 1000px; margin: 0 auto; } }
.review {
  background: #fff; border: 1px solid var(--line-soft);
  padding: 26px 28px;
  position: relative;
}
.review__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; line-height: 1; }
.review__body { font-size: 16px; line-height: 1.65; color: var(--ink); margin: 0 0 20px; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; background: var(--sand);
  flex-shrink: 0;
}
.review__avatar--initial {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px;
}
.review__author strong { font-size: 14px; color: var(--navy); font-weight: 600; display: block; }
.review__author small { font-size: 12px; color: var(--ink-soft); }

/* Currency switcher in header */
.cur-switch { display: flex; gap: 2px; margin-left: 6px; }
.cur-switch a {
  padding: 7px 10px; color: rgba(255,255,255,0.65);
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid transparent; line-height: 1;
  text-decoration: none; min-width: 32px; text-align: center;
}
.cur-switch a:hover { color: #fff; }
.cur-switch a.active { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
@media (max-width: 760px) {
  .cur-switch { margin-left: 4px; }
  .cur-switch a { padding: 6px 8px; font-size: 11px; min-width: 28px; }
}

/* Newsletter signup band — sits above the dark footer */
.newsletter-band {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 76px) 0;
}
.newsletter-band__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .newsletter-band__inner { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.newsletter-band__text .eyebrow { display: inline-block; margin-bottom: 12px; }
.newsletter-band__text h2 { font-size: clamp(24px, 3vw, 30px); margin: 0 0 12px; font-weight: 500; letter-spacing: -0.015em; }
.newsletter-band__text p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; }
.newsletter-form__row {
  display: grid; gap: 8px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .newsletter-form__row { grid-template-columns: 1fr 1.2fr auto; }
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  padding: 14px 16px; font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .15s;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form .btn { padding: 14px 22px; font-size: 12px; letter-spacing: 0.16em; }
.newsletter-form__msg {
  margin-top: 12px; padding: 10px 14px; font-size: 13px;
}
.newsletter-form__msg--success { background: #e0f5e7; color: #1e6b3a; border-left: 3px solid #1e6b3a; }
.newsletter-form__msg--error { background: #fff0ed; color: #c0392b; border-left: 3px solid #c0392b; }
.newsletter-form__legal { font-size: 11px; color: var(--ink-soft); margin: 12px 0 0; line-height: 1.5; }


/* === Filter bar (sort + capacity chips) on fleet & destination pages === */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: var(--sand);
  border: 1px solid var(--line);
  margin: 0 0 28px;
}
.filter-bar__label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft);
}
.filter-bar__chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-bar__sort { display: flex; align-items: center; gap: 8px; }
.filter-bar__sort select {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M5 7L1 3h8z' fill='%235a6577'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.filter-bar__sort select:focus { outline: none; border-color: var(--gold); }
.filter-chip {
  padding: 7px 14px;
  font-size: 12px; font-weight: 500;
  color: var(--ink); background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: background-color .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--gold-2); }
.filter-chip--active { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 600; }
.filter-bar__clear {
  font-size: 12px; color: var(--gold-2); text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 720px) {
  .filter-bar { padding: 14px 16px; gap: 12px; }
  .filter-bar__chips, .filter-bar__sort { width: 100%; }
  .filter-bar__sort { justify-content: space-between; }
  .filter-bar__sort select { flex: 1; }
}
.catalog-body__count small { font-size: 13px; color: var(--ink-soft); font-weight: 400; margin: 0 4px; }

/* === Mobile sticky CTA bar (boat detail page only) === */
.mobile-cta-bar {
  display: none; /* hidden on desktop */
}
@media (max-width: 760px) {
  .mobile-cta-bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    box-shadow: 0 -6px 22px rgba(0,0,0,0.08);
  }
  .mobile-cta-bar__info { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; min-width: 0; }
  .mobile-cta-bar__info small {
    font-size: 11px; color: var(--ink-soft); letter-spacing: 0.06em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .mobile-cta-bar__info strong {
    font-size: 17px; font-weight: 700; color: var(--navy);
    display: flex; align-items: baseline; gap: 6px;
  }
  .mobile-cta-bar__info strong span {
    font-size: 11px; font-weight: 400; color: var(--ink-soft);
  }
  .mobile-cta-bar__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--wa);
    color: #fff;
    padding: 12px 18px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    text-decoration: none; white-space: nowrap;
    flex-shrink: 0;
  }
  .mobile-cta-bar__btn:hover { background: #1ebc59; }

  /* On boat pages, push the page content up so the bar doesn't cover anything */
  .page-barco { padding-bottom: 80px; }
  /* Hide the floating WhatsApp on boat pages on mobile (the bar already has WA) */
  .page-barco .wa-float { display: none; }
  /* When the cookie banner is also visible, stack: CTA bar shifts up to make room */
  .cookie-banner--visible ~ .mobile-cta-bar { bottom: 160px; }
}


/* === Lead-magnet band === */
.magnet-band {
  background: linear-gradient(135deg, var(--navy) 0%, #08203a 60%, #061a30 100%);
  color: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.magnet-band::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,169,97,0.18), transparent 70%);
  pointer-events: none;
}
.magnet-band__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid; grid-template-columns: 1fr; gap: 36px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 820px) {
  .magnet-band__inner { grid-template-columns: 320px 1fr; gap: 56px; }
}
.magnet-band__cover {
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,97,0.3);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  transform: rotate(-2deg);
}
.magnet-band__cover img { width: 100%; height: 100%; object-fit: cover; }
.magnet-band__text .eyebrow {
  color: var(--gold); display: inline-block; margin-bottom: 14px;
  background: rgba(201,169,97,0.12);
  padding: 6px 12px;
  border: 1px solid rgba(201,169,97,0.3);
}
.magnet-band__text h2 {
  color: #fff; font-size: clamp(26px, 3.6vw, 38px);
  margin: 0 0 14px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.15;
}
.magnet-band__text p {
  color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.6;
  margin: 0 0 24px; max-width: 540px;
}
.magnet-form__row {
  display: grid; gap: 8px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .magnet-form__row { grid-template-columns: 1fr 1.2fr auto; }
}
.magnet-form input[type="text"],
.magnet-form input[type="email"] {
  padding: 14px 16px; font-size: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: inherit;
  transition: background-color .15s, border-color .15s;
}
.magnet-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }
.magnet-form input::placeholder { color: rgba(255,255,255,0.45); }
.magnet-form .btn--primary {
  background: var(--gold); color: var(--navy);
  border: 0; padding: 14px 26px;
  font-weight: 700; letter-spacing: 0.08em;
  white-space: nowrap;
}
.magnet-form .btn--primary:hover { background: #d4b576; }
.magnet-form__msg {
  margin-top: 14px; padding: 10px 14px; font-size: 13px;
}
.magnet-form__msg--success { background: rgba(30,107,58,0.2); color: #b8f5c4; border-left: 3px solid #1e6b3a; }
.magnet-form__msg--error { background: rgba(192,57,43,0.2); color: #ffb5a8; border-left: 3px solid #c0392b; }
.magnet-form__legal { font-size: 11px; color: rgba(255,255,255,0.5); margin: 14px 0 0; line-height: 1.55; }

/* === 404 page === */
.error-404 {
  padding: clamp(60px, 9vw, 120px) 0;
  background: var(--cream);
  min-height: 60vh;
}
.error-404__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.error-404__num {
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800;
  line-height: 1; color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  font-family: inherit;
  background: linear-gradient(135deg, var(--gold) 0%, #8a6a3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-404__head h1 {
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 12px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.error-404__head p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-soft);
  max-width: 560px; margin: 0 auto 28px;
  line-height: 1.6;
}
.error-404__cta {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap;
}
.error-404__suggestions {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  max-width: 880px; margin: 0 auto;
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
@media (min-width: 780px) {
  .error-404__suggestions { grid-template-columns: 1fr 1.4fr; gap: 48px; }
}
.error-404__col h2 {
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold-2); margin: 0 0 18px;
}
.error-404__list { list-style: none; padding: 0; margin: 0; }
.error-404__list li { border-bottom: 1px solid var(--line); }
.error-404__list li:first-child { border-top: 1px solid var(--line); }
.error-404__list a {
  display: block; padding: 14px 4px;
  color: var(--ink); text-decoration: none;
  transition: color .15s, padding-left .15s;
  font-size: 15px;
}
.error-404__list a:hover { color: var(--gold-2); padding-left: 8px; }
.error-404__list a small {
  display: block; font-size: 11px; color: var(--ink-soft);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px;
}
.error-404__list--boats a { display: grid; grid-template-columns: 80px 1fr; gap: 14px; align-items: center; padding: 12px 4px; }
.error-404__list--boats img { width: 80px; height: 56px; object-fit: cover; }
.error-404__list--boats strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; }
.error-404__list--boats small { display: block; font-size: 11px; color: var(--ink-soft); margin-top: 3px; }
.error-404__price { display: inline-block; margin-top: 4px; font-size: 12px; color: var(--gold-2); font-weight: 600; }

/* === Promo banner (admin-editable, dismissible) === */
.promo-banner {
  font-size: 13px; line-height: 1.4;
  padding: 0;
  position: relative; z-index: 50;
}
.promo-banner--gold {
  background: linear-gradient(90deg, #d4b576 0%, #c9a961 50%, #b8964c 100%);
  color: #2a200d;
}
.promo-banner--navy {
  background: linear-gradient(90deg, #0a2540 0%, #103057 50%, #061a30 100%);
  color: #fff;
}
.promo-banner--green {
  background: linear-gradient(90deg, #1e6b3a 0%, #2a8a4f 50%, #185830 100%);
  color: #fff;
}
.promo-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px clamp(40px, 5vw, 60px) 10px clamp(16px, 4vw, 28px);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: center; text-align: center;
}
.promo-banner__text {
  font-weight: 500; letter-spacing: 0.01em;
}
.promo-banner__cta {
  display: inline-block;
  padding: 4px 12px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid currentColor;
  white-space: nowrap;
  transition: background-color .15s, color .15s;
}
.promo-banner--gold .promo-banner__cta:hover { background: #2a200d; color: #c9a961; }
.promo-banner--navy .promo-banner__cta:hover { background: #fff; color: #0a2540; }
.promo-banner--green .promo-banner__cta:hover { background: #fff; color: #1e6b3a; }
.promo-banner__close {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  background: transparent; border: 0; color: inherit;
  font-size: 20px; line-height: 1; cursor: pointer;
  padding: 4px 10px; opacity: 0.7;
  transition: opacity .15s;
}
.promo-banner__close:hover { opacity: 1; }
.promo-banner.is-dismissed { display: none; }
@media (max-width: 600px) {
  .promo-banner__inner { font-size: 12px; padding: 9px 36px 9px 14px; gap: 8px; }
  .promo-banner__cta { font-size: 11px; padding: 3px 10px; }
}

/* === Search dropdown (hero) — opens on input focus, shows destinations grouped by country === */
.hero__search-wrap { position: relative; max-width: 480px; margin: 0 auto 26px; }
.hero__search { position: relative; margin: 0; }
.search-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
  background: #fff; color: var(--ink);
  box-shadow: 0 18px 50px -10px rgba(0,0,0,0.35);
  max-height: 380px; overflow-y: auto;
  border: 1px solid var(--line);
  text-align: left;
  animation: searchOpen .18s ease-out;
}
@keyframes searchOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.search-group { padding: 14px 18px; border-bottom: 1px solid var(--line); }
.search-group:last-child { border-bottom: 0; }
.search-group--hidden { display: none; }
.search-group__country {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; padding: 2px 0;
  font-size: 13px; letter-spacing: 0.04em;
  text-decoration: none; color: var(--navy);
}
.search-group__country:hover { color: var(--gold-2); }
.search-group__country strong { font-weight: 700; }
.search-group__country .flag { font-size: 18px; line-height: 1; }
.search-group__cities { list-style: none; padding: 0 0 0 30px; margin: 0; }
.search-group__cities li { padding: 0; }
.search-group__cities li.search-city--hidden { display: none; }
.search-group__cities a {
  display: block; padding: 6px 8px 6px 4px;
  color: var(--ink); text-decoration: none;
  font-size: 13px; font-weight: 400;
  border-radius: 2px;
  transition: background-color .12s, padding-left .12s;
}
.search-group__cities a:hover { background: var(--sand); padding-left: 8px; color: var(--gold-2); }
.search-dropdown__empty { padding: 18px; color: var(--ink-soft); font-size: 13px; text-align: center; font-style: italic; }

/* === Availability calendar (boat detail) === */
.availability-section { padding: 56px 28px; background: var(--cream); }
.availability-head { text-align: center; margin-bottom: 28px; }
.availability-head h2 { font-size: 26px; font-weight: 500; margin: 8px 0 12px; letter-spacing: -0.01em; }
.availability-legend { display: flex; gap: 22px; justify-content: center; font-size: 13px; color: var(--ink-soft); }
.legend-item { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.legend-dot--free { background: #fff; border: 1px solid var(--gold); }
.legend-dot--busy { background: #e4ddd0; border: 1px solid #cbbfa8; }
.calendar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 880px; margin: 0 auto; }
.cal-month { background: #fff; border: 1px solid var(--line); padding: 16px; }
.cal-month__title { text-align: center; font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 12px; letter-spacing: 0.02em; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 6px; }
.cal-weekdays span { text-align: center; font-size: 10px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.04em; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 12px; border-radius: 3px; }
.cal-day--empty { background: transparent; }
.cal-day--free { background: #fff; border: 1px solid var(--gold); color: var(--ink); font-weight: 500; }
.cal-day--busy { background: #e4ddd0; color: #9a8d76; text-decoration: line-through; border: 1px solid #cbbfa8; }
.cal-day--past { background: #fafafa; color: #ccc; }
.availability-note { text-align: center; margin-top: 24px; font-size: 14px; color: var(--ink-soft); }
.availability-note a { color: var(--gold-2); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
@media (max-width: 760px) {
  .calendar-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* === Boat routes section (public boat detail) === */
.routes-section { padding: 56px 28px; background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.routes-head { text-align: center; margin-bottom: 32px; }
.routes-head h2 { font-size: 28px; font-weight: 500; margin: 8px 0 8px; letter-spacing: -0.01em; }
.routes-head p { color: var(--ink-soft); font-size: 14px; }
.routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; max-width: 1100px; margin: 0 auto; }
.route-card { background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.route-card:hover { box-shadow: 0 16px 36px -16px rgba(0,0,0,0.18); transform: translateY(-3px); }
.route-card__photo { aspect-ratio: 16/10; background: var(--sand); position: relative; overflow: hidden; }
.route-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.route-card__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 42px; color: rgba(0,0,0,0.12); }
.route-card__duration {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--black);
  padding: 5px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.route-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.route-card__path { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.route-card__origin, .route-card__destination { font-size: 15px; font-weight: 600; color: var(--navy); }
.route-card__arrow { color: var(--gold); font-weight: 700; font-size: 18px; line-height: 1; }
.route-card__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 2px 0; }
.route-card__footer {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.route-card__price { font-size: 18px; font-weight: 700; color: var(--navy); }
.route-card__price--ask { font-size: 13px; font-weight: 500; color: var(--ink-soft); font-style: italic; }
.route-card__cta {
  background: var(--wa); color: #fff;
  padding: 9px 16px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; text-decoration: none;
}
.route-card__cta:hover { filter: brightness(1.08); }
@media (max-width: 600px) {
  .routes-grid { grid-template-columns: 1fr; }
  .route-card__footer { flex-direction: column; align-items: stretch; }
  .route-card__cta { text-align: center; }
}
