/* ═══════════════════════════════════════════════════════
   CALAFATE KAYAKS — style.css
   Paleta: teal #00b5b8 · azul #1e509a · amarillo #f5a623
   ═══════════════════════════════════════════════════════ */

:root {
  --teal:    #00b5b8;
  --teal-d:  #009a9d;
  --blue:    #1e509a;
  --blue-d:  #163d78;
  --yellow:  #f5a623;
  --yellow-d:#d98e10;
  --coral:   #e8604a;
  --dark:    #0d1e2e;
  --text:    #2a3a4a;
  --muted:   #607a8a;
  --light:   #f0f5f7;
  --white:   #ffffff;
  --font:    'Barlow', sans-serif;
  --font-c:  'Barlow Condensed', sans-serif;
}

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

/* topbar removed */

/* ── NAV ────────────────────────────────────────────── */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  max-width: 180px;
}
.nav-links {
  display: flex; gap: 20px; margin-left: auto; align-items: center;
}
.nav-links a {
  font-size: 12px; font-weight: 700; color: var(--blue);
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--teal); }
.btn-nav {
  background: var(--teal);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  padding: 8px 18px; border-radius: 3px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--teal-d); }
.nav-burger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--blue); display: block; transition: all 0.2s; }
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid #e8eef2;
}
.nav-mobile a {
  padding: 13px 24px; font-size: 13px; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.07em;
  border-bottom: 1px solid #f0f4f6;
}
.nav-mobile .btn-nav { margin: 12px 24px; border-radius: 3px; text-align: center; }
.nav-mobile.open { display: flex; }

/* ── HERO ────────────────────────────────────────────── */
.hero { position: relative; height: 480px; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-agua {
  background-color: #2a8a88;
  background-position: center 40%;
}
.slide-hielo {
  background-color: #3a6a9a;
  background-position: center 30%;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(5,15,30,0.6) 75%,
    rgba(5,15,30,0.85) 100%
  );
}
.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 32px 28px;
  display: flex; align-items: center; gap: 16px;
  z-index: 2;
}
.slide-logo {
  width: 66px; height: 66px; flex-shrink: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.85);
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.slide-logo img { width: 100%; height: 100%; object-fit: cover; }
.slide-text h2 {
  font-family: var(--font-c);
  font-size: 26px; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.slide-text h2 em { color: var(--teal); font-style: normal; }
.slide-text p {
  font-size: 13px; color: rgba(255,255,255,0.78);
  line-height: 1.55; margin-top: 4px; max-width: 500px;
}
.hero-arrows {
  position: absolute;
  right: 24px; bottom: 36px; z-index: 3;
  display: flex; gap: 8px;
}
.arrow-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.arrow-btn:hover { background: rgba(255,255,255,0.25); }
.hero-dots {
  position: absolute;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.35); cursor: pointer;
  padding: 0; transition: background 0.2s;
}
.dot.active { background: var(--teal); }

/* ── CTA BAR ─────────────────────────────────────────── */
.cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--teal);
  padding: 16px 32px;
  font-family: var(--font-c);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white);
  transition: background 0.15s;
}
.cta-bar:hover { background: var(--teal-d); }
.cta-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* ── MARQUESINA SEPARADORA ───────────────────────────── */
.marquee-sep {
  background: var(--dark);
  overflow: hidden; white-space: nowrap; padding: 10px 0;
}
.marquee-sep-track {
  display: inline-block;
  animation: marquee-sep 28s linear infinite;
  font-family: var(--font-c);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.55);
}
.marquee-sep-track span { margin-right: 28px; }
.marquee-sep-track .ms { color: var(--teal); margin-right: 28px; }
@keyframes marquee-sep {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CONTAINER / GENERALES ───────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-c);
  font-size: 32px; font-weight: 800;
  color: var(--blue); margin-bottom: 32px; line-height: 1.15;
}

/* ── EXCURSIONES ─────────────────────────────────────── */
.excursiones { padding: 56px 0 48px; background: var(--white); }
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.prod-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.card-photo {
  position: relative;
  height: 260px;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.card-photo-agua {
  background-color: #2a8a88;
  background-position: center 55%;
}
.card-photo-hielo {
  background-color: #3a6a9a;
  background-position: center 25%;
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.card-logo-wrap {
  position: absolute; bottom: 14px; left: 16px;
  width: 56px; height: 56px; border-radius: 50%;
  border: 2.5px solid var(--white);
  overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.card-logo { width: 100%; height: 100%; object-fit: cover; }
.card-photo-name {
  position: absolute; bottom: 20px; left: 82px;
  font-family: var(--font-c);
  font-size: 22px; font-weight: 700; color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.card-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 5px 12px;
  border-radius: 20px; color: var(--white); text-align: center;
}
.badge-verde  { background: #2a9a6a; }
.badge-coral  { background: var(--coral); }
.card-badge-nuevo {
  position: absolute; top: 14px; left: 14px;
  background: var(--yellow);
  color: var(--white); font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
/* Overlay gradiente en la foto */
.card-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}
.card-logo-wrap, .card-photo-name, .card-badge, .card-badge-nuevo { z-index: 1; }

.card-meta {
  display: flex; gap: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f5;
}
.meta-item { flex: 1; display: flex; align-items: flex-start; gap: 7px; }
.meta-ico { font-size: 15px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.meta-val {
  font-size: 11px; color: var(--muted); line-height: 1.45;
  display: flex; flex-direction: column;
}
.meta-val strong { font-size: 12px; color: var(--blue); font-weight: 700; }

.card-bottom {
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.card-precio { display: flex; flex-direction: column; }
.precio-label { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.precio-val { font-family: var(--font-c); font-size: 24px; font-weight: 700; color: var(--blue); }
.precio-val small { font-size: 12px; font-weight: 400; color: var(--muted); margin-left: 4px; }
.btn-comprar {
  background: var(--yellow);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  padding: 11px 22px; border-radius: 3px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.15s; border: none; cursor: pointer;
}
.btn-comprar:hover { background: var(--yellow-d); }

/* ── BANNERS ─────────────────────────────────────────── */
.banners {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; padding: 24px;
  background: var(--light);
}
.banner {
  border-radius: 8px; padding: 28px 24px;
  position: relative; overflow: hidden; min-height: 120px;
}
.banner-1 { background: linear-gradient(135deg, #1a5a8a 0%, var(--teal) 100%); }
.banner-2 { background: linear-gradient(135deg, var(--teal) 0%, #1a5a8a 100%); }
.banner-deco {
  position: absolute; right: -16px; top: -16px;
  width: 100px; height: 100px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
}
.banner-num {
  font-family: var(--font-c);
  font-size: 42px; font-weight: 800; color: var(--white); line-height: 1;
}
.banner-num-sub { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.8); }
.banner-text { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 6px; line-height: 1.45; }
.banner-heading {
  font-family: var(--font-c);
  font-size: 20px; font-weight: 800;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.06em; line-height: 1.2;
}
.banner-sub { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }
.banner-btn {
  display: inline-block; margin-top: 12px;
  background: var(--yellow);
  color: var(--white); font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.15s;
}
.banner-btn:hover { background: var(--yellow-d); }

/* ── GALERÍA ─────────────────────────────────────────── */
.galeria { padding: 56px 0 28px; background: var(--white); }
.galeria-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 4px;
}
.gal-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}
.gal-item:hover { transform: scale(1.02); }
.gal-1 {
  grid-row: 1 / 3;
  background-position: center 60%;
}
.gal-2 { background-position: center 40%; }
.gal-3 { background-position: center 50%; }
.gal-4 { background-position: center 30%; }
.gal-5 { background-position: center 55%; }

/* ── CÓMO RESERVAR ───────────────────────────────────── */
.como-reservar { padding: 56px 0 48px; background: var(--white); }
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 28px;
}
.step {
  background: var(--light); border-radius: 6px;
  padding: 22px 20px; border: 1px solid #e0eaee;
}
.step-num {
  font-family: var(--font-c);
  font-size: 38px; font-weight: 800;
  color: #dce8ee; line-height: 1; margin-bottom: 8px;
}
.step-title { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 5px; }
.step-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }
.medios-pago {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; padding: 16px 20px;
  background: var(--light); border-radius: 6px;
  border: 1px solid #e0eaee;
}
.medio-label { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; }
.medio {
  font-size: 11px; padding: 5px 12px;
  border-radius: 3px; border: 1px solid #c8dae0;
  color: var(--muted); background: var(--white);
}
.medio.mp { border-color: #009ee3; color: #007ac0; background: #e8f5fd; font-weight: 700; }

/* ── RESERVA SECTIONS ────────────────────────────────── */
.reserva-section { padding: 48px 0; background: var(--light); }
.reserva-section + .reserva-section { border-top: 1px solid #dce8ee; }
.reserva-hielo { background: #eaf0f8; }
.reserva-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 40px; align-items: start;
}
.reserva-logo {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; margin-bottom: 14px;
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.reserva-info h3 {
  font-family: var(--font-c);
  font-size: 26px; font-weight: 800; color: var(--blue); margin-bottom: 14px;
}
.reserva-incluye { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.reserva-incluye li { font-size: 13px; color: var(--text); line-height: 1.5; }
.reserva-precio {
  font-family: var(--font-c);
  font-size: 28px; font-weight: 800; color: var(--blue);
}
.mp-placeholder {
  background: var(--white); border-radius: 6px;
  padding: 32px 28px; text-align: center;
  border: 2px dashed #c8dae0;
}
.mp-placeholder p { font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.mp-placeholder .mp-sub { font-size: 12px; color: var(--muted); font-weight: 400; margin-bottom: 20px; }
.mp-placeholder-hielo { border-color: #a0b8d0; }
.btn-wa-reserva {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 12px 22px; border-radius: 4px;
  transition: background 0.15s;
}
.btn-wa-reserva:hover { background: #1db954; }

/* ── NOSOTROS ────────────────────────────────────────── */
.nosotros { padding: 56px 0; background: var(--dark); }
.nosotros .section-label { color: var(--teal); }
.nosotros .section-title { color: var(--white); margin-bottom: 18px; }
.nosotros-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: center;
}
.nosotros-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 14px; }
.cert-badges { display: flex; gap: 12px; margin-top: 20px; }
.cert {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px; padding: 10px 16px;
  font-family: var(--font-c);
  font-size: 16px; font-weight: 800; color: var(--teal);
  display: flex; flex-direction: column; gap: 2px;
}
.cert span { font-family: var(--font); font-size: 9px; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.nosotros-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nstat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 20px 16px;
  display: flex; flex-direction: column; gap: 5px;
}
.nstat-n { font-family: var(--font-c); font-size: 30px; font-weight: 800; color: var(--teal); }
.nstat-l { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: #071420; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; padding: 40px 24px 32px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand-name { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.7); }
.footer-brand-name strong { font-weight: 800; color: var(--teal); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.soc-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4);
  text-transform: uppercase; transition: border-color 0.15s, color 0.15s;
}
.soc-icon:hover { border-color: var(--teal); color: var(--teal); }
.footer-col-title {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.footer-links-col a, .footer-contact-col a {
  display: block; font-size: 12px;
  color: rgba(255,255,255,0.3); margin-bottom: 8px;
  transition: color 0.15s; letter-spacing: 0.03em;
}
.footer-links-col a:hover, .footer-contact-col a:hover { color: var(--teal); }
.footer-contact-col p { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.65; margin-bottom: 10px; }
.footer-wa { color: var(--teal) !important; font-weight: 700 !important; font-size: 13px !important; }
.footer-cancelar { margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 24px; text-align: center;
  font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em;
}

/* ── WA FAB ──────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.15s, box-shadow 0.15s;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .nav-logo-img { height: 48px; max-width: 130px; }
  .hero { height: 380px; }
  .slide-text h2 { font-size: 20px; }
  .slide-content { padding: 16px 16px 22px; }
  .slide-logo { width: 50px; height: 50px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card-photo { height: 220px; }
  .banners { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reserva-inner { grid-template-columns: 1fr; }
  .nosotros-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-bar { padding: 14px 20px; font-size: 14px; }
  .section-title { font-size: 26px; }
  .excursiones, .como-reservar, .nosotros { padding: 40px 0 36px; }
}
@media (max-width: 480px) {
  .slide-content { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-arrows { bottom: 18px; right: 12px; }
  .card-photo { height: 200px; }
}
