/* ===== MédanoDive – Immersive Marine Theme ===== */
:root {
  --deep: #0a1628;
  --deep-mid: #0d2137;
  --ocean: #1e5f74;
  --ocean-light: #2d8ba8;
  --ocean-glow: #3ec6e0;
  --foam: #e8f4f8;
  --white: #ffffff;
  --accent: #e07a5f;
  --accent-hover: #d4694f;
  --accent-glow: #f39a7f;
  --telegram: #229ed9;
  --telegram-dark: #1b86bb;
  --star: #fbbf24;

  --sky: #0f3d5c;
  --horizon: #134a6b;
  --surface: #1a5f7a;
  --light-penetration: rgba(62, 198, 224, 0.12);

  --font-head: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: min(92%, 1180px);
  --section-pad: clamp(4rem, 8vw, 6rem);
  --gap: 1.5rem;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.2);

  --slot-available: #3ddc97;
  --slot-available-strong: #2bbf80;
  --slot-available-bg: rgba(61, 220, 151, 0.12);
  --slot-available-bg-hover: rgba(61, 220, 151, 0.22);
  --slot-available-border: rgba(61, 220, 151, 0.42);
  --slot-occupied: #ef6262;
  --slot-occupied-bg: rgba(239, 98, 98, 0.12);
  --slot-occupied-border: rgba(239, 98, 98, 0.38);
  --slot-partial: #f0c14b;
  --slot-partial-bg: rgba(240, 193, 75, 0.2);
  --slot-partial-border: rgba(240, 193, 75, 0.45);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--foam);
  background: transparent;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Blurred background image fixed behind content */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  background: url('/assets/hero-hugo.webp') center/cover no-repeat;
  filter: blur(20px);
  transform: scale(1.08);
  opacity: 0.85;
  will-change: transform;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.65) 0%,
    rgba(10, 22, 40, 0.72) 30%,
    rgba(10, 22, 40, 0.8) 60%,
    rgba(6, 16, 24, 0.88) 100%);
  box-shadow: inset 0 0 100px 0 rgba(62, 198, 224, 0.05);
}

a { color: var(--ocean-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }

img { max-width: 100%; height: auto; display: block; }

main { position: relative; z-index: 1; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; color: var(--white); }

:focus-visible {
  outline: 2px solid var(--ocean-glow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 139, 168, 0.15);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.65rem var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo:hover { color: var(--ocean-glow); }

.logo--wordmark {
  text-decoration: none;
}
.logo-wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
}
.logo--wordmark:hover .logo-wordmark {
  color: var(--ocean-glow);
}

.logo-img {
  display: block;
  height: auto;
  object-fit: contain;
}
.logo-img--header {
  max-height: 40px;
  width: auto;
  max-width: 140px;
}
.logo-img--hero {
  max-width: min(420px, 88vw);
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.45));
}
.logo-img--footer {
  max-height: 52px;
  width: auto;
  max-width: 160px;
}
.hero-logo-wrap {
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.logo-icon { color: var(--ocean-glow); flex-shrink: 0; }

.nav { display: none; }

.nav a {
  color: var(--foam);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--white); background: rgba(45, 139, 168, 0.2); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.35);
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.22rem;
  border: 1px solid rgba(62, 198, 224, 0.28);
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(62, 198, 224, 0.05);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(232, 244, 248, 0.72);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  line-height: 1;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.lang-btn:hover {
  color: var(--white);
  background: rgba(62, 198, 224, 0.12);
}

.lang-btn.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--ocean-light), var(--ocean));
  box-shadow: 0 4px 14px rgba(45, 139, 168, 0.35);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--ocean-glow);
  outline-offset: 2px;
}

.lang-separator { display: none; }

@media (min-width: 960px) {
  .nav { display: flex; gap: 0.1rem; align-items: center; }
  .nav-toggle { display: none; }
  .lang-switch { margin-left: 0.4rem; }
}

.nav-toggle {
  background: none; border: none;
  padding: 0.5rem; cursor: pointer; color: var(--foam);
}
.nav-toggle-bar {
  display: block; width: 24px; height: 2px;
  background: currentColor; margin: 5px 0; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 959px) {
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 52px; left: 0; right: 0;
    background: rgba(13, 33, 55, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem; gap: 0.25rem;
    border-bottom: 1px solid rgba(45, 139, 168, 0.2);
    animation: slideDown 0.25s ease;
    max-height: calc(100vh - 52px);
    overflow-y: auto;
  }
  .nav.open a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .lang-switch { margin-left: auto; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute; inset: 0;
  z-index: 0;
  background: url('/assets/hero-hugo.webp') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.25) 0%,
    rgba(10, 22, 40, 0.35) 35%,
    rgba(10, 22, 40, 0.5) 70%,
    rgba(10, 22, 40, 0.65) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  max-width: 760px;
}

.hero-pre {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean-glow);
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(62, 198, 224, 0.1);
  border: 1px solid rgba(62, 198, 224, 0.25);
  border-radius: 999px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-pre-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ocean-glow);
  box-shadow: 0 0 10px var(--ocean-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 1;
  margin: 0 0 1.25rem;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-title--logo {
  font-size: 0;
  line-height: 0;
  text-shadow: none;
  display: flex;
  justify-content: center;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(232, 244, 248, 0.92);
  margin: 0 0 2.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-btns {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-trust {
  list-style: none; padding: 0;
  margin: 2.5rem 0 0;
  display: flex; gap: 0.5rem 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(232, 244, 248, 0.85);
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust li strong { color: var(--white); font-weight: 600; }
.hero-trust li:first-child span[aria-hidden] { color: var(--star); letter-spacing: 0.1em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(232, 244, 248, 0.6);
  animation: bounce 2s infinite;
}
.hero-scroll:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Bubbles */
.bubbles {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -20%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(62, 198, 224, 0.25), rgba(62, 198, 224, 0.05));
  border: 1px solid rgba(62, 198, 224, 0.15);
  animation: rise linear infinite;
  will-change: transform, opacity;
}

.bubble:nth-child(1)  { left: 5%;  width: 20px; height: 20px; animation-duration: 9s;  animation-delay: 0s;   }
.bubble:nth-child(2)  { left: 15%; width: 14px; height: 14px; animation-duration: 11s; animation-delay: 1s;   }
.bubble:nth-child(3)  { left: 28%; width: 24px; height: 24px; animation-duration: 8s;  animation-delay: 2.5s; }
.bubble:nth-child(4)  { left: 40%; width: 10px; height: 10px; animation-duration: 13s; animation-delay: 0.5s; }
.bubble:nth-child(5)  { left: 52%; width: 18px; height: 18px; animation-duration: 10s; animation-delay: 3s;   }
.bubble:nth-child(6)  { left: 65%; width: 28px; height: 28px; animation-duration: 7s;  animation-delay: 1.5s; }
.bubble:nth-child(7)  { left: 75%; width: 12px; height: 12px; animation-duration: 12s; animation-delay: 4s;   }
.bubble:nth-child(8)  { left: 85%; width: 22px; height: 22px; animation-duration: 9s;  animation-delay: 2s;   }
.bubble:nth-child(9)  { left: 92%; width: 16px; height: 16px; animation-duration: 14s; animation-delay: 0.8s; }
.bubble:nth-child(10) { left: 35%; width: 8px;  height: 8px;  animation-duration: 15s; animation-delay: 5s;   }
.bubble:nth-child(11) { left: 60%; width: 6px;  height: 6px;  animation-duration: 16s; animation-delay: 3.5s; }
.bubble:nth-child(12) { left: 48%; width: 30px; height: 30px; animation-duration: 10s; animation-delay: 6s;   }

@keyframes rise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120vh) scale(0.6); opacity: 0; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(224, 122, 95, 0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(224, 122, 95, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 1.05rem 2.4rem; font-size: 1.1rem; }

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

.btn-card {
  background: rgba(45, 139, 168, 0.25);
  color: var(--foam);
  border: 1px solid rgba(45, 139, 168, 0.45);
  width: 100%; text-align: center;
}
.btn-card:hover {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean-light);
  transform: translateY(-2px);
}

.btn-card--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.35);
}
.btn-card--primary:hover {
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 100%);
  color: var(--white);
  border-color: var(--accent-glow);
}

/* ===================== STATS ===================== */
.stats {
  background: linear-gradient(180deg,
    rgba(13, 45, 70, 0.6) 0%,
    rgba(15, 61, 92, 0.45) 50%,
    rgba(13, 45, 70, 0.6) 100%);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(62, 198, 224, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 0.5rem;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: -1rem; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(62, 198, 224, 0.25), transparent);
  display: none;
}

@media (min-width: 768px) {
  .stat + .stat::before { display: block; }
}

.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--ocean-glow);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(62, 198, 224, 0.3);
  font-variant-numeric: tabular-nums;
}

.stat span {
  font-size: 0.9rem;
  color: rgba(232, 244, 248, 0.75);
  letter-spacing: 0.02em;
}

/* ===================== HIGHLIGHTS ===================== */
.highlights {
  background: linear-gradient(180deg,
    rgba(19, 74, 107, 0.5) 0%,
    rgba(15, 61, 92, 0.35) 50%,
    rgba(13, 45, 70, 0.5) 100%);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(62, 198, 224, 0.08);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .highlights-grid { grid-template-columns: repeat(4, 1fr); }
}

.highlight {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 0.35rem; padding: 1rem 0.5rem;
  transition: transform 0.3s;
}
.highlight:hover { transform: translateY(-3px); }

.highlight-icon {
  color: var(--ocean-glow);
  margin-bottom: 0.25rem;
  transition: transform 0.3s;
}
.highlight:hover .highlight-icon { transform: scale(1.1) rotate(-5deg); }

.highlight strong {
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.05rem;
  color: var(--white);
}

.highlight span:last-child {
  font-size: 0.88rem;
  color: rgba(232, 244, 248, 0.7);
}

/* ===================== SECTIONS COMMON ===================== */
.section { padding: var(--section-pad) 0; position: relative; }

.section-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ocean-glow);
  margin: 0 0 0.75rem;
  display: inline-block;
  position: relative;
  padding-left: 2.5rem;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--ocean-glow);
}

.section-eyebrow--center {
  display: block;
  text-align: center;
  padding-left: 0;
}
.section-eyebrow--center::before { display: none; }

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  color: var(--white);
  margin: 0 0 0.5rem;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-title--left { text-align: left; }

.section-sub {
  text-align: center;
  color: rgba(232, 244, 248, 0.75);
  margin: 0 auto 3rem;
  font-size: 1.08rem;
  max-width: 560px;
}

/* ===================== SOBRE ===================== */
.section-sobre {
  background: linear-gradient(180deg,
    rgba(26, 95, 122, 0.25) 0%,
    rgba(19, 74, 107, 0.2) 25%,
    transparent 45%,
    rgba(13, 33, 55, 0.4) 85%,
    transparent 100%);
}

.sobre-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .sobre-layout { grid-template-columns: 1fr 1.15fr; gap: 3.5rem; }
}

.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.sobre-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.sobre-img-accent {
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 2px solid rgba(62, 198, 224, 0.25);
  pointer-events: none;
}

.sobre-img-badge {
  position: absolute;
  right: -12px; bottom: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
  font-family: var(--font-head);
  text-align: center;
  line-height: 1.1;
  transform: rotate(-4deg);
}
.sobre-img-badge span {
  display: block;
  font-weight: 800; font-size: 1.35rem;
  letter-spacing: 0.05em;
}
.sobre-img-badge small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-top: 0.15rem;
}

.sobre-text p {
  margin: 0 0 1rem;
  color: var(--foam);
  font-size: 1.05rem;
}

.sobre-lead {
  font-size: 1.2rem !important;
  line-height: 1.55;
}

.sobre-text .btn { margin-top: 0.75rem; }

/* ===================== SERVICIOS ===================== */
.section-servicios {
  background: linear-gradient(180deg,
    rgba(15, 61, 92, 0.5) 0%,
    rgba(19, 74, 107, 0.35) 20%,
    rgba(13, 45, 70, 0.5) 60%,
    rgba(10, 28, 45, 0.6) 100%);
  overflow: hidden;
}

.section-servicios-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 60% at 50% -30%, rgba(62, 198, 224, 0.18) 0%, transparent 50%),
              radial-gradient(ellipse 80% 50% at 80% 10%, rgba(45, 139, 168, 0.12) 0%, transparent 45%),
              radial-gradient(ellipse 70% 40% at 20% 90%, rgba(62, 198, 224, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) { .servicios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .servicios-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.card {
  background: linear-gradient(180deg,
    rgba(19, 74, 107, 0.35) 0%,
    rgba(10, 22, 40, 0.7) 100%);
  border: 1px solid rgba(62, 198, 224, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(62, 198, 224, 0.35);
  transform: translateY(-6px);
  background: linear-gradient(180deg,
    rgba(26, 95, 122, 0.4) 0%,
    rgba(10, 22, 40, 0.8) 100%);
}

.card--featured {
  border-color: rgba(224, 122, 95, 0.35);
  box-shadow: 0 0 0 1px rgba(224, 122, 95, 0.15), var(--shadow);
}
.card--featured:hover {
  border-color: rgba(224, 122, 95, 0.5);
  box-shadow: 0 0 0 1px rgba(224, 122, 95, 0.25), var(--shadow-hover);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ocean-glow);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(62, 198, 224, 0.3);
}

.card-badge--hot {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.4);
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 0.2rem;
}

.card-subtitle {
  font-size: 0.88rem;
  color: var(--ocean-light);
  margin: 0 0 0.75rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--foam);
  margin: 0 0 1rem;
  flex-grow: 1;
}

.card-meta {
  list-style: none; padding: 0;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(232, 244, 248, 0.8);
}
.card-meta li { padding: 0.15rem 0; }
.card-meta li::before { content: '· '; color: var(--ocean-glow); font-weight: 700; }

.card-price {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.4rem;
  color: var(--accent);
  margin: 0 0 1rem;
}
.card-price-note {
  font-weight: 500; font-size: 0.85rem;
  color: rgba(232, 244, 248, 0.75);
}

/* ===================== PROCESO ===================== */
.section-proceso {
  background: linear-gradient(180deg,
    rgba(10, 28, 45, 0.5) 0%,
    rgba(15, 61, 92, 0.35) 50%,
    rgba(10, 28, 45, 0.5) 100%);
}

.proceso-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}

@media (min-width: 640px) { .proceso-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .proceso-steps { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.step {
  background: linear-gradient(180deg,
    rgba(19, 74, 107, 0.35) 0%,
    rgba(10, 22, 40, 0.65) 100%);
  border: 1px solid rgba(62, 198, 224, 0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 198, 224, 0.4);
  box-shadow: var(--shadow);
}

.step-num {
  position: absolute;
  top: -20px; left: 1.25rem;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(224, 122, 95, 0.45);
}

.step h3 {
  margin: 0.75rem 0 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
}

.step p {
  margin: 0;
  color: rgba(232, 244, 248, 0.8);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===================== GALERÍA ===================== */
.section-galeria {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.section-galeria::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(13, 45, 70, 0.85) 0%,
    transparent 8%,
    transparent 92%,
    rgba(13, 45, 70, 0.85) 100%);
  z-index: 2; pointer-events: none;
}

.galeria-strip {
  display: flex;
  gap: 0;
  animation: scrollGallery 30s linear infinite;
  width: max-content;
}

.galeria-strip img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.85) saturate(1.1);
  transition: filter 0.3s;
}
.galeria-strip img:hover {
  filter: brightness(1) saturate(1.2);
}

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

/* ===================== TESTIMONIOS ===================== */
.section-testimonios {
  background: linear-gradient(180deg,
    rgba(19, 74, 107, 0.4) 0%,
    rgba(13, 45, 70, 0.5) 50%,
    rgba(10, 28, 45, 0.65) 100%);
  overflow: hidden;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .testimonios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonios-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.testimonio {
  background: linear-gradient(180deg,
    rgba(26, 95, 122, 0.3) 0%,
    rgba(10, 22, 40, 0.75) 100%);
  border: 1px solid rgba(62, 198, 224, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.testimonio::before {
  content: '“';
  position: absolute;
  top: 0.5rem; right: 1rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(62, 198, 224, 0.15);
  font-weight: 700;
  pointer-events: none;
}
.testimonio:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 198, 224, 0.35);
  box-shadow: var(--shadow);
}

.testimonio-stars {
  color: var(--star);
  letter-spacing: 0.15em;
  font-size: 1rem;
}

.testimonio blockquote {
  margin: 0;
  flex-grow: 1;
}
.testimonio blockquote p {
  margin: 0;
  color: var(--foam);
  font-size: 0.97rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(62, 198, 224, 0.12);
}

.testimonio-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-light), var(--ocean-glow));
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonio-author strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonio-author span {
  font-size: 0.82rem;
  color: rgba(232, 244, 248, 0.6);
}

/* ===================== REELS CAROUSEL ===================== */
.section-reels {
  background: linear-gradient(180deg,
    rgba(19, 74, 107, 0.45) 0%,
    rgba(13, 45, 70, 0.55) 40%,
    rgba(10, 28, 45, 0.7) 100%);
  overflow: hidden;
}

.reels-carousel {
  position: relative;
  margin: 0 -0.5rem;
}

.reels-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reels-track::-webkit-scrollbar { display: none; }

.reel-item {
  flex: 0 0 300px;
  height: 535px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(19, 74, 107, 0.4) 0%,
    rgba(10, 22, 40, 0.8) 100%);
  border: 1px solid rgba(62, 198, 224, 0.2);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.reel-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(62, 198, 224, 0.4);
}

.reel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.15) 0%,
    rgba(10, 22, 40, 0.3) 50%,
    rgba(10, 22, 40, 0.7) 100%
  );
  transition: background 0.3s;
}

.reel-item:hover .reel-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.25) 0%,
    rgba(10, 22, 40, 0.4) 50%,
    rgba(10, 22, 40, 0.75) 100%
  );
}

.reel-play { transition: transform 0.3s; }
.reel-item:hover .reel-play { transform: scale(1.12); }

.reel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s, border-color 0.3s;
}

.reel-item:hover .reel-label {
  background: rgba(62, 198, 224, 0.25);
  border-color: rgba(62, 198, 224, 0.4);
}

.reels-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(62, 198, 224, 0.3);
  border-radius: 50%;
  color: var(--foam);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.reels-arrow:hover {
  background: rgba(62, 198, 224, 0.25);
  color: var(--white);
  border-color: var(--ocean-glow);
  transform: translateY(-50%) scale(1.08);
}

.reels-arrow--left  { left: -0.25rem; }
.reels-arrow--right { right: -0.25rem; }

@media (min-width: 768px) {
  .reels-arrow--left  { left: -1rem; }
  .reels-arrow--right { right: -1rem; }
}

.reels-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.reels-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(232, 244, 248, 0.25);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.reels-dot.active {
  background: var(--ocean-glow);
  transform: scale(1.3);
}

.reels-follow {
  text-align: center;
  margin-top: 2rem;
}

.reels-follow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg,
    rgba(19, 74, 107, 0.45) 0%,
    rgba(10, 22, 40, 0.65) 100%);
  border: 1px solid rgba(62, 198, 224, 0.25);
  color: var(--foam);
  font-size: 0.98rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.reels-follow-link:hover {
  background: linear-gradient(135deg,
    rgba(62, 198, 224, 0.2) 0%,
    rgba(10, 22, 40, 0.8) 100%);
  border-color: var(--ocean-glow);
  color: var(--white);
  transform: translateY(-2px);
}

.reels-follow-link svg { color: var(--ocean-glow); flex-shrink: 0; }

@media (min-width: 1100px) {
  .reels-track { justify-content: center; }
}

/* ===================== FAQ ===================== */
.section-faq {
  background: linear-gradient(180deg,
    rgba(13, 45, 70, 0.5) 0%,
    rgba(10, 28, 45, 0.6) 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .faq-layout {
    grid-template-columns: 0.9fr 1.4fr;
    gap: 4rem;
  }
}

.faq-intro .section-title { margin-top: 0.35rem; }

.faq-help {
  margin: 1.25rem 0 0;
  color: rgba(232, 244, 248, 0.75);
  font-size: 0.98rem;
}
.faq-help a {
  color: var(--ocean-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.faq-help a:hover { color: var(--white); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: linear-gradient(180deg,
    rgba(19, 74, 107, 0.25) 0%,
    rgba(10, 22, 40, 0.6) 100%);
  border: 1px solid rgba(62, 198, 224, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.3s, background 0.3s;
}

.faq-item[open] {
  border-color: rgba(62, 198, 224, 0.4);
  background: linear-gradient(180deg,
    rgba(26, 95, 122, 0.35) 0%,
    rgba(10, 22, 40, 0.7) 100%);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--ocean-glow); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(62, 198, 224, 0.4);
  color: var(--ocean-glow);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s, background 0.3s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(62, 198, 224, 0.15);
}

.faq-body {
  padding: 0 1.3rem 1.3rem;
  animation: faqFade 0.3s ease;
}

.faq-body p {
  margin: 0;
  color: rgba(232, 244, 248, 0.85);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-body p + ul,
.faq-body ul + p {
  margin-top: 0.85rem;
}

.faq-body ul {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(232, 244, 248, 0.85);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-body li + li {
  margin-top: 0.55rem;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== RESERVAS ===================== */
.section-reservas {
  background: linear-gradient(180deg, rgba(10, 28, 45, 0.72) 0%, rgba(15, 61, 92, 0.5) 45%, rgba(13, 33, 55, 0.65) 100%);
  overflow: hidden;
}

.reservas-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 20%, rgba(62, 198, 224, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 10%, rgba(224, 122, 95, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 105%, rgba(45, 139, 168, 0.16), transparent 60%);
  pointer-events: none;
}

.reservas-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1040px) {
  .reservas-layout {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 3rem;
  }
}

.reservas-intro {
  position: sticky;
  top: 92px;
}

@media (max-width: 1039px) {
  .reservas-intro { position: static; }
}

.reservas-lead {
  color: rgba(232, 244, 248, 0.78);
  font-size: 1.08rem;
  margin: 0 0 1.25rem;
}

.reservas-note {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 198, 224, 0.18);
  background: rgba(10, 22, 40, 0.5);
  box-shadow: inset 0 0 0 1px rgba(62, 198, 224, 0.05);
}

.reservas-note strong {
  font-family: var(--font-head);
  color: var(--ocean-glow);
}

.reservas-note span {
  color: rgba(232, 244, 248, 0.75);
  font-size: 0.96rem;
}

.booking-form {
  background: linear-gradient(180deg, rgba(19, 74, 107, 0.42) 0%, rgba(10, 22, 40, 0.78) 100%);
  border: 1px solid rgba(62, 198, 224, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 3vw, 1.6rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-steps {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.booking-step {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(62, 198, 224, 0.25);
  background: rgba(15, 61, 92, 0.45);
  color: rgba(232, 244, 248, 0.72);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
}

.booking-step.active {
  color: var(--deep);
  background: var(--ocean-glow);
  box-shadow: 0 0 20px rgba(62, 198, 224, 0.28);
}

.booking-panel {
  border: 1px solid rgba(62, 198, 224, 0.14);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin: 0 0 1rem;
  background: rgba(10, 22, 40, 0.34);
}

.booking-panel legend {
  padding: 0 0.45rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
}

.booking-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 680px) {
  .booking-services { grid-template-columns: repeat(4, 1fr); }
}

.booking-service {
  display: block;
  cursor: pointer;
}

.booking-service input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-service__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  min-height: 112px;
  padding: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 198, 224, 0.28);
  overflow: hidden;
  background-color: rgba(15, 61, 92, 0.45);
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-service__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 16, 24, 0.15) 0%,
    rgba(6, 16, 24, 0.55) 45%,
    rgba(6, 16, 24, 0.88) 100%
  );
  pointer-events: none;
}

.booking-service--bautizo .booking-service__card {
  background-image: url('/assets/activity-bautizo.jpg');
}

.booking-service--open_water .booking-service__card {
  background-image: url('/assets/activity-open-water.jpg');
}

.booking-service--advanced .booking-service__card {
  background-image: url('/assets/activity-advanced.jpg');
}

.booking-service--guided_dives .booking-service__card {
  background-image: url('/assets/activity-guided.jpg');
}

.booking-service input:checked + .booking-service__card {
  border-color: rgba(224, 122, 95, 0.85);
  box-shadow: 0 10px 28px rgba(224, 122, 95, 0.22);
  transform: translateY(-2px);
}

.booking-service input:checked + .booking-service__card::before {
  background: linear-gradient(
    180deg,
    rgba(224, 122, 95, 0.12) 0%,
    rgba(6, 16, 24, 0.5) 50%,
    rgba(6, 16, 24, 0.9) 100%
  );
}

.booking-service strong,
.booking-service small {
  position: relative;
  z-index: 1;
}

.booking-service strong {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.booking-service small {
  color: rgba(232, 244, 248, 0.92);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

#gear-fields[hidden],
#gear-fields.gear-fields--hidden,
#dive-log-fields[hidden],
#dive-log-fields.gear-fields--hidden,
.participant-dive-log-fields[hidden],
.participant-dive-log-fields.gear-fields--hidden,
.participant-gear-fields[hidden],
.participant-gear-fields.gear-fields--hidden {
  display: none !important;
}

.booking-grid label[hidden] {
  display: none !important;
}

@media (min-width: 720px) {
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid--two { grid-template-columns: repeat(2, 1fr); }
  .booking-grid--three { grid-template-columns: repeat(3, 1fr); }
  .booking-field--wide { grid-column: 1 / -1; }
}

.booking-grid label,
.booking-field--wide {
  display: grid;
  gap: 0.35rem;
  color: rgba(232, 244, 248, 0.82);
  font-weight: 600;
}

.booking-grid input,
.booking-grid select,
.booking-field--wide textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 198, 224, 0.24);
  background: rgba(6, 16, 24, 0.5);
  color: var(--white);
  padding: 0.78rem 0.85rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-grid input:focus,
.booking-grid select:focus,
.booking-field--wide textarea:focus {
  outline: none;
  border-color: var(--ocean-glow);
  background: rgba(10, 28, 45, 0.72);
  box-shadow: 0 0 0 3px rgba(62, 198, 224, 0.16);
}

.boat-field { margin-top: 0.85rem; }

.booking-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(232, 244, 248, 0.82);
  font-weight: 600;
}

.booking-check input {
  margin-top: 0.35rem;
  accent-color: var(--accent);
}

.booking-datebar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-datebar .booking-field--people {
  display: grid;
  gap: 0.35rem;
  max-width: 220px;
  color: rgba(232, 244, 248, 0.82);
  font-weight: 600;
}

.booking-datebar .booking-field--people input {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 198, 224, 0.24);
  background: rgba(6, 16, 24, 0.5);
  color: var(--white);
  padding: 0.78rem 0.85rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-datebar .booking-field--people input:focus {
  outline: none;
  border-color: var(--ocean-glow);
  background: rgba(10, 28, 45, 0.72);
  box-shadow: 0 0 0 3px rgba(62, 198, 224, 0.16);
}

.booking-legend {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  color: rgba(232, 244, 248, 0.78);
  font-size: 0.88rem;
}

.booking-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.booking-legend__item::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.booking-legend__item--available::before {
  background: var(--slot-available);
  box-shadow: 0 0 0 4px var(--slot-available-bg);
}

.booking-legend__item--occupied::before {
  background: var(--slot-occupied);
  box-shadow: 0 0 0 4px var(--slot-occupied-bg);
}

.booking-legend__item--day-full::before {
  background: var(--slot-available-strong);
  box-shadow: 0 0 0 4px var(--slot-available-bg);
}

.booking-legend__item--day-partial::before {
  background: var(--slot-partial);
  box-shadow: 0 0 0 4px var(--slot-partial-bg);
}

.booking-legend__item--day-none::before {
  background: var(--slot-occupied);
  box-shadow: 0 0 0 4px var(--slot-occupied-bg);
}

.booking-calendar {
  border: 1px solid rgba(62, 198, 224, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(10, 22, 40, 0.5);
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px rgba(62, 198, 224, 0.05);
}

.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.booking-calendar__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.booking-calendar__nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(62, 198, 224, 0.32);
  background: rgba(15, 61, 92, 0.5);
  color: var(--foam);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.booking-calendar__nav:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.booking-calendar__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(232, 244, 248, 0.55);
  font-weight: 700;
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.booking-calendar__day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(62, 198, 224, 0.18);
  background: rgba(15, 61, 92, 0.34);
  color: var(--foam);
  border-radius: var(--radius);
  padding: 0.55rem 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.booking-calendar__day:hover:not(:disabled):not(.is-selected):not(.is-avail-none) {
  transform: translateY(-2px);
}

.booking-calendar__day:disabled,
.booking-calendar__day.is-outside {
  cursor: not-allowed;
  opacity: 0.35;
  background: rgba(10, 22, 40, 0.25);
  border-color: rgba(62, 198, 224, 0.08);
  box-shadow: none;
  transform: none;
}

/* Mismo aspecto que .slot-btn: fondo semitransparente + borde de color */
.booking-calendar__day.is-avail-full:not(.is-selected):not(:disabled) {
  background: var(--slot-available-bg);
  border-color: var(--slot-available-border);
  color: var(--white);
}

.booking-calendar__day.is-avail-partial:not(.is-selected):not(:disabled) {
  background: var(--slot-partial-bg);
  border-color: var(--slot-partial-border);
  color: var(--white);
}

.booking-calendar__day.is-avail-none:not(.is-selected):not(:disabled) {
  background: var(--slot-occupied-bg);
  border-color: var(--slot-occupied-border);
  color: rgba(255, 255, 255, 0.78);
}

.booking-calendar__day.is-avail-full:not(.is-selected):not(:disabled):hover {
  background: var(--slot-available-bg-hover);
  border-color: var(--slot-available);
  box-shadow: 0 14px 26px rgba(61, 220, 151, 0.18);
}

.booking-calendar__day.is-avail-partial:not(.is-selected):not(:disabled):hover {
  background: rgba(240, 193, 75, 0.32);
  border-color: var(--slot-partial);
  box-shadow: 0 14px 26px rgba(240, 193, 75, 0.18);
}

.booking-calendar__day.is-avail-none:not(.is-selected):not(:disabled):hover {
  transform: none;
  box-shadow: none;
  background: var(--slot-occupied-bg);
  border-color: var(--slot-occupied-border);
}

.booking-calendar__day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px rgba(62, 198, 224, 0.45);
  border-color: rgba(62, 198, 224, 0.65);
}

.booking-calendar__day.is-selected {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(224, 122, 95, 0.32);
}

.booking-slots {
  margin-top: 0.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  min-height: 0;
}

@media (min-width: 620px) {
  .booking-slots { grid-template-columns: repeat(3, 1fr); }
  .booking-slots--two { grid-template-columns: repeat(2, 1fr); }
}

.booking-slots > p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(232, 244, 248, 0.7);
  font-weight: 500;
}

.slot-btn {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--slot-available-border);
  background: var(--slot-available-bg);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.01em;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.slot-btn small {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--slot-available);
}

.slot-btn:hover {
  background: var(--slot-available-bg-hover);
  border-color: var(--slot-available);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(61, 220, 151, 0.18);
}

.slot-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(224, 122, 95, 0.32);
}

.slot-btn.active small {
  color: rgba(255, 255, 255, 0.88);
}

.slot-btn--occupied {
  cursor: not-allowed;
  background: var(--slot-occupied-bg);
  border-color: var(--slot-occupied-border);
  color: rgba(255, 255, 255, 0.78);
}

.slot-btn--occupied small {
  color: var(--slot-occupied);
}

.slot-btn--occupied:hover {
  transform: none;
  box-shadow: none;
  background: var(--slot-occupied-bg);
  border-color: var(--slot-occupied-border);
}

.booking-date-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.additional-participants {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0;
}

.participant-card {
  border: 1px solid rgba(62, 198, 224, 0.14);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(15, 61, 92, 0.25);
}

.participant-card h4 {
  margin: 0 0 0.75rem;
  color: var(--ocean-glow);
  font-family: var(--font-head);
}

.booking-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 122, 95, 0.25);
  background: rgba(224, 122, 95, 0.1);
  margin-bottom: 1rem;
}

@media (min-width: 620px) {
  .booking-summary { grid-template-columns: 1fr auto; align-items: center; }
}

.booking-summary span {
  display: block;
  color: rgba(232, 244, 248, 0.68);
  font-size: 0.86rem;
}

.booking-summary strong {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.08rem;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 620px) {
  .booking-actions { flex-direction: row; align-items: center; }
}

.booking-status {
  margin: 0;
  color: rgba(232, 244, 248, 0.78);
  font-weight: 600;
}

.booking-status.success { color: #8ff0c2; }
.booking-status.error { color: #ffb4a3; }

.booking-alert {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.booking-alert[hidden] {
  display: none !important;
}

.booking-alert--warn {
  color: #ffb4a3;
  background: rgba(239, 98, 98, 0.14);
  border: 1px solid rgba(255, 180, 163, 0.35);
  border-left: 3px solid #ffb4a3;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-modal[hidden] {
  display: none !important;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 24, 0.72);
  backdrop-filter: blur(4px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
  max-height: min(88vh, 720px);
  overflow: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 198, 224, 0.28);
  background: linear-gradient(180deg, rgba(15, 45, 70, 0.98), rgba(10, 28, 45, 0.98));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  padding: 1.35rem 1.35rem 1.1rem;
}

.booking-modal__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
}

.booking-modal__lead {
  margin: 0.45rem 0 1rem;
  color: rgba(232, 244, 248, 0.72);
  font-size: 0.92rem;
}

.booking-modal__body {
  display: grid;
  gap: 1rem;
}

.booking-confirm-section {
  border: 1px solid rgba(62, 198, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 22, 40, 0.45);
  padding: 0.85rem 0.95rem;
}

.booking-confirm-section h3 {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 244, 248, 0.55);
  font-weight: 700;
}

.booking-confirm-dl {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.booking-confirm-row {
  display: grid;
  grid-template-columns: minmax(7rem, 38%) 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.9rem;
}

.booking-confirm-row dt {
  margin: 0;
  color: rgba(232, 244, 248, 0.62);
  font-weight: 600;
}

.booking-confirm-row dd {
  margin: 0;
  color: var(--foam);
  font-weight: 600;
  word-break: break-word;
}

.booking-confirm-deposit {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(62, 198, 224, 0.22);
  font-size: 1rem;
  color: var(--white);
}

.booking-confirm-notes {
  margin: 0;
  color: var(--foam);
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.booking-modal__actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

@media (min-width: 520px) {
  .booking-modal__actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

/* ===================== CONTACTO ===================== */
.section-contacto {
  background: linear-gradient(180deg,
    rgba(15, 61, 92, 0.6) 0%,
    rgba(13, 45, 70, 0.5) 30%,
    rgba(10, 28, 45, 0.7) 100%);
  overflow: hidden;
}

.contacto-bg {
  position: absolute; inset: 0;
  background: url('/assets/hero-hugo.webp') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.section-contacto::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(62, 198, 224, 0.1) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.contacto-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative; z-index: 1;
}

@media (min-width: 768px) {
  .contacto-layout { grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
}

.contacto-info .section-title { margin-bottom: 1.5rem; }

.contacto-block {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contacto-block-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45, 139, 168, 0.15);
  border: 1px solid rgba(45, 139, 168, 0.3);
  border-radius: 12px;
  color: var(--ocean-glow);
}

.contacto-block h3 {
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.05rem;
  color: var(--ocean-light);
  margin: 0 0 0.35rem;
}

.contacto-block p { margin: 0; color: var(--foam); font-size: 0.97rem; }

.contacto-cta-box {
  background: linear-gradient(180deg,
    rgba(19, 74, 107, 0.4) 0%,
    rgba(10, 22, 40, 0.75) 100%);
  border: 1px solid rgba(62, 198, 224, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.contacto-cta-box::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 198, 224, 0.25), transparent 70%);
  pointer-events: none;
}

.contacto-cta-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--telegram);
  padding: 0.35rem 0.85rem;
  background: rgba(34, 158, 217, 0.12);
  border: 1px solid rgba(34, 158, 217, 0.3);
  border-radius: 999px;
  margin-bottom: 1rem;
  position: relative;
}

.contacto-cta-box h3 {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.7rem;
  color: var(--white);
  margin: 0 0 0.75rem;
  position: relative;
}

.contacto-cta-box p {
  color: rgba(232, 244, 248, 0.8);
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  position: relative;
}

.contacto-cta-small {
  font-size: 0.85rem !important;
  margin-top: 1rem !important;
  color: rgba(232, 244, 248, 0.55) !important;
}
.contacto-cta-small a { color: var(--ocean-light); }
.contacto-cta-small a:hover { color: var(--white); }

/* ===================== CHAT WIDGET ===================== */
.chat-float-label { display: none !important; }

.chat-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 91;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: none;
  border-radius: 999px;
  padding: 0.75rem;
  color: var(--white);
  font-family: var(--font-head);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  text-decoration: none;
}

.chat-float--assistant {
  background: linear-gradient(135deg, var(--ocean-light) 0%, var(--ocean) 100%);
  box-shadow: 0 10px 28px rgba(45, 139, 168, 0.5), 0 0 0 1px rgba(62, 198, 224, 0.25) inset;
  animation: floatIn 0.6s 1.7s both;
}

.chat-float--whatsapp {
  right: 5.5rem;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  animation: floatIn 0.6s 1.5s both;
}

.chat-float--whatsapp:hover {
  background: #20bd5a;
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
}

.chat-float:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, var(--ocean-glow) 0%, var(--ocean-light) 100%);
  box-shadow: 0 16px 36px rgba(62, 198, 224, 0.55), 0 0 0 1px rgba(62, 198, 224, 0.4) inset;
  color: var(--white);
}

.chat-float:focus-visible {
  outline: 2px solid var(--ocean-glow);
  outline-offset: 3px;
}

.chat-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.chat-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--ocean-light);
  animation: tgPulse 2.4s ease-out infinite;
  pointer-events: none;
}

.chat-float--hidden {
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  pointer-events: none;
}

@media (max-width: 480px) {
  .chat-float { padding: 0.7rem; }
  .chat-float--whatsapp { right: 4.75rem; }
  .chat-float-icon { width: 28px; height: 28px; }
}

.chat-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 95;
  width: min(94vw, 380px);
  height: min(75vh, 560px);
  max-height: calc(100dvh - 2.5rem);
  background: linear-gradient(180deg, rgba(13, 33, 55, 0.98) 0%, rgba(10, 22, 40, 0.98) 100%);
  border: 1px solid rgba(62, 198, 224, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(62, 198, 224, 0.08) inset;
  display: none;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.chat-panel.open {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(30, 95, 116, 0.65) 0%, rgba(13, 33, 55, 0.65) 100%);
  border-bottom: 1px solid rgba(62, 198, 224, 0.18);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-light), var(--ocean-glow));
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(62, 198, 224, 0.3);
}

.chat-header-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.chat-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--white);
  line-height: 1.1;
}

.chat-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(232, 244, 248, 0.7);
  margin-top: 0.1rem;
}

.chat-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.8);
}

.chat-close {
  background: rgba(255, 255, 255, 0.06);
  color: var(--foam);
  border: 1px solid rgba(232, 244, 248, 0.18);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.chat-close:hover {
  background: rgba(224, 122, 95, 0.18);
  border-color: rgba(224, 122, 95, 0.45);
  color: var(--white);
  transform: rotate(90deg);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(62, 198, 224, 0.08) 0%, transparent 70%),
    transparent;
  scrollbar-width: thin;
  scrollbar-color: rgba(62, 198, 224, 0.3) transparent;
}

.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(62, 198, 224, 0.25);
  border-radius: 999px;
}

.chat-msg {
  max-width: 86%;
  border-radius: 14px;
  padding: 0.6rem 0.85rem;
  font-size: 0.93rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  animation: chatPop 0.22s ease-out;
}

.chat-msg--bot {
  align-self: flex-start;
  background: linear-gradient(180deg, rgba(45, 139, 168, 0.22) 0%, rgba(30, 95, 116, 0.22) 100%);
  border: 1px solid rgba(62, 198, 224, 0.28);
  color: var(--foam);
  border-bottom-left-radius: 4px;
}

.chat-msg--bot a {
  color: var(--ocean-glow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.chat-msg--bot a:hover {
  color: var(--white);
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: -0.25rem;
  margin-bottom: 0.35rem;
}

.chat-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chat-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(224, 122, 95, 0.38);
  color: var(--white);
}

.chat-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.3);
}

.chat-msg--typing { padding: 0.55rem 0.85rem; }

.chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.chat-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ocean-glow);
  opacity: 0.5;
  animation: chatDot 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatDot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

@keyframes chatPop {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem 0.9rem;
  border-top: 1px solid rgba(62, 198, 224, 0.18);
  background: rgba(10, 22, 40, 0.55);
}

.chat-form input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(62, 198, 224, 0.28);
  background: rgba(15, 61, 92, 0.45);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.chat-form input::placeholder { color: rgba(232, 244, 248, 0.5); }

.chat-form input:focus {
  outline: none;
  border-color: var(--ocean-glow);
  background: rgba(15, 61, 92, 0.6);
  box-shadow: 0 0 0 3px rgba(62, 198, 224, 0.18);
}

.chat-send {
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(224, 122, 95, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, opacity 0.2s;
}

.chat-send:hover {
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(224, 122, 95, 0.5);
}

.chat-send:active { transform: translateY(0) scale(0.97); }

.chat-send:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.chat-send svg { transform: translateX(-1px); }

@media (min-width: 768px) {
  .chat-panel {
    right: 1.75rem;
    bottom: 1.75rem;
  }
  .chat-float { right: 1.75rem; bottom: 1.75rem; }
}

@keyframes tgPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px) scale(0.5); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===================== FOOTER ===================== */
.footer {
  background: linear-gradient(180deg,
    rgba(13, 45, 70, 0.7) 0%,
    rgba(10, 28, 45, 0.9) 60%,
    rgba(6, 16, 24, 0.95) 100%);
  padding: 3.5rem var(--gap) 2rem;
  border-top: 1px solid rgba(62, 198, 224, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-copy { grid-column: 1 / -1; }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ocean-glow);
  margin: 0 0 0.25rem;
}

.footer-col a {
  color: rgba(232, 244, 248, 0.75);
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.logo--footer {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.logo--footer svg { color: var(--ocean-glow); }
.logo--footer .logo-img { margin: 0; }

.footer-meta {
  font-size: 0.88rem;
  color: rgba(232, 244, 248, 0.6);
  margin: 0;
}

.footer-instagram {
  display: inline-flex; align-items: center;
  gap: 0.4rem;
}

.footer-langs {
  font-size: 0.82rem;
  color: rgba(232, 244, 248, 0.55);
  letter-spacing: 0.15em;
  font-weight: 500;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(232, 244, 248, 0.4);
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(62, 198, 224, 0.08);
  text-align: center;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-img { animation: none; transform: scale(1); }
  .galeria-strip { animation: none; }
  .chat-float-pulse { display: none; }
}

/* ===================== PRINT ===================== */
@media print {
  body::before, body::after,
  .header, .chat-float, .hero-scroll,
  .bubbles, .reels-carousel, .galeria-strip { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .section, .hero { page-break-inside: avoid; }
}
