/* =========================================================
   Vámonos Ya de Viaje — hoja de estilos principal
   ========================================================= */

:root {
  --ink: #0b2431;
  --ink-soft: #16394a;
  --teal: #0e6d7c;
  --teal-light: #17b6a7;
  --sand: #fff7ee;
  --paper: #ffffff;
  --orange: #ff6b35;
  --orange-dark: #e2551f;
  --gold: #ffd166;
  --gray-600: #5b6b73;
  --gray-300: #dfe6e8;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 45px -20px rgba(11, 36, 49, 0.35);
  --shadow-sm: 0 8px 20px -12px rgba(11, 36, 49, 0.3);
  --container: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: "Georgia", "Segoe UI", serif; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--orange); color: #fff;
  padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-dark-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-dark-outline:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 36, 49, .92);
  backdrop-filter: saturate(160%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 1.15rem; letter-spacing: .2px; }
.brand-mark { flex-shrink: 0; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { color: rgba(255,255,255,.82); font-weight: 500; font-size: .96rem; padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: #fff; border-color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; font-weight: 700; font-size: .92rem;
  padding: 10px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: background .15s ease, transform .15s ease;
}
.phone-pill:hover { background: var(--orange-dark); transform: translateY(-1px); }
.phone-pill-footer { background: rgba(255,255,255,.12); }
.phone-pill-footer:hover { background: var(--orange); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(180deg, rgba(6,20,28,.78), rgba(6,20,28,.55) 45%, rgba(6,20,28,.9)),
              var(--hero-image) center/cover no-repeat, var(--ink);
  padding: 110px 0 90px;
}
.hero-inner { max-width: 640px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 2px;
  font-size: .78rem; font-weight: 700; color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 18px; }
.hero p.lead { font-size: 1.08rem; color: rgba(255,255,255,.85); max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Sección genérica ---------- */
.section { padding: 30px 0 80px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .eyebrow { color: var(--orange); }
.section-head .eyebrow::before { background: var(--orange); }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--ink); }
.section-head p { color: var(--gray-600); }

/* ---------- Filtro / buscador ---------- */
.search-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  background: var(--paper); border: 1px solid var(--gray-300); border-radius: 999px;
  padding: 10px; box-shadow: var(--shadow-sm); max-width: 820px; margin: 0 auto 26px;
}
.search-bar .field { flex: 1 1 160px; display: flex; align-items: center; gap: 8px; padding: 8px 14px; }
.search-bar select, .search-bar input {
  border: none; background: transparent; font-size: .92rem; width: 100%; color: var(--ink); outline: none;
}
.filter-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-pills button {
  border: 1px solid var(--gray-300); background: #fff; padding: 9px 20px; border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: var(--gray-600); cursor: pointer; transition: all .15s ease;
}
.filter-pills button.active, .filter-pills button:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---------- Tarjetas de destino ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.dest-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dest-card .thumb { position: relative; height: 170px; }
.dest-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.dest-card .tag {
  position: absolute; top: 12px; left: 12px; background: rgba(11,36,49,.75); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .3px;
}
.dest-card .body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dest-card .loc { font-size: .78rem; color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
.dest-card h3 { font-size: 1.08rem; margin: 0; }
.dest-card p { font-size: .88rem; color: var(--gray-600); margin: 0 0 8px; flex: 1; }
.dest-card .card-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: .84rem; font-weight: 700; color: var(--teal);
}
.dest-card .card-cta a.mini-call {
  background: var(--sand); color: var(--orange-dark); padding: 7px 14px; border-radius: 999px; font-weight: 700;
}

/* ---------- Cadenas hoteleras ---------- */
.chain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.chain-card { display: flex; flex-direction: column; gap: 14px; }
.chain-logo {
  height: 170px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.chain-logo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--gray-300); border-radius: var(--radius-sm); padding: 4px 20px; background: #fff; }
.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--orange); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 16px; color: var(--gray-600); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; padding: 46px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: 1.5rem; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.75); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-soft); color: rgba(255,255,255,.85); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; margin: 12px 0 18px; }
.footer-col h3 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 24px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.55);
}

/* ---------- Nosotros / valores ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--sand); border-radius: var(--radius-md); padding: 26px; }
.value-card h3 { font-size: 1.05rem; }
.value-card p { color: var(--gray-600); font-size: .9rem; margin: 0; }

/* ---------- 404 ---------- */
.not-found { text-align: center; padding: 100px 24px; }
.not-found h1 { font-size: 4rem; color: var(--orange); margin-bottom: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .chain-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .main-nav { position: fixed; inset: 76px 0 auto 0; background: var(--ink); flex-direction: column; padding: 18px 24px;
    transform: translateY(-130%); opacity: 0; transition: all .25s ease; gap: 6px; }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: flex; }
  .phone-pill span { display: none; }
  .phone-pill { padding: 10px 12px; }
  .card-grid, .card-grid.cols-3 { grid-template-columns: 1fr; }
  .chain-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { text-align: center; justify-content: center; }
}
