/* ─── RESET & BASE ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* ─── SECTION NAV (persistent top buttons) ─── */
.section-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(30, 59, 46, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
}

.section-nav-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.section-nav-btn.active {
  color: white;
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

/* ─── SPA TRANSITIONS ─── */
.spa-section {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.spa-visible {
  opacity: 1;
  transform: translateY(0);
}
.spa-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

/* ─── LINKTREE HERO (replaces old hero) ─── */
.linktree-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}
#linktree-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
.linktree-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 59, 46, 0.65) 0%, rgba(50, 100, 70, 0.60) 100%);
  z-index: -1;
  pointer-events: none;
}
.linktree-card {
  max-width: 400px;
  width: 100%;
  background: transparent;
  border-radius: 44px 44px 32px 32px;
  padding: 40px 28px 28px;
  text-align: center;
  position: relative;
}
.linktree-card::before {
  content: "🌿";
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 6rem;
  opacity: 0.12;
  transform: rotate(25deg);
  pointer-events: none;
}
.linktree-card::after {
  content: "🌱";
  position: absolute;
  bottom: -10px;
  left: -10px;
  font-size: 4.5rem;
  opacity: 0.12;
  transform: rotate(-15deg);
  pointer-events: none;
}
.linktree-card .profile { margin-bottom: 20px; }
.linktree-card .profile-avatar {
  width: 96px; height: 96px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(217, 227, 212, 0.85), rgba(184, 205, 176, 0.85));
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.4);
}
.linktree-card .profile h1 {
  font-size: 1.5rem; font-weight: 700; color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.linktree-card .profile p {
  font-size: 0.95rem; color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.linktree-card .profile p span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 2px 14px; border-radius: 40px;
  font-size: 0.75rem; color: white; font-weight: 600;
  margin-top: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.linktree-card .links-grid { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 20px; }
.linktree-card .link-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 60px;
  font-weight: 600; font-size: 1rem;
  color: #1e3b2e; text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  font-family: 'Quicksand', sans-serif;
}
.linktree-card .link-btn .icon { font-size: 1.6rem; }
.linktree-card .link-btn .arrow { margin-left: auto; font-size: 1.2rem; opacity: 0.35; }
.linktree-card .link-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.linktree-card .link-btn.whatsapp {
  background: rgba(37, 211, 102, 0.78);
  border-color: rgba(37, 211, 102, 0.4); color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.linktree-card .link-btn.whatsapp:hover { background: rgba(37, 211, 102, 0.92); }
.linktree-card .social-bar { display: flex; justify-content: center; gap: 24px; margin: 16px 0 10px; }
.linktree-card .social-bar a {
  font-size: 1.5rem; color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: color 0.2s, transform 0.2s;
}
.linktree-card .social-bar a:hover { color: white; transform: scale(1.1); }
.linktree-card .footer-text {
  font-size: 0.75rem; color: rgba(255, 255, 255, 0.65);
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.linktree-card .footer-text a { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.linktree-card .footer-text a:hover { text-decoration: underline; color: white; }

@media (max-width: 420px) {
  .section-nav { gap: 4px; padding: 8px 10px; }
  .section-nav-btn { padding: 6px 12px; font-size: 0.78rem; gap: 4px; }
  .linktree-card { padding: 28px 18px 24px; }
  .linktree-card .profile-avatar { width: 76px; height: 76px; font-size: 2.4rem; }
  .linktree-card .profile h1 { font-size: 1.3rem; }
  .linktree-card .link-btn { padding: 14px 16px; font-size: 0.9rem; }
  .linktree-card .link-btn .icon { font-size: 1.4rem; }
}

body {
  font-family: 'Quicksand', 'Segoe UI', system-ui, sans-serif;
  background: #f3efe8;
  color: #1e3b2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

@media (max-width: 640px) {
  section {
    padding: 48px 0;
  }
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  border-radius: 60px;
  padding: 14px 24px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  will-change: transform;
  isolation: isolate;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
@media (max-width: 640px) {
  .whatsapp-float {
    padding: 12px 18px;
    font-size: 0.9rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ====== LANG PILL ====== */
.lang-pill {
  position: fixed;
  top: 14px;
  right: 20px;
  z-index: 99999;
  display: flex;
  background: #1e3b2e;
  background: rgba(30, 59, 46, 0.95);
  border-radius: 30px;
  padding: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  gap: 2px;
  isolation: isolate;
  will-change: transform;
}
@supports (backdrop-filter: blur(8px)) {
  .lang-pill {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
.lang-pill-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Quicksand', sans-serif;
}
.lang-pill-btn.active {
  background: #25d366;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}
.lang-pill-btn:hover:not(.active) { color: white; }
@media (max-width: 640px) {
  .lang-pill { top: 58px; right: 14px; }
  .lang-pill-btn { font-size: 0.72rem; padding: 5px 10px; }
}

/* ====== LINKTREE LANDING ====== */
.linktree-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  background: linear-gradient(160deg, #f3efe8 0%, #e8ede2 100%);
}
.linktree-card {
  max-width: 400px;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(2px);
  border-radius: 44px 44px 32px 32px;
  padding: 40px 28px 28px;
  box-shadow: 0 20px 60px rgba(60, 80, 60, 0.12), 0 8px 24px rgba(60, 80, 60, 0.04);
  text-align: center;
  border: 1px solid rgba(180, 195, 170, 0.15);
  position: relative;
  overflow: hidden;
}
.linktree-card::before {
  content: "🌿";
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 6rem;
  opacity: 0.04;
  transform: rotate(25deg);
  pointer-events: none;
}
.linktree-card::after {
  content: "🌱";
  position: absolute;
  bottom: -10px;
  left: -10px;
  font-size: 4.5rem;
  opacity: 0.04;
  transform: rotate(-15deg);
  pointer-events: none;
}
.profile { margin-bottom: 20px; }
.profile-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d9e3d4, #b8cdb0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 6px 16px rgba(80, 110, 80, 0.15);
  border: 4px solid white;
  overflow: hidden;
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3b2e;
  letter-spacing: -0.3px;
}
.profile p {
  font-size: 0.95rem;
  color: #5a7565;
  font-weight: 400;
  margin-top: 2px;
  padding: 0 10px;
}
.profile p span {
  display: inline-block;
  background: #eef4eb;
  padding: 2px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  color: #3a5a48;
  font-weight: 600;
  margin-top: 6px;
}
.links-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 20px;
}
.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: white;
  border: 1.5px solid #e4ece0;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  color: #1e3b2e;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  font-family: 'Quicksand', sans-serif;
}
.link-btn .icon { font-size: 1.6rem; line-height: 1; }
.link-btn .arrow {
  margin-left: auto;
  font-size: 1.2rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.link-btn:hover {
  background: #f5faf4;
  border-color: #8aaa80;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 110, 70, 0.08);
}
.link-btn:hover .arrow { opacity: 0.8; }
.link-btn.whatsapp {
  background: #e5f2e5;
  border-color: #b3d0b3;
}
.link-btn.whatsapp:hover {
  background: #d4e8d4;
  border-color: #7aaa7a;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.12);
}
.social-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0 10px;
}
.social-bar a {
  font-size: 1.5rem;
  color: #5a7565;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.social-bar a:hover {
  color: #1e3b2e;
  transform: scale(1.1);
}
.footer-text {
  font-size: 0.75rem;
  color: #8fa396;
  margin-top: 16px;
  letter-spacing: 0.3px;
  border-top: 1px solid #ecf1ea;
  padding-top: 16px;
}
.footer-text a {
  color: #4a7a5a;
  text-decoration: none;
  font-weight: 600;
}
.footer-text a:hover { text-decoration: underline; }

@media (max-width: 420px) {
  .linktree-card { padding: 28px 18px 24px; border-radius: 32px; }
  .profile-avatar { width: 76px; height: 76px; font-size: 2.4rem; }
  .profile h1 { font-size: 1.3rem; }
  .link-btn { padding: 14px 16px; font-size: 0.9rem; }
  .link-btn .icon { font-size: 1.4rem; }
}
@media (max-width: 360px) {
  .linktree-card { padding: 20px 14px; }
  .link-btn { padding: 12px 12px; font-size: 0.85rem; gap: 8px; }
  .link-btn .icon { font-size: 1.2rem; }
}

/* ====== SECTION TITLES ====== */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #1e3b2e;
  letter-spacing: -0.3px;
}
.section-sub {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 44px;
  font-size: 1.1rem;
  color: #5a7565;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ====== VIDEO CONTAINER ====== */
.tour-video-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-height: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  user-select: none;
  -webkit-user-select: none;
}
.tour-video {
  width: 100%;
  height: 100%;
  max-height: 400px;
  min-height: 280px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  background: #0a2a20;
}
.tour-video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tour-video-container::after {
  content: "🎬 Amazonas Colombia";
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(30, 59, 46, 0.85);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

/* ====== CARD ====== */
.card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(60, 80, 60, 0.10); }
.card h3 { font-size: 1.3rem; margin-bottom: 8px; color: #1e3b2e; }
.card .price { font-weight: 700; color: #2a7a50; font-size: 1.2rem; margin: 8px 0; }
.card .badge { display: inline-block; background: #eef4eb; padding: 4px 14px; border-radius: 30px; font-size: 0.8rem; font-weight: 600; color: #1e3b2e; margin-bottom: 8px; }
.card ul { list-style: none; margin: 12px 0; }
.card ul li { padding: 4px 0 4px 24px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%232a7a50" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') left center no-repeat; background-size: 16px; }

.btn-card {
  display: inline-block;
  background: #1e3b2e;
  color: white;
  padding: 12px 30px;
  border-radius: 60px;
  font-weight: 600;
  margin: 10px 8px 0 0;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Quicksand', sans-serif;
}
.btn-card:hover { background: #2a6a4a; transform: translateY(-1px); }

/* ====== TOURS ====== */
.tours-section { background: #edf2ea; }

/* ====== FILTERS ====== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  background: white;
  border: 2px solid #e4ece0;
  border-radius: 24px;
  padding: 20px 28px;
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.06);
}
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-weight: 700; color: white; font-size: 0.95rem; background: #1e3b2e; padding: 6px 16px; border-radius: 30px; }
.filter-btn {
  background: white;
  border: 2px solid #c5d0bc;
  color: #5a7565;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Quicksand', sans-serif;
}
.filter-btn:hover {
  border-color: #2a6a4a;
  color: #2a6a4a;
  box-shadow: 0 4px 12px rgba(30, 59, 46, 0.08);
  transform: translateY(-1px);
}
.filter-btn.active {
  background: #1e3b2e;
  border-color: #1e3b2e;
  color: white;
  box-shadow: 0 4px 12px rgba(30, 59, 46, 0.18);
}
.filter-count { text-align: center; margin-bottom: 20px; color: #5a7565; font-size: 0.95rem; }

/* ====== ACCORDION ====== */
.tour-accordion { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tour-item {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.05);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.tour-item:hover { box-shadow: 0 8px 28px rgba(60, 80, 60, 0.08); transform: translateY(-2px); }
.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: #fbfaf7;
  transition: background 0.2s;
  gap: 12px;
  flex-wrap: wrap;
}
.tour-header:hover { background: #f0f6f0; }
.tour-header:focus-visible { outline: 2px solid #2a7a50; outline-offset: -2px; }
.tour-header-left { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.tour-header-left h2 { font-size: 1.05rem; font-weight: 700; color: #1e3b2e; line-height: 1.25; }
.tour-header-left .meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.85rem; color: #5a7565; }
.tour-header-left .meta strong { color: #1e3b2e; }
.tour-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tour-price { font-weight: 700; font-size: 1rem; color: #2a7a50; background: #eef4eb; padding: 4px 14px; border-radius: 40px; white-space: nowrap; }
.tour-toggle { font-size: 1.5rem; font-weight: 300; color: #1e3b2e; transition: transform 0.3s ease; line-height: 1; user-select: none; }
.tour-toggle.open { transform: rotate(180deg); }
.tour-image { width: 100%; max-height: 200px; overflow: hidden; }
.tour-image img { width: 100%; height: 100%; max-height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.tour-item:hover .tour-image img { transform: scale(1.03); }
.tour-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.35s ease; padding: 0 20px; background: white; }
.tour-body.open { max-height: 2800px; padding: 0 20px 20px; }
.tour-body-inner { border-top: 1px solid #edede6; padding-top: 18px; }
.tour-body-inner h3 { font-size: 1.05rem; font-weight: 700; color: #1e3b2e; margin: 18px 0 6px; }
.tour-body-inner h3:first-of-type { margin-top: 0; }
.tour-body-inner p { margin-bottom: 10px; line-height: 1.7; color: #3a5a48; font-size: 0.92rem; }
.tour-body-inner ul { list-style: none; padding-left: 0; }
.tour-body-inner ul li { padding: 4px 0 4px 24px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%232a7a50" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') left center no-repeat; background-size: 16px; font-size: 0.92rem; }
.tour-body-inner .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 10px 0; }
.tour-body-inner .highlight-box { background: #f6faf6; padding: 16px 20px; border-radius: 14px; border-left: 4px solid #1e3b2e; margin: 14px 0; color: #3a5a48; font-size: 0.92rem; }

/* ─── Tour price calculator ─── */
.tour-calc {
  background: #f6faf6;
  border: 1px solid #dce8d8;
  border-radius: 14px;
  padding: 14px 18px;
  margin: 14px 0;
}
.tour-calc-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.tour-calc-row:last-child { margin-bottom: 0; }
.tour-calc-label { font-size: 0.88rem; font-weight: 500; color: #3a5a48; }
.tour-calc-total-row { padding-top: 8px; border-top: 1px solid #dce8d8; }
.tour-calc-price { font-weight: 700; font-size: 1rem; color: #2a7a50; }
.tour-pax-stepper { display: inline-flex; align-items: center; border: 1.5px solid #c5d0bc; border-radius: 8px; overflow: hidden; height: 32px; }
.tour-pax-stepper .pax-btn { width: 32px; height: 32px; font-size: 1rem; background: white; border: none; cursor: pointer; color: #1e3b2e; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.tour-pax-stepper .pax-btn:hover { background: #dce8d8; }
.tour-pax-stepper .pax-value { min-width: 32px; text-align: center; font-weight: 700; font-size: 0.95rem; color: #1e3b2e; background: white; user-select: none; }
.tour-body-inner .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 12px 0; border-radius: 12px; border: 1px solid #e9e9e2; }
.tour-body-inner .table-wrap table { min-width: 360px; width: 100%; font-size: 0.85rem; }
.tour-body-inner .table-wrap table th, .tour-body-inner .table-wrap table td { padding: 8px 12px; white-space: nowrap; }

.origin-badge {
  display: inline-block;
  background: #f1c40f;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1e3b2e;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-tags-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 2px 0;
}

.tour-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tour-tag {
  display: inline-block;
  background: #e9f0ea;
  color: #2a6a4a;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid #cfe0d4;
  white-space: nowrap;
}

.tour-difficulty {
  display: inline-block;
  background: #fdf3e2;
  color: #b8860b;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid #ecd8b0;
  white-space: nowrap;
}

.btn-reserva {
  display: inline-block;
  background: #1e3b2e;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 60px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Quicksand', sans-serif;
}
.btn-reserva:hover { background: #2a6a4a; transform: scale(1.02); }
.btn-reserva.whatsapp { background: #25d366; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25); }
.btn-reserva.whatsapp:hover { background: #1ebe5c; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }

.btn-download-pdf {
  display: inline-block;
  background: #f3efe8;
  color: #1e3b2e;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 60px;
  text-decoration: none;
  margin-top: 12px;
  margin-left: 8px;
  border: 1.5px solid #1e3b2e;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'Quicksand', sans-serif;
}
.btn-download-pdf:hover { background: #1e3b2e; color: white; transform: scale(1.02); }

/* ====== PRICING TABLE ====== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; background: white; border-radius: 24px; box-shadow: 0 4px 16px rgba(60, 80, 60, 0.06); padding: 4px; }
.price-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 0.95rem; background: white; }
.price-table thead { background: #1e3b2e; color: white; }
.price-table thead th { padding: 16px 14px; text-align: left; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.3px; white-space: nowrap; }
.price-table tbody tr { border-bottom: 1px solid #edede6; transition: background 0.15s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #f3f8f3; }
.price-table tbody td { padding: 12px 14px; vertical-align: middle; }
.footnote { margin-top: 24px; padding: 20px 24px; background: #f6f9f6; border-radius: 16px; border-left: 4px solid #1e3b2e; font-size: 0.95rem; color: #3a5a48; }
.footnote strong { color: #1e3b2e; }
.footnote a { color: #2a6a4a; font-weight: 600; }
.footnote a:hover { text-decoration: underline; }

/* ====== HOTEL / ROOMS ====== */
.hotel-section { background: #edf2ea; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.room-card { background: white; border-radius: 24px; box-shadow: 0 4px 16px rgba(60, 80, 60, 0.05); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(60, 80, 60, 0.10); }
.room-image { width: 100%; height: 180px; position: relative; overflow: hidden; background: #1e3b2e; }
.room-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.room-card:hover .room-image img { transform: scale(1.05); }
.room-image .badge-top { position: absolute; top: 10px; right: 10px; background: #f1c40f; color: #1e3b2e; font-weight: 700; font-size: 0.65rem; padding: 3px 10px; border-radius: 30px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.room-body { padding: 18px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { font-size: 1.1rem; font-weight: 700; color: #1e3b2e; margin-bottom: 4px; }
.room-body .room-desc { font-size: 0.88rem; color: #5a7565; margin-bottom: 10px; }
.room-body .room-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.83rem; color: #3d5a4b; margin-bottom: 12px; }
.room-body .room-meta span { display: flex; align-items: center; gap: 4px; }
.room-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.room-price .amount { font-size: 1.6rem; font-weight: 700; color: #2a7a50; }
.room-price .period { font-size: 0.88rem; color: #5a7565; font-weight: 500; }
.quantity-selector { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; background: #f6f9f6; padding: 7px 12px; border-radius: 40px; border: 1px solid #dce8d8; align-self: flex-start; }
.quantity-selector .qty-label { font-weight: 600; color: #1e3b2e; font-size: 0.88rem; }
.quantity-selector .qty-btn { width: 28px; height: 28px; border-radius: 50%; border: none; background: #1e3b2e; color: white; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.quantity-selector .qty-btn:hover { background: #2a6a4a; }
.quantity-selector .qty-value { font-size: 1rem; font-weight: 700; color: #1e3b2e; min-width: 22px; text-align: center; }
.btn-reserve { display: inline-block; background: #25d366; color: white; font-weight: 600; padding: 11px 22px; border-radius: 60px; text-decoration: none; text-align: center; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; font-size: 0.95rem; margin-top: auto; width: 100%; font-family: 'Quicksand', sans-serif; }
.btn-reserve:hover { background: #1ebe5c; transform: scale(1.02); }

/* ====== BOATS — Premium Rainforest Redesign ====== */
.boats-section {
  background: linear-gradient(160deg, #eaf0e6 0%, #f3efe8 100%);
  position: relative;
}
/* ── Unified Card ── */
.boat-card-unified {
  background: white;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(30, 59, 46, 0.08);
  border: 1px solid rgba(220, 232, 216, 0.5);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.boat-card-unified-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 28px 32px 0;
  margin-bottom: 20px;
}
.boat-card-unified-header .form-icon {
  width: 44px;
  height: 44px;
  grid-row: 1 / -1;
  background: linear-gradient(135deg, #1e3b2e, #2a6a4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.boat-card-unified-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3b2e;
  margin-bottom: 2px;
}
.unified-subhead {
  font-size: 0.82rem;
  color: #7a9a88;
  font-weight: 500;
}
.unified-schedule-row {
  padding: 0 32px;
  margin-bottom: 16px;
}
.unified-meta-row {
  padding: 0 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.unified-form-section {
  padding: 0 32px 32px;
}
.unified-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.unified-form-grid .form-group { margin-bottom: 0; }
.unified-form-grid .form-group#boat-return-group,
.unified-form-grid .form-group#boat-passengers-group {
  grid-column: 1 / -1;
}
.unified-form-grid .boat-total-bar { grid-column: 1 / -1; }

/* ── Schedule elements inside unified card ── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.schedule-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(30, 59, 46, 0.06);
  border: 1px solid rgba(220, 232, 216, 0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.schedule-box:hover {
  box-shadow: 0 8px 32px rgba(30, 59, 46, 0.10);
  transform: translateY(-2px);
  border-color: rgba(42, 106, 74, 0.2);
}
.schedule-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1e3b2e;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Route number badge + title (visual route picker) */
.route-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.route-badge-green { background: #2a7a50; }
.route-badge-blue  { background: #2563eb; }
.route-title { line-height: 1.25; }

/* Highlight a schedule card when one of its time chips is active */
.schedule-box.active {
  background: #ffffff;
  border-color: #2a6a4a;
  box-shadow: 0 10px 32px rgba(42, 106, 74, 0.16);
}

/* Prompt + live summary around the route buttons */
.schedule-prompt {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1e3b2e;
  margin: 0 0 12px;
}
.schedule-summary {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #f0f7f1;
  border: 1px solid #d5e8d8;
  color: #1e3b2e;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
/* The route combo box is now hidden: route is chosen via the schedule buttons. */
.route-hidden-field { display: none !important; }
/* Interactive time chips */
.boat-time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.boat-time-chips .time-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4eb;
  border: 1.5px solid transparent;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.82rem;
  color: #1e3b2e;
  transition: all 0.25s ease;
  cursor: pointer;
  min-height: 38px;
  line-height: 1;
}
.boat-time-chips .time-chip:hover {
  background: #dcedd6;
  border-color: #2a6a4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 106, 74, 0.15);
}
.boat-time-chips .time-chip.active {
  background: #1e3b2e;
  border-color: #1e3b2e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 59, 46, 0.25);
}
.boat-time-chips .time-chip .icon-clock {
  font-size: 0.75rem;
  margin-right: 5px;
  opacity: 0.6;
}
/* Notice banner */
.boat-notice {
  background: linear-gradient(135deg, #fef9e7, #fdf2d5);
  border: 1px solid #ead9a8;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #7a6320;
  box-shadow: 0 2px 8px rgba(234, 217, 168, 0.2);
}
.boat-notice .notice-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.boat-prep-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e3b2e;
  background: #ffffff;
  border: 1px solid rgba(30, 59, 46, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30, 59, 46, 0.06);
}
.boat-prep-link:hover {
  background: #f3f8f1;
  border-color: #1e3b2e;
}

/* ── Form inputs inside unified card ── */
.boat-card-unified #boatBookingForm .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e3b2e;
  font-size: 0.88rem;
}

/* ── Form field refinements ── */
#boatBookingForm .form-group { margin-bottom: 16px; }
#boatBookingForm label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e3b2e;
  font-size: 0.88rem;
}
#boatBookingForm select,
#boatBookingForm input[type="date"],
#boatBookingForm input[type="number"],
#boatBookingForm input[type="tel"],
#boatBookingForm input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0dfd8;
  border-radius: 12px;
  font-size: 0.92rem;
  background: #fcfcfa;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  font-family: 'Quicksand', sans-serif;
  -webkit-appearance: none;
  appearance: none;
}
#boatBookingForm select:focus,
#boatBookingForm input:focus {
  outline: none;
  border-color: #2a6a4a;
  box-shadow: 0 0 0 3px rgba(42, 106, 74, 0.10);
  background: white;
}
#boatBookingForm select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231e3b2e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ── Passenger sub-fields ── */
.boat-passenger-fields {
  border: 1px solid #dce8d8;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  background: #fafcfa;
}
.boat-passenger-fields .passenger-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e3b2e;
  margin-bottom: 8px;
  display: block;
}
.boat-passenger-fields input { margin-bottom: 6px; }
.boat-passenger-fields input:last-child { margin-bottom: 0; }
.boat-name-input { margin-bottom: 6px; }

/* ── Pax stepper ── */
.pax-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #f6f9f6;
  border: 1.5px solid #e0dfd8;
  border-radius: 12px;
  overflow: hidden;
}
.pax-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #1e3b2e;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  line-height: 1;
}
.pax-btn:hover { background: #dce8d8; }
.pax-btn:active { background: #c5d8c0; }
.pax-btn:focus-visible { outline: 2px solid #2a6a4a; outline-offset: -2px; }
.pax-value {
  min-width: 48px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3b2e;
  padding: 0 8px;
  user-select: none;
}


/* ── Room booking modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(30, 59, 46, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(30, 59, 46, 0.25);
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #eef4eb;
  color: #1e3b2e;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.modal-close:hover { background: #dce8d8; }
.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid #eef4eb;
}
.modal-header-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e3b2e, #2a6a4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3b2e;
  margin-bottom: 2px;
}
.modal-room-name {
  font-size: 0.88rem;
  color: #2a7a50;
  font-weight: 600;
}
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 18px;
}
.modal-qty {
  display: inline-block;
  background: #eef4eb;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  color: #1e3b2e;
  font-size: 1rem;
}
.modal-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1e3b2e, #296a4a);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(30, 59, 46, 0.12);
}
.modal-total-label { opacity: 0.85; font-weight: 600; font-size: 0.9rem; }
.modal-total-amount { font-size: 1.2rem; }
.modal-guests-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-price-indicator {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2a7a50;
  background: #eef4eb;
  padding: 4px 12px;
  border-radius: 30px;
  white-space: nowrap;
}

/* ── Booking policy notice pop-up ── */
.notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 25000;
  background: rgba(15, 28, 22, 0.72);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.notice-modal {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 28px 26px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(15, 28, 22, 0.35);
  position: relative;
  animation: noticeIn 0.28s ease;
}
@keyframes noticeIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.notice-modal h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e3b2e;
  margin: 0 0 14px;
  line-height: 1.25;
}
.notice-modal h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e3b2e;
  margin: 18px 0 8px;
}
.notice-modal p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #3a5a48;
  margin: 0;
}
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notice-list li {
  background: #f3f8f3;
  border: 1px solid #dce8d8;
  border-left: 4px solid #2a6a4a;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.94rem;
  color: #1e3b2e;
  line-height: 1.45;
}
.notice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #eef4eb;
  color: #1e3b2e;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.notice-close:hover { background: #dce8d8; }
.notice-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #25d366, #1ebe5c);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 24px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  margin-top: 20px;
  font-family: 'Quicksand', sans-serif;
  transition: transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.notice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ── Hotel rooms layout ── */
.hotel-layout {
  display: block;
  width: 100%;
}
/* Default (desktop): 2-column grid of vertical room cards — distributes space
   better than full-width rows and gives the imagery more presence. */
.hotel-rooms-col .rooms-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.hotel-rooms-col .room-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}
.hotel-rooms-col .room-image {
  height: 220px;
  min-height: 0;
}
.hotel-rooms-col .room-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hotel-rooms-col .room-price .amount {
  font-size: 1.4rem;
}
/* Keep the reserve button and qty control anchored to the bottom of the card
   regardless of description length. */
.hotel-rooms-col .quantity-selector {
  margin-top: auto;
}
.hotel-rooms-col .btn-reserve {
  font-size: 0.9rem;
  padding: 12px 18px;
}
/* ── Total bar ── */
.boat-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1e3b2e 0%, #296a4a 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(30, 59, 46, 0.12);
}
.boat-total-bar span:first-child { opacity: 0.85; font-weight: 600; }
.boat-total-bar span:last-child { font-size: 1.2rem; }

/* ── Submit button ── */
.boat-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #25d366, #1ebe5c);
  color: white;
  font-weight: 700;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  font-family: 'Quicksand', sans-serif;
}
.boat-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #1ebe5c, #19a84f);
}
.boat-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.boat-submit-btn .btn-icon { font-size: 1.2rem; }

/* ====== BOOKING FORM ====== */
.form-card { background: white; border-radius: 28px; padding: 44px; box-shadow: 0 8px 32px rgba(60, 80, 60, 0.06); max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: #1e3b2e; font-size: 0.92rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0dfd8;
  border-radius: 14px;
  font-size: 0.95rem;
  background: #fcfcfa;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Quicksand', sans-serif;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #2a6a4a;
  box-shadow: 0 0 0 3px rgba(42, 106, 74, 0.1);
}

.booking-status { display: none; margin-top: 14px; padding: 12px 16px; border-radius: 12px; font-size: 0.92rem; line-height: 1.4; }
.booking-status.success { display: block; background: #e6f4ea; color: #1e6b3c; border: 1px solid #bfe3c8; }
.booking-status.error { display: block; background: #fdeaea; color: #a33; border: 1px solid #f2c2c2; }
.booking-status.info { display: block; background: #eef4fb; color: #1d4e89; border: 1px solid #c5d9f2; }
.form-group textarea { min-height: 80px; resize: vertical; }
.btn-submit {
  background: #1e3b2e;
  color: white;
  font-weight: 700;
  padding: 15px 40px;
  border: none;
  border-radius: 60px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  font-family: 'Quicksand', sans-serif;
}
.btn-submit:hover { background: #2a6a4a; transform: translateY(-1px); }

/* ====== CONTACT / FOOTER ====== */
.contact-info { background: #1e3b2e; color: #e8ede6; padding: 48px 0; text-align: center; }
.contact-info a { color: #b8d4b0; font-weight: 500; }
.contact-info .socials { margin-top: 14px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.footer-copy { background: #0f241c; color: #9ab8a3; text-align: center; padding: 24px 0; font-size: 0.88rem; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .tour-accordion { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .tour-accordion { grid-template-columns: 1fr; }
  /* Tablet: return to single-column rows so each room card stays readable;
     keep the image+body side-by-side form for efficient use of width. */
  .hotel-rooms-col .rooms-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hotel-rooms-col .room-card {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .hotel-rooms-col .room-image {
    height: 100%;
    min-height: 180px;
  }
  .unified-form-grid { grid-template-columns: 1fr; }
  .boat-card-unified-header { padding: 24px 24px 0; }
  .unified-schedule-row { padding: 0 24px; }
  .unified-meta-row { padding: 0 24px; }
  .unified-form-section { padding: 0 24px 24px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-box { padding: 16px; }
  .boat-time-chips { gap: 6px; }
  .boat-time-chips .time-chip { padding: 6px 12px; font-size: 0.78rem; min-height: 34px; }
  .tour-video-container { max-height: 280px; }
  .tour-video { max-height: 280px; }
}

@media (max-width: 700px) {
  /* Mobile: stack each room card (image on top), and let the controls breathe. */
  .hotel-rooms-col .rooms-grid { grid-template-columns: 1fr; gap: 18px; }
  .hotel-rooms-col .room-card { display: flex; flex-direction: column; }
  .hotel-rooms-col .room-image { height: 200px; min-height: 0; }
  .hotel-rooms-col .room-body { padding: 16px 18px 20px; }
  .tour-accordion { gap: 14px; }
  .tour-item { border-radius: 20px; }
  .tour-header { padding: 14px 16px; }
  .tour-header-left h2 { font-size: 0.92rem; }
  .tour-header-left .meta { font-size: 0.78rem; gap: 4px 8px; }
  .tour-price { font-size: 0.88rem; padding: 3px 10px; }
  .tour-toggle { font-size: 1.3rem; }
  .tour-image { max-height: 150px; }
  .tour-image img { max-height: 150px; }
  .tour-body.open { padding: 0 14px 16px; }
  .tour-body-inner { padding-top: 14px; }
  .tour-body-inner p { font-size: 0.88rem; }
  .tour-body-inner h3 { font-size: 0.95rem; margin: 14px 0 5px; }
  .tour-body-inner ul li { font-size: 0.88rem; }
  .btn-reserva { padding: 10px 20px; font-size: 0.88rem; display: block; text-align: center; }
  .filter-bar { flex-direction: column; align-items: stretch; padding: 16px; gap: 12px; }
  .filter-group { flex-wrap: wrap; justify-content: center; }
  .filter-btn { padding: 8px 14px; font-size: 0.8rem; }
  .filter-label { font-size: 0.83rem; padding: 5px 12px; }
  .price-table { min-width: 560px; font-size: 0.75rem; }
  .price-table thead th { padding: 8px 6px; font-size: 0.7rem; }
  .price-table tbody td { padding: 8px 6px; }
  .boat-submit-btn { padding: 14px 20px; font-size: 0.95rem; }
  .pax-btn { width: 40px; height: 40px; font-size: 1.1rem; }
  .pax-value { min-width: 40px; font-size: 1.05rem; }
  .boat-total-bar { padding: 12px 16px; font-size: 0.92rem; }
  .boat-total-bar span:last-child { font-size: 1.05rem; }
  .boat-card-unified-header { padding: 20px 20px 0; }
  .boat-card-unified-header h3 { font-size: 1rem; }
  .unified-subhead { font-size: 0.78rem; }
  .unified-schedule-row { padding: 0 20px; }
  .unified-meta-row { padding: 0 20px; }
  .unified-form-section { padding: 0 20px 20px; }
  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 0.95rem; margin-bottom: 28px; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .form-card { padding: 24px; }
  .form-group input, .form-group textarea { font-size: 0.88rem; padding: 11px 14px; }
  .tour-video-container { max-height: 200px; }
  .tour-video { max-height: 200px; min-height: 200px; }
  .rooms-grid { grid-template-columns: 1fr; gap: 18px; }
  .room-image { height: 150px; }
  .room-price .amount { font-size: 1.4rem; }
  .quantity-selector { align-self: stretch; justify-content: space-between; }
  .btn-reserve { padding: 12px; }
}

@media (max-width: 400px) {
  .tour-header { flex-direction: column; align-items: stretch; }
  .tour-header-right { justify-content: space-between; width: 100%; margin-top: 4px; }
  .tour-price { font-size: 0.82rem; }
  .tour-image { max-height: 120px; }
  .tour-image img { max-height: 120px; }
  .filter-btn { padding: 6px 10px; font-size: 0.72rem; }
  .section-title { font-size: 1.4rem; }
  .whatsapp-float { padding: 10px 14px; font-size: 0.82rem; bottom: 16px; right: 16px; }
}

/* ─── Booking modal (reserva de tours) — mismo patrón que el modal de hotel ─── */
.booking-card {
  max-width: 560px;
}
.booking-card .modal-body {
  gap: 14px 16px;
}
.booking-card textarea {
  width: 100%;
  min-height: 90px;
  resize: vertical;
}
.booking-card .booking-status {
  margin: 4px 0 14px;
}
#bookingModal .boat-submit-btn {
  width: 100%;
}

/* ─── UI audit fixes (responsive) ─── */
@media (max-width: 640px) {
  /* La barra de navegación no debe envolverse en varias filas ni solaparse
     con el selector de idioma: pasa a scroll horizontal de una sola fila. */
  .section-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .section-nav::-webkit-scrollbar { display: none; }
  .section-nav-btn { flex-shrink: 0; }
}

@media (max-width: 420px) {
  /* Modales: más aire y una sola columna en pantallas muy estrechas para
     que fecha/hora/teléfono no queden aplastados. */
  .modal-overlay { padding: 12px; }
  .modal-card { padding: 24px 16px 20px; border-radius: 20px; }
  .modal-body { grid-template-columns: 1fr; gap: 12px; }
  .modal-card h3 { font-size: 1rem; }
  .modal-header { gap: 10px; margin-bottom: 16px; }
  .modal-header-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .modal-close { top: 10px; right: 10px; width: 30px; height: 30px; }
}
