/* ==========================================================================
   ROATÁN — THE BEST TOUR (Pichi)
   Sitio estático · Paleta derivada del logo
   ========================================================================== */

:root {
  /* Marca Pichi (derivada del logo) */
  --navy-900: #0d3a5c;
  --navy-700: #15527e;
  --navy-600: #1a6394;
  --aqua-500: #16a9c9;
  --aqua-400: #3fc1dd;
  --aqua-50:  #ecfbff;
  --gold-500: #f4a93c;
  --gold-600: #e29320;
  --gold-50:  #fff6e8;

  /* Neutros */
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #eef2f6;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #4b5a6b;
  --gray-700: #334155;
  --gray-900: #0f1d2b;

  --green-500: #25d366; /* WhatsApp */
  --green-600: #1da851;

  /* Gradientes */
  --grad-brand: linear-gradient(120deg, var(--navy-700), var(--aqua-500));
  --grad-brand-hover: linear-gradient(120deg, var(--navy-900), var(--aqua-400));
  --grad-soft: linear-gradient(160deg, var(--aqua-50), #ffffff 60%);
  --grad-card: linear-gradient(160deg, var(--navy-600), var(--aqua-500));

  /* Tipografía */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(13, 58, 92, 0.08);
  --shadow-md: 0 10px 30px rgba(13, 58, 92, 0.12);
  --shadow-lg: 0 24px 60px rgba(13, 58, 92, 0.18);

  --t-fast: 150ms ease;
  --t: 280ms ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--soft { background: var(--grad-soft); }
.section--navy { background: var(--navy-900); color: #dbe9f3; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-500);
  margin-bottom: 12px;
}
.section--navy .eyebrow { color: var(--gold-500); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-900);
}
.section--navy .section-head h2 { color: #fff; }
.section-head p { margin-top: 14px; font-size: 1.06rem; color: var(--gray-600); }
.section--navy .section-head p { color: #9fc0d8; }

/* Botones */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font);
  font-weight: 600; font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--brand { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-md); }
.btn--brand:hover { background: var(--grad-brand-hover); }
.btn--gold { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 22px rgba(244,169,60,.4); }
.btn--gold:hover { background: var(--gold-600); }
.btn--wa { background: var(--green-500); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.35); }
.btn--wa:hover { background: var(--green-600); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--outline { background: #fff; color: var(--navy-700); border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--aqua-500); color: var(--aqua-500); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--block { width: 100%; justify-content: center; }

.ico { width: 19px; height: 19px; flex: none; }

/* ===================== HEADER ===================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 50px; height: 50px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand__txt { line-height: 1.05; }
.brand__name { font-weight: 800; font-size: 1.05rem; color: var(--navy-900); letter-spacing: .01em; }
.brand__tag { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--aqua-500); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 500; font-size: .98rem; color: var(--gray-700); transition: color var(--t-fast); }
.nav a:hover { color: var(--aqua-500); }
.header__cta { display: flex; align-items: center; gap: 14px; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--navy-900); margin: 5px 0; transition: var(--t-fast); }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; text-align: center; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,58,92,.78), rgba(13,58,92,.55) 40%, rgba(22,169,201,.6));
}
.hero__inner { max-width: 860px; margin: 0 auto; padding: 90px 20px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35);
  padding: 7px 16px; border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 6vw, 4rem); font-weight: 800; line-height: 1.08; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero h1 span { color: var(--gold-500); }
.hero p { margin: 22px auto 32px; max-width: 620px; font-size: 1.18rem; color: #eaf4fb; }
.hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__trust { margin-top: 38px; display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; font-size: .9rem; color: #cfe3f0; }
.hero__trust b { color: #fff; font-size: 1.2rem; display: block; }

/* ===================== STATS / WHY ===================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: #fff; border-radius: var(--radius); padding: 34px 28px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: transform var(--t), box-shadow var(--t);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__ico { font-size: 2.4rem; margin-bottom: 14px; }
.feature h3 { font-size: 1.18rem; color: var(--navy-900); margin-bottom: 8px; }
.feature p { color: var(--gray-600); font-size: .98rem; }

/* ===================== TOURS GRID ===================== */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter {
  font-family: var(--font); font-weight: 600; font-size: .9rem;
  padding: 9px 18px; border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200); background: #fff; color: var(--gray-700); cursor: pointer;
  transition: var(--t-fast);
}
.filter:hover { border-color: var(--aqua-400); color: var(--aqua-500); }
.filter.is-active { background: var(--grad-brand); color: #fff; border-color: transparent; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 16/10; background: var(--grad-card); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__emoji { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; opacity: .9; }
.card__cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(13,58,92,.82); color: #fff; font-size: .72rem; font-weight: 600;
  padding: 5px 12px; border-radius: var(--radius-full); backdrop-filter: blur(4px);
}
.card__price {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: var(--gold-500); color: var(--navy-900); font-weight: 800; font-size: .95rem;
  padding: 6px 13px; border-radius: var(--radius-full); box-shadow: var(--shadow-sm);
}
.card__price small { font-weight: 600; font-size: .72rem; }
.card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.12rem; color: var(--navy-900); line-height: 1.25; margin-bottom: 8px; }
.card__body h3 a { transition: color var(--t-fast); }
.card__body h3 a:hover { color: var(--aqua-500); }
.card__body p { color: var(--gray-600); font-size: .92rem; flex: 1; margin-bottom: 16px; }
.card__btns { display: flex; flex-direction: column; gap: 10px; }
.card__more {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 600; font-size: .9rem; color: var(--navy-700);
  padding: 11px 18px; border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200); transition: var(--t-fast);
}
.card__more:hover { border-color: var(--aqua-500); color: var(--aqua-500); }

/* ===================== TOUR DETAIL PAGE ===================== */
.tour__hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.tour__hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.tour__hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(13,58,92,.25), rgba(13,58,92,.85)); }
.tour__hero-inner { padding: 0 20px 44px; }
.crumbs { font-size: .86rem; color: #cfe3f0; margin-bottom: 14px; }
.crumbs a { color: #fff; font-weight: 600; }
.crumbs a:hover { color: var(--gold-500); }
.crumbs span { margin: 0 6px; opacity: .6; }
.tour__cat {
  display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  font-size: .78rem; font-weight: 600; padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.tour__hero h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.tour__price { margin-top: 14px; display: inline-block; background: var(--gold-500); color: var(--navy-900); font-weight: 800; font-size: 1.1rem; padding: 8px 18px; border-radius: var(--radius-full); }

.tour__body { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding-top: 56px; padding-bottom: 84px; align-items: start; }
.tour__content { min-width: 0; }
.tour__lead { font-size: 1.18rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 14px; }
.tour__content h2 { font-size: 1.4rem; color: var(--navy-900); margin: 32px 0 12px; }
.tour__content p { color: var(--gray-600); line-height: 1.75; }
.tour__included { list-style: none; display: grid; gap: 11px; margin-top: 6px; }
.tour__included li { display: flex; align-items: flex-start; gap: 11px; color: var(--gray-700); }
.tour__included li::before { content: "✓"; color: var(--green-600); font-weight: 800; flex: none; margin-top: 1px; }

.tour__aside { position: sticky; top: 96px; }
.tour__card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-100); box-shadow: var(--shadow-md); padding: 26px; }
.tour__card-price { font-size: 1.8rem; font-weight: 800; color: var(--navy-900); margin-bottom: 14px; display: flex; flex-direction: column; }
.tour__card-price small { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--aqua-500); }
.tour__card p { color: var(--gray-600); font-size: .95rem; margin-bottom: 18px; }
.tour__back { display: block; text-align: center; margin-top: 16px; font-weight: 600; font-size: .92rem; color: var(--gray-600); }
.tour__back:hover { color: var(--aqua-500); }

/* ===================== TRANSFERS ===================== */
.transfers { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.transfer {
  background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); display: flex; flex-direction: column;
}
.transfer__media { display: block; margin: -30px -30px 22px; aspect-ratio: 16/9; overflow: hidden; background: var(--grad-card); }
.transfer__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.transfer:hover .transfer__media img { transform: scale(1.05); }
.transfer__top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.transfer__more { display: block; text-align: center; margin-top: 12px; font-weight: 600; font-size: .92rem; color: var(--navy-700); }
.transfer__more:hover { color: var(--aqua-500); }
.transfer h3 { font-size: 1.3rem; color: var(--navy-900); }
.transfer__price { color: var(--aqua-500); font-weight: 700; }
.transfer ul { list-style: none; margin: 0 0 22px; display: grid; gap: 9px; }
.transfer li { display: flex; align-items: center; gap: 9px; color: var(--gray-700); font-size: .96rem; }
.transfer li::before { content: "✓"; color: var(--green-600); font-weight: 800; }
.zones { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.zone { background: var(--aqua-50); color: var(--navy-700); font-size: .82rem; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-sm); }

/* ===================== OWNER ===================== */
.owner { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; }
.owner__media { position: relative; }
.owner__media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.owner__badge { position: absolute; right: -18px; bottom: -18px; background: var(--grad-brand); color: #fff; font-weight: 800; font-size: 1.5rem; line-height: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 116px; height: 116px; border-radius: var(--radius-full); box-shadow: var(--shadow-md); border: 4px solid #fff; }
.owner__badge small { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; opacity: .92; }
.owner__body h2 { font-size: 2.4rem; color: var(--navy-900); margin: 6px 0 18px; }
.owner__lead { font-size: 1.12rem; color: var(--gray-700); margin-bottom: 16px; }
.owner__lead strong { color: var(--navy-700); }
.owner__body p { color: var(--gray-600); margin-bottom: 18px; }
.owner__body .btn { margin-top: 6px; }
@media (max-width: 860px) {
  .owner { grid-template-columns: 1fr; gap: 48px; max-width: 460px; margin: 0 auto; }
  .owner__body { text-align: center; }
}

/* ===================== REVIEWS ===================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.review__stars { color: var(--gold-500); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: var(--gray-700); font-style: italic; margin-bottom: 18px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.review__name { font-weight: 700; color: var(--navy-900); font-size: .96rem; }
.review__loc { font-size: .82rem; color: var(--gray-400); }

/* ===================== CTA ===================== */
.cta { position: relative; text-align: center; color: #fff; overflow: hidden; border-radius: 0; }
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(13,58,92,.9), rgba(22,169,201,.82)); }
.cta__inner { max-width: 680px; margin: 0 auto; padding: 96px 20px; }
.cta h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.12; }
.cta p { margin: 18px auto 30px; font-size: 1.12rem; color: #eaf4fb; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy-900); color: #a9c6db; padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand img { width: 54px; height: 54px; border-radius: 50%; }
.footer__brand .brand__name { color: #fff; }
.footer p { font-size: .94rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: .94rem; transition: color var(--t-fast); }
.footer ul a:hover { color: var(--aqua-400); }
.footer__contact li { display: flex; align-items: center; gap: 10px; font-size: .94rem; margin-bottom: 10px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; text-align: center; font-size: .86rem; color: #7ba0bb; }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.5);
  transition: transform var(--t);
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 8px 26px rgba(37,211,102,.5); } 50% { box-shadow: 0 8px 26px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,0); } }

/* ===================== UTIL ===================== */
.is-hidden { display: none !important; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .features, .grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .tour__body { grid-template-columns: 1fr; gap: 32px; }
  .tour__aside { position: static; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
  .header.open .nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-md);
  }
  .header.open .nav a { padding: 16px 20px; border-top: 1px solid var(--gray-100); width: 100%; }
  .transfers, .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: 86vh; }
  .hero__trust { gap: 20px; }

  /* Tours: 2 por línea */
  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card__body { padding: 14px 14px 16px; }
  .card__body h3 { font-size: 1rem; }
  .card__body p { font-size: .82rem; margin-bottom: 12px; }
  .card__btns { gap: 8px; }
  .card__btns .btn--sm { padding: 9px 8px; font-size: .8rem; gap: 5px; }
  .card__more { padding: 9px 8px; font-size: .8rem; }
  .card__cat { font-size: .64rem; padding: 4px 9px; top: 9px; left: 9px; }
  .card__price { font-size: .85rem; padding: 5px 10px; }

  /* Reseñas y Why book: carrusel horizontal con scroll-snap */
  .reviews, .features {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px; padding: 4px 20px 12px;
    scrollbar-width: none;
  }
  .reviews::-webkit-scrollbar, .features::-webkit-scrollbar { display: none; }
  .review, .feature { scroll-snap-align: center; flex: 0 0 84%; }
}
