/* ─────────────────────────────────────────────────────────────────────────────
   SamSeaTrips · main.css · dev. 360°Stark — https://360stark.link
   ──────────────────────────────────────────────────────────────────────────── */

/* ── Tokens ─────────────────────────────────────────────────────────────────*/
:root {
  --navy:        #0D1F3C;
  --navy-mid:    #152A4A;
  --sea:         #1B6CA8;
  --turquoise:   #2DA89C;
  --sand:        #F0E6D0;
  --sand-light:  #F7F2E8;
  --sand-dark:   #DDD0B5;
  --terra:       #C4683D;
  --terra-light: #E8A07A;
  --salt:        #FAFAF6;
  --text:        #0D1F3C;
  --muted:       #6B7587;
  --border:      rgba(13,31,60,0.12);
  --border-mid:  rgba(13,31,60,0.22);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --transition:  0.2s ease;
}

/* ── Reset ───────────────────────────────────────────────────────────────────*/
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--sand-light); color: var(--text); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── Header (estilo 360stark.link) ──────────────────────────────────────────*/
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,31,60,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
#header.scrolled {
  background: rgba(10,20,50,0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.header-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex; align-items: center; gap: 28px;
}

/* Logo */
.logo-group {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-anchor {
  display: flex; align-items: center;
  opacity: 0.9; flex-shrink: 0;
}
.logo-anchor img/* eliminado */
.logo-text {
  display: flex; flex-direction: column; gap: 0;
}
.logo-brand {
  font-size: 14px; font-weight: 500; color: #FAFAF6;
  letter-spacing: 2px; line-height: 1;
}
.logo-sub {
  font-size: 8px; letter-spacing: 1.5px; color: rgba(255,255,255,0.35);
  text-transform: uppercase; margin-top: 2px; line-height: 1;
}

/* Nav desktop */
.nav-desktop {
  display: flex; align-items: center; gap: 6px;
  flex: 1;
}
.nav-desktop a {
  font-size: 11px; font-weight: 400; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-desktop a:hover { color: #FAFAF6; background: rgba(255,255,255,0.06); }

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}

/* Lang selector */
.lang-selector { display: flex; gap: 2px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 10px; letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  padding: 4px 7px; border-radius: 6px;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

/* CTA reservar */
.btn-reservar {
  background: var(--terra); color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  padding: 7px 16px; border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-reservar:hover { background: #B55A2F; }

/* Hamburger */
.hamburger {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #FAFAF6;
  font-size: 18px;
  cursor: pointer;
  padding: 7px 10px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: auto;
  transition: all 0.15s;
}
.hamburger:hover { background: rgba(255,255,255,0.15); }

/* Mobile nav */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--navy); border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px; gap: 2px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-size: 14px; color: rgba(255,255,255,0.7);
  padding: 12px 0; border-bottom: 0.5px solid rgba(255,255,255,0.06);
  letter-spacing: 0.5px;
}
.btn-reservar-mobile {
  margin-top: 16px; background: var(--terra); color: #fff;
  text-align: center; padding: 14px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
}

/* ── Hero ────────────────────────────────────────────────────────────────────*/
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #061325 0%, #0D1F3C 40%, #1A3A6B 70%, #0F4A6E 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(45,168,156,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(27,108,168,0.15) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 20 30 30 Q45 40 60 30' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 60px 60px;
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 60px 24px 120px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 24px;
}
.dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 8px var(--turquoise);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 600; color: #FAFAF6; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-title em { font-style: italic; color: var(--terra-light); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 480px; line-height: 1.7; margin-bottom: 36px; font-weight: 300;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--terra); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: all var(--transition); display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #B55A2F; transform: translateY(-1px); }
.btn-xl { padding: 18px 40px; font-size: 16px; }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
  padding: 14px 24px; border-radius: var(--radius-md);
  font-size: 14px; border: 0.5px solid rgba(255,255,255,0.15);
  transition: all var(--transition); display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-n { font-size: 20px; font-weight: 500; color: #FAFAF6; letter-spacing: 0.3px; }
.stat-l { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.stat-div { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }

/* ── Sections ────────────────────────────────────────────────────────────────*/
.section { padding: 80px 0; }
.section-sand  { background: var(--sand); }
.section-white { background: var(--salt); }
.section-dark  { background: var(--navy); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--terra); display: block; margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600; color: var(--navy); line-height: 1.2;
}
.section-header h2 em { font-style: italic; color: var(--sea); }
.section-sub {
  font-size: 15px; color: var(--muted);
  max-width: 480px; margin: 16px auto 0;
  line-height: 1.7;
}

/* ── Trip cards ──────────────────────────────────────────────────────────────*/
.trips-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 28px;
}
.trip-card {
  background: var(--salt); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.trip-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,31,60,0.12); }
.trip-card-featured { border: 2px solid var(--navy); }
.badge-pop {
  position: absolute; top: 12px; right: 12px;
  background: var(--navy); color: var(--salt);
  font-size: 9px; letter-spacing: 1.5px; padding: 3px 10px;
  border-radius: 20px;
}
.trip-card-head {
  padding: 24px 24px 20px;
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A6B 100%);
  display: flex; justify-content: space-between; align-items: center;
}
.trip-card-featured .trip-card-head { background: linear-gradient(135deg, var(--navy) 0%, var(--sea) 100%); }
.trip-duration { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.trip-price { display: flex; align-items: baseline; gap: 2px; }
.price-num { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--terra-light); }
.price-unit { font-size: 12px; color: rgba(255,255,255,0.45); }
.trip-card-body { padding: 20px 24px; flex: 1; }
.trip-card-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.trip-card-body p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.trip-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.trip-features li {
  font-size: 12px; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.trip-features li i { color: var(--turquoise); font-size: 14px; }
.trip-card-foot {
  padding: 16px 24px 20px;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.trip-private { font-size: 12px; color: var(--muted); }
.trip-private strong { color: var(--navy); }
.badge-discount {
  background: rgba(45,168,156,0.12); color: var(--turquoise);
  font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: 500;
}
.btn-trip {
  background: var(--navy); color: var(--salt);
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  padding: 9px 18px; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-trip:hover { background: var(--navy-mid); }
.btn-trip-featured { background: var(--terra); }
.btn-trip-featured:hover { background: #B55A2F; }

/* Private banner */
.private-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A6B 100%);
  border-radius: var(--radius-lg); padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.private-banner-content h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: #FAFAF6; margin-bottom: 8px; margin-top: 4px;
}
.private-banner-content p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }
.btn-private {
  background: var(--terra); color: #fff;
  padding: 14px 24px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500; white-space: nowrap;
  transition: all var(--transition); flex-shrink: 0;
}
.btn-private:hover { background: #B55A2F; }

/* ── Included grid ───────────────────────────────────────────────────────────*/
.included-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.included-item {
  padding: 24px 20px; background: var(--sand);
  border-radius: var(--radius-md); border: 0.5px solid var(--border);
}
.included-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(13,31,60,0.07); display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px;
}
.included-icon i { font-size: 20px; color: var(--navy); }
.included-item h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.included-item p  { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── Steps ───────────────────────────────────────────────────────────────────*/
.steps-grid {
  display: flex; align-items: flex-start; gap: 12px;
  flex-wrap: wrap; justify-content: center; margin-bottom: 40px;
}
.step {
  flex: 1; min-width: 200px; max-width: 280px;
  background: var(--salt); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 0.5px solid var(--border);
}
.step-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 600;
  color: rgba(13,31,60,0.1); margin-bottom: 12px; line-height: 1;
}
.step h4 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.7; }
.step-arrow { color: var(--sand-dark); font-size: 20px; padding-top: 40px; flex-shrink: 0; }

/* Policies */
.policies-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.policy {
  background: var(--salt); border: 0.5px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.policy i { font-size: 18px; color: var(--turquoise); margin-bottom: 4px; }
.policy strong { font-size: 13px; color: var(--navy); }
.policy span { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── Boat section ────────────────────────────────────────────────────────────*/
.boat-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.boat-content h2 {
  font-family: var(--font-display); font-size: clamp(28px,4vw,42px);
  font-weight: 600; line-height: 1.2; margin-bottom: 16px; margin-top: 8px;
}
.boat-content em { font-style: italic; color: var(--turquoise); }
.boat-specs { display: flex; gap: 28px; margin-top: 8px; }
.spec { display: flex; flex-direction: column; gap: 2px; }
.spec-n { font-size: 18px; font-weight: 500; color: #FAFAF6; }
.spec-l { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.boat-visual {
  display: flex; align-items: center; justify-content: center;
}
.boat-placeholder {
  width: 100%; max-width: 380px; aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
  font-size: 48px; color: rgba(255,255,255,0.15);
}
.boat-placeholder small {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── Location ────────────────────────────────────────────────────────────────*/
.location-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 20px; }
.location-item { display: flex; gap: 14px; align-items: flex-start; }
.location-item i { font-size: 18px; color: var(--terra); margin-top: 2px; flex-shrink: 0; }
.location-item strong { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.location-item span, .location-item a { font-size: 13px; color: var(--muted); }
.location-item a:hover { color: var(--terra); }

/* ── CTA section ─────────────────────────────────────────────────────────────*/
.cta-section {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
  padding: 100px 24px;
}
.cta-section h2 {
  font-family: var(--font-display); font-size: clamp(32px,5vw,52px);
  font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.cta-section em { font-style: italic; color: var(--sea); }
.cta-section p { font-size: 16px; color: var(--muted); margin-bottom: 28px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 14px 24px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500; margin-left: 12px;
  transition: all var(--transition);
}
.btn-wa:hover { background: #1DA851; }
.btn-wa i { font-size: 18px; }

/* ── Footer ──────────────────────────────────────────────────────────────────*/
.footer {
  background: var(--navy); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 14px; font-weight: 500; color: #FAFAF6;
  letter-spacing: 2px; margin-bottom: 8px;
}
.footer-tagline {
  font-size: 11px; color: rgba(255,255,255,0.3);
  line-height: 1.6; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: #FAFAF6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 4px; font-weight: 400;
}
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-dev {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-dev:hover { color: rgba(255,255,255,0.6); }
.dev-dot { color: var(--turquoise); font-size: 8px; }

/* ── Responsive ──────────────────────────────────────────────────────────────*/
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .lang-selector { display: none; }
  .btn-reservar { display: none; }
  .btn-mi-reserva { display: none; }
  .hamburger { display: flex !important; align-items: center; justify-content: center; }

  .hero-content { padding: 40px 24px 100px; }
  .hero-stats { gap: 14px; }
  .stat-div { display: none; }

  .boat-content { grid-template-columns: 1fr; gap: 32px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .private-banner { flex-direction: column; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-arrow { display: none; }
  .btn-wa { margin-left: 0; margin-top: 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
}

/* ── Btn Mi Reserva header ── */
.btn-mi-reserva {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 400; letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  padding: 6px 12px; border-radius: var(--radius-sm);
  border: 0.5px solid rgba(255,255,255,0.15);
  transition: all var(--transition); white-space: nowrap;
}
.btn-mi-reserva:hover { color: #FAFAF6; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.btn-mi-reserva svg { flex-shrink: 0; }
@media(max-width:768px){ .btn-mi-reserva span { display:none; } .btn-mi-reserva { padding:6px 8px; } }

/* ══════════════════════════════════════════════════
   HERO — imagen de fondo + overlay
   ══════════════════════════════════════════════════ */
.hero {
  background-image: url('/img/hero-bg.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,31,60,0.75) 0%,
    rgba(13,31,60,0.55) 50%,
    rgba(13,31,60,0.40) 100%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

/* ══════════════════════════════════════════════════
   LOGO en header
   ══════════════════════════════════════════════════ */
/* eliminado */
.logo-anchor { display: flex; align-items: center; }

/* ══════════════════════════════════════════════════
   SECCIÓN BARCO — El Llaut GAS II
   ══════════════════════════════════════════════════ */
.boat-section {
  padding: 80px 0;
  background: var(--sand);
  overflow: hidden;
}
.boat-section .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.boat-header { text-align: center; margin-bottom: 40px; }
.boat-header .eyebrow { color: var(--muted); }
.boat-header h2 { font-family: var(--font-display); font-size: clamp(32px,5vw,52px); color: var(--navy); font-weight: 600; margin-top: 6px; }
.boat-header h2 em { font-style: italic; color: #E8A07A; }

/* Foto principal */
.boat-main-photo {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 16px;
}
.boat-main-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a1628 0%, #1B6CA8 60%, #2DA89C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.boat-main-placeholder::after {
  content: 'Foto próximamente';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Slider 3 miniaturas */
.boat-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.boat-thumb {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.boat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.boat-thumb:hover img { transform: scale(1.05); }
.boat-thumb.active::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid #E8A07A;
  border-radius: 10px;
  pointer-events: none;
}
.boat-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.boat-specs-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.boat-spec { text-align: center; }
.boat-spec-n { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--navy); display: block; }
.boat-spec-l { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; display: block; }

/* ══════════════════════════════════════════════════
   SECCIÓN GALERÍA EXCURSIONES — slider 1x4
   ══════════════════════════════════════════════════ */
.gallery-section {
  padding: 80px 0 60px;
  background: var(--sand);
  overflow: hidden;
}
.gallery-section .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gallery-header { text-align: center; margin-bottom: 36px; }
.gallery-header h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); color: var(--navy); font-weight: 600; }
.gallery-header h2 em { font-style: italic; color: var(--terra); }

.gallery-slider-wrap {
  position: relative;
}
.gallery-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-slider::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 calc(25% - 12px);
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--navy);
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-slide:hover img { transform: scale(1.05); }
.gallery-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 40px;
}
.gallery-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(13,31,60,0.9) 0%, transparent 100%);
  color: #FAFAF6;
  font-family: var(--font-body);
}
.gallery-slide-label strong { font-size: 15px; font-weight: 500; display: block; margin-bottom: 2px; }
.gallery-slide-label span { font-size: 12px; color: rgba(255,255,255,0.6); }

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.gallery-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,31,60,0.2);
  background: #FAFAF6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy);
  transition: all 0.15s;
}
.gallery-btn:hover { background: var(--navy); color: #FAFAF6; border-color: var(--navy); }

@media(max-width:768px){
  .gallery-slide { flex: 0 0 80%; }
  .boat-thumbs { gap: 8px; }
  .boat-specs-row { gap: 24px; }
  .boat-spec-n { font-size: 24px; }
  .hero { background-attachment: scroll !important; }
}





/* Hero texto a la derecha */
.hero-eyebrow { grid-column: 1/-1; }

/* En móvil: layout vertical */
@media(max-width:768px){
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #heroLogo { opacity: 0.08; height: 160px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
}


}

/* ══ LOGO ══════════════════════════════════════════════════ */
.logo-anchor { display:flex; align-items:center; }
/* eliminado */

/* ══ HERO LAYOUT 2 columnas ════════════════════════════════ */
.hero { position: relative; }
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px 80px;
}
.hero-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-col img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
}
.hero-text-col { display: flex; flex-direction: column; gap: 16px; }

@media(max-width:900px){
  .hero-content {
    grid-template-columns: 1fr;
    padding: 80px 24px 100px;
    text-align: center;
  }
  .hero-logo-col img { max-width: 200px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
}

/* ══ INCLUDED GRID 3x2 ══════════════════════════════════════ */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media(max-width:768px){ .included-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .included-grid { grid-template-columns: 1fr; } }

/* ══ HERO alineación ════════════════════════════════════════ */
.hero-content {
  align-items: center !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.hero-logo-col {
  align-self: center !important;
  justify-content: center !important;
}
.hero-logo-col img {
  max-width: 300px !important;
  width: 90% !important;
}
.hero-text-col {
  align-self: center !important;
  gap: 14px !important;
}
.hero-title { margin-top: 0 !important; }
.hero-eyebrow { margin-top: 4px !important; }

/* Mobile: logo encima del título, centrado, más grande */
@media(max-width:768px){
  .hero-content {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    padding: 60px 20px 90px !important;
    gap: 16px !important;
  }
  .hero-logo-col img {
    max-width: 220px !important;
    width: 70vw !important;
  }
  .hero-text-col { align-items: center !important; }
  .hero-ctas { justify-content: center !important; }
  .hero-stats { justify-content: center !important; }
  .hero-eyebrow { justify-content: center !important; }
}

/* ══ STEPS centrado ══════════════════════════════════════════ */
.steps-grid { justify-items: center !important; }
.step { align-items: center !important; }
.step h4, .step p { text-align: center !important; }
.step-num { margin: 0 auto 12px !important; }
.policy { text-align: center !important; }
.policy i { display: block !important; margin: 0 auto 8px !important; }

/* ══ BOAT centrado ════════════════════════════════════════════ */
.boat-content { text-align: center !important; justify-content: center !important; }
.boat-content > div { text-align: center !important; }
.boat-specs { justify-content: center !important; }

/* Galería 3 visibles en desktop, 1.5 en móvil */
.gallery-slide {
  flex: 0 0 calc(33.333% - 12px) !important;
}
@media(max-width:768px){
  .gallery-slide { flex: 0 0 80% !important; }
}

/* ══ Mobile fixes ════════════════════════════════════════════ */
@media(max-width:768px){
  /* Logo header */
  .logo-anchor img.logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

  /* Included 2x3 en móvil */
  .included-grid {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 14px !important;
  }

  /* Steps centrado */
  .steps-grid { text-align: center !important; }
  .step { text-align: center !important; align-items: center !important; }
  .step-num { margin: 0 auto 10px !important; }
  .step h4, .step p { text-align: center !important; }

  /* Header mobile */
  .header-inner {
    padding: 0 16px !important;
    height: 54px !important;
  }
  .hamburger { display: flex !important; }
  .header-actions { gap: 8px !important; }
}

/* ══ Steps centrado ══ */
#como-funciona .section-header { text-align:center !important; }
#como-funciona .steps-grid { justify-items:center !important; text-align:center !important; }
#como-funciona .step { text-align:center !important; display:flex; flex-direction:column; align-items:center; }
#como-funciona .step-num { margin:0 auto 12px !important; }
#como-funciona .step h4, #como-funciona .step p { text-align:center !important; }
#como-funciona .step-arrow { display:flex; align-items:center; justify-content:center; }
#como-funciona .policies-grid { justify-items:center !important; }
#como-funciona .policy { text-align:center !important; align-items:center !important; display:flex; flex-direction:column; }

/* ══ Footer mobile ══ */
@media(max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .footer-brand { grid-column: 1/-1; text-align:center; }
  .footer-links:nth-child(3) { display:none; } /* Ocultar Información */
  .footer-links:nth-child(2) { display:none; } /* Ocultar Excursiones */
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    text-align: center !important;
  }
  .footer-dev {
    font-size: 14px !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,0.06) !important;
  }

  /* Logo header mobile */
  .logo-anchor img.logo-img { height:34px !important; }

  /* Included 2 columnas en mobile */
  .included-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Header redondeado mobile */
  #header { padding: 6px 12px !important; }
  #header .header-inner { border-radius: 12px !important; }
}

/* ══ FOOTER fix definitivo ══════════════════════════════════ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
/* Legal alineado a la derecha en desktop */
.footer-grid .footer-links:last-child {
  text-align: right;
}
.footer-grid .footer-links:last-child a,
.footer-grid .footer-links:last-child h5 {
  text-align: right;
}
@media(max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center !important;
  }
  .footer-brand .footer-social { justify-content: center; }
  .footer-grid .footer-links:last-child { text-align: left !important; }
  .footer-grid .footer-links:last-child a,
  .footer-grid .footer-links:last-child h5 { text-align: left !important; }
  .footer-bottom { flex-direction: column !important; align-items: center !important; text-align: center !important; }
}

/* ══ LOGO HEADER fix definitivo ═════════════════════════════ */
.logo-anchor { display: flex !important; align-items: center !important; }
.logo-anchor img.logo-img {
  height: 42px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}
/* Quitar el ancla SVG que hereda 26x26 */
.logo-anchor img:not(.logo-img) { display: none !important; }

/* ══ STEPS centrado mobile ══════════════════════════════════ */
@media(max-width:768px){
  .steps-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  .step-arrow { display: none !important; }
  .step {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 320px !important;
    padding: 24px !important;
    background: var(--salt) !important;
    border-radius: 14px !important;
    border: 0.5px solid var(--border) !important;
  }
  .step-num { margin: 0 auto 12px !important; }
  .step h4, .step p { text-align: center !important; }
  .policies-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .policy { text-align: center !important; }
}

/* ══ LOGO header mobile ════════════════════════════════════ */
@media(max-width:768px){
  .logo-anchor img.logo-img { height: 34px !important; }
}

/* ══ HEADER LIMPIO ESTILO 360STARK ══════════════════════════ */
#header {
  position: fixed;
  top: 12px; left: 16px; right: 16px;
  z-index: 100;
  padding: 0;
}
#header .header-inner {
  background: rgba(13,31,60,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0 20px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}
#header.scrolled .header-inner {
  background: rgba(13,31,60,0.97);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.logo-group { flex-shrink: 0; }
.nav-desktop { flex: 1; display: flex; justify-content: center; gap: 4px; }
.nav-desktop a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-desktop a:hover { color: #FAFAF6; background: rgba(255,255,255,0.07); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-reservar {
  background: #C4683D;
  color: #FAFAF6;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-reservar:hover { background: #B55A2F; }
.hide-mobile { display: inline; }
.hamburger {
  display: none !important;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #FAFAF6;
  cursor: pointer;
  padding: 8px 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.hamburger:hover { background: rgba(255,255,255,0.15); }

/* Lang menu */
#langMenu { display: none; }
#langMenu.open { display: block; }

/* Hero padding-top para el header flotante */
.hero { padding-top: 82px; }

/* Mobile header */
@media(max-width:768px){
  #header { top: 8px; left: 10px; right: 10px; }
  #header .header-inner { padding: 0 14px; height: 52px; border-radius: 12px; }
  .nav-desktop { display: none !important; }
  .lang-selector .hide-mobile, .hide-mobile { display: none !important; }
  .hamburger { display: flex !important; }
  .header-actions { gap: 6px; }
}

/* Footer mobile */
@media(max-width:768px){
  .footer .container > div:first-child {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .footer .container > div:first-child > div:first-child {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }
  .footer .container > div:first-child > div:first-child div[style*="display:flex;gap"] {
    justify-content: center !important;
  }
}

/* ══ HEADER esquinas redondeadas definitivo ═════════════════ */
#header { top:12px; left:14px; right:14px; }
#header .header-inner {
  border-radius: 16px !important;
  border: 0.5px solid rgba(255,255,255,0.12) !important;
  background: rgba(13,31,60,0.88) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
}
#header.scrolled .header-inner {
  background: rgba(13,31,60,0.97) !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35) !important;
}

/* ══ FOOTER width full ══════════════════════════════════════ */
.footer { width: 100%; box-sizing: border-box; }
.footer .container { max-width: 1200px; margin: 0 auto; padding: 60px 32px 40px; }
.footer .container > div:first-child {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

/* Footer mobile */
@media(max-width:768px){
  .footer .container { padding: 40px 20px 30px; }
  .footer .container > div:first-child {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .footer .container > div:first-child > div:first-child {
    grid-column: 1/-1 !important;
  }
}

/* Header mobile */
@media(max-width:768px){
  #header { top:8px; left:10px; right:10px; }
  #header .header-inner { border-radius: 12px !important; height:52px; padding:0 12px; }
}

/* ══ HEADER border-radius FORZADO ══════════════════════════ */
#header,
div#header {
  position: fixed !important;
  top: 12px !important;
  left: 14px !important;
  right: 14px !important;
  padding: 0 !important;
  z-index: 9999 !important;
}
#header .header-inner,
div#header .header-inner {
  border-radius: 16px !important;
  overflow: hidden;
  background: rgba(13,31,60,0.90) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 0.5px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2) !important;
  height: 58px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 20px !important;
  gap: 16px !important;
}
#header.scrolled .header-inner {
  background: rgba(13,31,60,0.98) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4) !important;
  border-color: rgba(255,255,255,0.08) !important;
}

/* Nav mobile debajo del header redondeado */
.nav-mobile {
  position: fixed !important;
  top: 82px !important;
  left: 14px !important;
  right: 14px !important;
  border-radius: 14px !important;
  background: rgba(13,31,60,0.97) !important;
  backdrop-filter: blur(24px) !important;
  border: 0.5px solid rgba(255,255,255,0.12) !important;
  padding: 14px !important;
  z-index: 9998 !important;
  display: none !important;
}
.nav-mobile.open { display: flex !important; flex-direction: column !important; gap: 4px !important; }
.nav-mobile-link {
  padding: 10px 14px !important;
  border-radius: 8px !important;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  font-size: 13px !important;
  transition: all 0.15s !important;
}
.nav-mobile-link:hover { background: rgba(255,255,255,0.08) !important; color: #FAFAF6 !important; }
.btn-reservar-mobile {
  display: block !important;
  text-align: center !important;
  margin-top: 8px !important;
  padding: 12px !important;
  background: #C4683D !important;
  color: #FAFAF6 !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
}

/* Hero padding para header flotante */
.hero { padding-top: 90px !important; min-height: 100vh; }

/* Mobile */
@media(max-width:768px){
  #header,div#header { top:8px !important; left:10px !important; right:10px !important; }
  #header .header-inner,div#header .header-inner { border-radius:12px !important; height:52px !important; padding:0 12px !important; }
  .nav-mobile { top:72px !important; left:10px !important; right:10px !important; }
}

/* ══ HEADER DEFINITIVO ═══════════════════════════════════════ */
#header {
  position: fixed !important;
  top: 12px !important;
  left: 14px !important;
  right: 14px !important;
  z-index: 9999 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}
#header .header-inner {
  background: rgba(13,31,60,0.88) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 0.5px solid rgba(255,255,255,0.14) !important;
  border-radius: 16px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 20px !important;
  gap: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  transition: all 0.3s !important;
}
#header.scrolled .header-inner {
  background: rgba(13,31,60,0.97) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35) !important;
}
.hero { padding-top: 88px !important; }
.hide-mobile { display: inline !important; }

@media(max-width:900px){
  .nav-desktop { display: none !important; }
  .hide-mobile { display: none !important; }
  #hamburger { display: flex !important; }
  #header { top: 8px !important; left: 10px !important; right: 10px !important; }
  #header .header-inner { border-radius: 13px !important; height: 54px !important; padding: 0 14px !important; }
  .hero { padding-top: 78px !important; }
}

/* ══ FIX header shadow lateral ═════════════════════════════ */
#header {
  overflow: visible !important;
}
#header .header-inner {
  /* Sombra solo abajo, no en laterales */
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.05) inset !important;
  /* Quitar cualquier sombra que se expanda */
  filter: none !important;
}
#header.scrolled .header-inner {
  box-shadow: 0 8px 32px rgba(0,0,0,0.32), 0 1px 0 rgba(255,255,255,0.04) inset !important;
}

/* ══ FIX lang dropdown z-index ══════════════════════════════ */
#langMenu {
  z-index: 99999 !important;
  pointer-events: all !important;
}

/* ══ FIX sombra lateral header ══════════════════════════════ */
#header {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
#header::before, #header::after { display: none !important; }

/* ══ FIX lang dropdown ═══════════════════════════════════════ */
#header .header-inner { overflow: visible !important; }
.lang-selector { position: relative; z-index: 99999; }
#langMenu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  z-index: 99999 !important;
  pointer-events: all !important;
}
