/* ===================================================
   Viajando Vamos — home.css (Rediseño 2026)
   =================================================== */

/* ===== TOKENS ===== */
:root {
  --vv-yellow:      #EDDF59;
  --vv-blue:        #53B7DE;
  --vv-orange:      #EE7F35;
  --vv-green:       #5AA838;
  --vv-brown:       #6B4423;
  --vv-blue-deep:   #2E7A99;
  --vv-orange-deep: #C85F1E;

  --navy:      #16273f;
  --navy-deep: #0c1729;
  --charcoal:  #23262d;
  --gold:      #2E7A99;
  --gold-light:#EDDF59;

  --ink-900: #1a1d24;
  --ink-700: #3a3f4b;
  --ink-500: #6b7280;
  --ink-300: #d1d5db;
  --ink-100: #f3f4f6;
  --paper:   #fdfcf7;
  --white:   #ffffff;

  --shadow-sm: 0 2px 8px rgba(26,29,36,.06);
  --shadow-md: 0 8px 24px rgba(26,29,36,.10);
  --shadow-lg: 0 20px 50px rgba(26,29,36,.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*  { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2px; padding-bottom: 2px; padding-left: 8px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark-img { height: 88px; width: auto; display: block; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-weight: 500; font-size: 15px; color: var(--ink-700);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--vv-orange);
  transition: width .25s;
}
.nav-links a:hover { color: var(--ink-900); }
.nav-links a:hover::after { width: 100%; }

/* hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink-900); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 100px;
  font-weight: 600; font-size: 14px;
  transition: transform .15s, box-shadow .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary  { background: var(--vv-orange); color: var(--white); }
.btn-primary:hover { background: var(--vv-orange-deep); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; }
.btn-outline {
  background: transparent; color: var(--ink-900);
  border: 2px solid var(--ink-900);
}
.btn-outline:hover { background: var(--ink-900); color: var(--white); }

/* ===== HERO FULL-BLEED CAROUSEL ===== */
.hero-full {
  position: relative; width: 100%;
  height: 92vh; min-height: 460px; max-height: 920px;
  overflow: hidden; background: var(--navy-deep);
}
.hero-full .promo-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-full .promo-slide.active { opacity: 1; }
.hero-full .promo-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(12,23,41,.15) 0%,rgba(12,23,41,.05) 35%,rgba(12,23,41,.85) 100%);
  pointer-events: none; z-index: 1;
}
.hero-full .promo-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-full .promo-slide-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  color: var(--white); padding: 0 48px 64px;
}
.hero-full .promo-slide-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.hero-full .promo-slide-info h2 {
  font-size: clamp(40px,6vw,84px); color: var(--white);
  margin-bottom: 10px; text-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.hero-full .promo-duration {
  font-size: 16px; font-weight: 600; letter-spacing: .5px;
  opacity: .92; margin-bottom: 28px;
}
.hero-full .promo-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 16px 28px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  transition: transform .2s, background .2s;
}
.hero-full .promo-cta:hover { background: #1da851; transform: translateY(-2px); }

.hero-full-dots {
  position: absolute; right: 40px; bottom: 64px; z-index: 3;
  display: flex; gap: 10px;
}
.hero-full-dots .pd {
  width: 34px; height: 3px;
  background: rgba(255,255,255,.35);
  transition: background .25s; cursor: pointer; border: none;
}
.hero-full-dots .pd.active { background: var(--white); }

.hero-scroll-hint {
  position: absolute; left: 48px; bottom: 64px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5); color: var(--white);
  display: grid; place-items: center; font-size: 18px;
  animation: bob 2s infinite ease-in-out;
  text-decoration: none;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ===== SECTIONS ===== */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 12.5px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(32px,4vw,48px); margin-bottom: 14px; }
.section-head p  { color: var(--ink-500); font-size: 17px; }

/* ===== CATEGORIES CAROUSEL ===== */
.cat-carousel-wrap { position: relative; }
.categories-grid {
  display: flex; gap: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth; padding-bottom: 12px; margin-bottom: -12px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.categories-grid::-webkit-scrollbar { display: none; }
.cat-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-md); display: grid; place-items: center;
  font-size: 18px; color: var(--ink-900); z-index: 5;
  transition: background .2s, transform .2s;
  min-height: 44px;
}
.cat-carousel-arrow:hover { background: var(--ink-900); color: var(--white); }
.cat-carousel-arrow.prev { left: -20px; }
.cat-carousel-arrow.next { right: -20px; }

.cat-card {
  flex: 0 0 auto; width: 360px; scroll-snap-align: start;
  position: relative; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; border: 1px solid var(--ink-100);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-img {
  height: 220px; background-size: cover; background-position: center;
  position: relative; flex-shrink: 0;
}
.cat-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 50%,rgba(0,0,0,.55) 100%);
}
.cat-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--white); padding: 6px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.cat-count {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  background: rgba(0,0,0,.55); backdrop-filter: blur(10px);
  color: var(--white); padding: 6px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.cat-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cat-body h3 { font-size: 22px; margin-bottom: 8px; }
.cat-body .desc { color: var(--ink-500); font-size: 14.5px; margin-bottom: 18px; min-height: 44px; }
.cat-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.cat-meta .pill {
  font-size: 12px; padding: 4px 10px; border-radius: 100px;
  background: var(--ink-100); color: var(--ink-700); font-weight: 500;
}
.cat-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--ink-100); margin-top: auto;
}
.cat-from { font-size: 12px; color: var(--ink-500); }
.cat-from b {
  display: block; font-size: 18px; color: var(--gold);
  font-family: 'Playfair Display', serif; margin-top: 2px;
}
.cat-arrow {
  background: var(--ink-900); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.cat-card:hover .cat-arrow { background: var(--vv-orange); transform: translateX(4px); }

/* swipe hint — solo visible en móvil */
.swipe-hint {
  display: none;
}
@keyframes swipe-bounce {
  0%   { transform: translateX(0); opacity: .7; }
  50%  { transform: translateX(10px); opacity: 1; }
  100% { transform: translateX(0); opacity: .7; }
}

/* category color accents */
.cat-card[data-color="yellow"] .cat-badge { background: var(--vv-yellow); }
.cat-card[data-color="blue"]   .cat-badge { background: var(--vv-blue);   color: var(--white); }
.cat-card[data-color="orange"] .cat-badge { background: var(--vv-orange); color: var(--white); }
.cat-card[data-color="green"]  .cat-badge { background: var(--vv-green);  color: var(--white); }
.cat-card[data-color="brown"]  .cat-badge { background: var(--vv-brown);  color: var(--white); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.7); backdrop-filter: blur(8px);
  z-index: 200; display: none; align-items: flex-start;
  justify-content: center; padding: 5vh 16px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--paper); width: 100%; max-width: 1100px;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: rise .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(40px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.modal-head {
  position: relative; padding: 40px 40px 28px;
  background: var(--navy); color: var(--white);
}
.modal-head[data-color="yellow"] { background: var(--vv-yellow); color: var(--ink-900); }
.modal-head[data-color="blue"]   { background: var(--vv-blue);   color: var(--white); }
.modal-head[data-color="orange"] { background: var(--vv-orange); color: var(--white); }
.modal-head[data-color="green"]  { background: var(--vv-green);  color: var(--white); }
.modal-head[data-color="brown"]  { background: var(--vv-brown);  color: var(--white); }

.modal-eyebrow {
  font-family: 'Inter', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; font-size: 12px;
  color: var(--gold-light); opacity: .95; margin-bottom: 6px;
}
.modal-head h2 { font-size: 36px; margin-bottom: 8px; }
.modal-head p  { opacity: .92; font-size: 15px; max-width: 640px; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.2); color: inherit;
  display: grid; place-items: center; font-size: 20px;
  transition: background .2s, transform .2s; min-height: 44px;
}
.modal-close:hover { background: rgba(255,255,255,.35); transform: rotate(90deg); }

.modal-body {
  padding: 24px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.tour-card {
  display: grid; grid-template-columns: 110px 1fr;
  height: 110px;
  background: var(--white); border-radius: 14px;
  border: 1.5px solid var(--ink-100); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none; color: inherit; cursor: pointer;
}
.tour-card:hover { border-color: var(--vv-orange); box-shadow: var(--shadow-md); }
.tour-img {
  width: 110px; height: 110px;
  background-size: cover; background-position: center;
  background-color: var(--ink-100);
}
.tour-info {
  display: flex; flex-direction: column;
  padding: 12px 14px; min-width: 0;
}
.tour-info h4 {
  font-size: 15px; font-weight: 600; margin: 0 0 3px;
  font-family: 'Playfair Display', serif;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tour-meta {
  font-size: 11px; color: var(--ink-500);
  display: flex; gap: 8px; flex-wrap: nowrap;
}
.tour-meta span { display: flex; align-items: center; gap: 3px; white-space: nowrap; }
.tour-price {
  margin-top: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}
.tour-price .price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px; color: var(--gold); line-height: 1.1; }
.tour-price .price small { font-size: 10px; color: var(--ink-500); display: block; font-family: 'Inter', sans-serif; font-weight: 400; }
.tour-cta {
  background: #25D366; color: var(--white);
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.tour-cta:hover { background: #1da851; }
.modal-empty {
  grid-column: 1/-1; text-align: center; padding: 48px 20px;
  color: var(--ink-500); font-size: 16px;
}

/* ===== LOGOS MARQUEE ===== */
.logos-wrap {
  margin-top: 72px; padding-top: 48px;
  border-top: 1px solid var(--ink-100);
}
.logos-label {
  text-align: center; font-size: 12.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 32px;
}
.logos-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.logos-track {
  display: flex; gap: 64px; width: max-content;
  animation: scroll-logos 32s linear infinite;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-chip {
  flex: none; width: 180px; height: 90px;
  border-radius: var(--radius-md); border: 1px solid var(--ink-100);
  background: var(--white); display: grid; place-items: center;
  padding: 12px 16px;
}
.logo-chip img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; filter: none; }

/* ===== CORPORATIVO ===== */
.corporate-section { background: var(--navy-deep); color: var(--white); }
.corporate-section .section-eyebrow { color: var(--gold-light); }
.corporate-section .section-head h2 { color: var(--white); }
.corporate-section .section-head p  { color: rgba(255,255,255,.68); }

.corp-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 56px;
}
.corp-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s;
}
.corp-card:hover { border-color: rgba(255,255,255,.3); }
.corp-img {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--vv-blue-deep), var(--navy-deep));
  display: grid; place-items: center; flex-shrink: 0;
  color: rgba(255,255,255,.35); font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase;
}
.corp-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.corp-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy-deep); background: var(--vv-yellow);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.corp-body h3 { font-size: 21px; margin-bottom: 10px; color: var(--white); }
.corp-body p  { font-size: 14.5px; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.corp-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: auto; }
.corp-features li {
  font-size: 13.5px; color: rgba(255,255,255,.85);
  display: flex; align-items: flex-start; gap: 8px;
}
.corp-features li::before {
  content: ''; width: 5px; height: 5px; margin-top: 7px;
  background: var(--vv-blue); border-radius: 50%; flex: none;
}
.corp-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; margin-top: 20px; padding: 13px 22px;
  border-radius: 100px; font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.4); color: var(--white);
  background: transparent; transition: background .2s, border-color .2s;
  text-decoration: none; min-height: 44px;
}
.corp-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* ===== TIMELINE (próximas salidas) ===== */
.calendar-strip { background: var(--ink-900); color: var(--white); }
.calendar-strip .section-eyebrow { color: var(--vv-yellow); }
.calendar-strip .section-head h2 { color: var(--white); }
.calendar-strip .section-head p  { color: rgba(255,255,255,.7); }

.cal-legend { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cal-legend .item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.cal-legend .swatch { width: 12px; height: 12px; border-radius: 3px; }

.timeline {
  position: relative; max-width: 900px; margin: 0 auto; padding: 20px 0;
}
.timeline::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: rgba(255,255,255,.15);
}
.tl-item {
  position: relative; padding-left: 64px; padding-bottom: 24px;
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 20px; align-items: center;
}
.tl-dot {
  position: absolute; left: 16px; top: 16px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 3px solid var(--ink-900);
}
.tl-dot.pasadia   { background: var(--vv-yellow); }
.tl-dot.excursion { background: var(--vv-blue); }
.tl-dot.mini      { background: var(--vv-orange); }
.tl-dot.aereo     { background: var(--vv-green); }
.tl-date {
  font-family: 'Playfair Display', serif; font-size: 14px; text-align: center;
  background: rgba(255,255,255,.06); padding: 8px 4px;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.1);
}
.tl-date b    { display: block; font-size: 22px; line-height: 1; margin-bottom: 2px; }
.tl-date small { font-size: 11px; opacity: .7; text-transform: uppercase; letter-spacing: 1px; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.tl-sub   { font-size: 13px; opacity: .7; margin-top: 2px; }
.tl-cta {
  background: var(--gold-light); color: var(--ink-900);
  padding: 10px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: transform .2s; min-height: 44px; display: inline-flex; align-items: center;
}
.tl-cta:hover { transform: scale(1.05); }
.tl-empty {
  text-align: center; padding: 48px 20px; color: rgba(255,255,255,.5); font-size: 15px;
}

/* ===== TESTIMONIALS (marquee continuo) ===== */
.testimonials { background: var(--paper); }
.rating-summary {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-bottom: 40px; padding: 20px 32px;
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 540px; margin-left: auto; margin-right: auto;
  border: 1px solid var(--ink-100);
}
.rating-big { font-family: 'Playfair Display', serif; font-size: 56px; color: var(--gold); line-height: 1; }
.rating-info .stars { color: var(--gold); font-size: 18px; margin-bottom: 4px; }
.rating-info p { font-size: 13px; color: var(--ink-500); }

.test-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.test-track {
  display: flex; gap: 24px; width: max-content;
  animation: scroll-tests 40s linear infinite;
}
.test-marquee:hover .test-track { animation-play-state: paused; }
@keyframes scroll-tests {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.test-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--ink-100);
  position: relative; flex: none; width: 380px;
}
.test-card::before {
  content: '"'; position: absolute; top: -10px; left: 24px;
  font-family: 'Playfair Display', serif; font-size: 80px;
  color: var(--gold-light); line-height: 1;
}
.test-stars   { color: var(--gold); margin-bottom: 12px; font-size: 16px; }
.test-text    { color: var(--ink-700); font-size: 15px; margin-bottom: 20px; }
.test-author  { display: flex; gap: 12px; align-items: center; }
.test-avatar  {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--vv-blue-deep));
  display: grid; place-items: center; color: var(--white);
  font-weight: 700; font-family: 'Playfair Display', serif; flex-shrink: 0;
}
.test-author .who b     { display: block; font-size: 14px; }
.test-author .who small { font-size: 12px; color: var(--ink-500); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white); padding: 64px 0; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(173,138,63,.18);
}
.cta-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; position: relative; flex-wrap: wrap;
}
.cta-strip h2 { font-size: clamp(28px,4vw,40px); margin-bottom: 8px; }
.cta-strip p  { font-size: 17px; opacity: .95; max-width: 520px; }
.cta-strip .btn-whatsapp {
  background: var(--white); color: var(--navy);
  padding: 16px 28px; font-size: 16px; min-height: 44px;
}
.cta-strip .btn-whatsapp:hover { background: var(--gold-light); color: var(--ink-900); }

/* ===== FOOTER ===== */
.footer { background: var(--ink-900); color: rgba(255,255,255,.85); padding: 64px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer h4 {
  font-family: 'Inter', sans-serif; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px; color: var(--gold-light);
}
.footer ul   { list-style: none; }
.footer li   { margin-bottom: 8px; font-size: 14px; }
.footer a:hover { color: var(--gold-light); }
.footer p    { font-size: 14px; line-height: 1.7; }
.social-row  { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: background .2s, transform .2s; min-height: 44px;
}
.social-row a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.5);
}

/* ===== FAB WHATSAPP ===== */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: #25D366; color: var(--white);
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s;
  animation: bobble 3s infinite ease-in-out;
}
.fab-whatsapp:hover { transform: scale(1.1); animation: none; }
@keyframes bobble { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.fab-whatsapp::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0; animation: ripple 2s infinite;
}
@keyframes ripple { 0%{opacity:.6;transform:scale(1)} 100%{opacity:0;transform:scale(1.6)} }

/* ===== BTN PROGRAMACION ===== */
#btn-programacion {
  position: fixed; top: 110px; left: 16px; z-index: 89;
  background: var(--vv-orange); color: var(--white);
  padding: 12px 20px; border-radius: 30px; font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,.3); cursor: pointer;
  border: 2px solid rgba(255,255,255,.4);
  transition: transform .2s, background .2s; text-transform: uppercase;
  font-size: .9rem; display: flex; align-items: center; gap: 10px;
  min-height: 44px;
}
#btn-programacion:hover { transform: scale(1.05); background: var(--vv-orange-deep); }

/* ===== CALENDAR MODAL ===== */
.calendar-overlay {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; background: rgba(0,0,0,.9);
  z-index: 10000; justify-content: center; align-items: center;
  padding: 20px; overflow-y: auto;
}
.calendar-container {
  background: #fff; width: 100%; max-width: 1000px; border-radius: 10px;
  overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.5);
  display: flex; flex-direction: column; max-height: 90vh;
}
.calendar-header {
  background: #0056b3; color: white; padding: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Playfair Display', serif;
}
.calendar-nav button {
  background: rgba(255,255,255,.2); border: none; color: white;
  padding: 5px 15px; border-radius: 5px; cursor: pointer; font-size: 1.2rem;
  min-height: 44px;
}
.calendar-nav button:hover { background: rgba(255,255,255,.4); }
.calendar-body { padding: 10px; overflow-y: auto; }
.days-header {
  display: grid; grid-template-columns: repeat(7,1fr);
  text-align: center; font-weight: bold; color: #333;
  margin-bottom: 10px; border-bottom: 2px solid #ddd; padding-bottom: 10px;
}
.days-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; }
.day-cell { min-height: 100px; border: 1px solid #eee; padding: 5px; position: relative; background: #fafafa; }
.day-cell.empty { background: #fff; border: none; }
.day-number { font-weight: bold; color: #777; margin-bottom: 5px; display: block; text-align: right; }
.day-number.festivo { color: #28a745; font-weight: 900; }
.day-cell.today { background: #fff3cd; border: 1px solid #ffeeba; }
.event-bar {
  font-size: .75rem; padding: 2px 5px; margin-bottom: 2px;
  border-radius: 4px; color: #fff; cursor: pointer;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  box-shadow: 1px 1px 3px rgba(0,0,0,.2); display: block;
  text-decoration: none; transition: transform .2s;
}
.event-bar:hover { transform: scale(1.02); z-index: 2; position: relative; }
.tipo-pasadia  { background: #FFD700; color: #333; border: 1px solid #e6c200; font-weight: bold; }
.tipo-excursion{ background: #2196F3; }
.tipo-mini     { background: #FF9800; }
.tipo-aereo    { background: #4CAF50; }
.admin-panel {
  background: #f1f1f1; padding: 15px;
  border-top: 1px solid #ccc; display: none;
}
.admin-form { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 10px; }
.admin-form input,
.admin-form select { padding: 8px; border: 1px solid #ccc; border-radius: 4px; min-height: 44px; }
.btn-admin { background: #333; color: white; border: none; padding: 10px; cursor: pointer; border-radius: 4px; min-height: 44px; }
.btn-close-modal {
  position: absolute; top: 15px; right: 20px; font-size: 2rem;
  color: white; cursor: pointer; background: transparent; border: none; z-index: 10001;
  min-height: 44px; min-width: 44px;
}

/* ===== DEVELOPER SECTION ===== */
.developer-section {
  background: #1c1c1c; padding: 20px; text-align: center;
  font-size: .85rem; color: #a0a0a0;
}
.developer-section p { margin: 4px 0; line-height: 1.6; }
.developer-section a { color: var(--vv-blue); }
.developer-section a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .corp-grid      { grid-template-columns: 1fr; }
  .cat-carousel-arrow { display: none; }
  .tl-item { grid-template-columns: 70px 1fr; }
  .tl-cta  { grid-column: 1/-1; justify-self: start; margin-top: 8px; }
}
@media (max-width: 640px) {
  .navbar { position: sticky; top: 0; z-index: 100; }
  .navbar .container {
    position: relative; justify-content: space-between;
    padding-top: 8px; padding-bottom: 8px; gap: 0;
  }
  .brand-mark-img { height: 56px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; gap: 0;
    border-top: 1px solid var(--ink-100);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--ink-100); }
  .nav-links a {
    display: block; padding: 15px 20px; font-size: 16px; font-weight: 500;
  }
  .nav-links a::after { display: none; }
  section { padding: 48px 0; }
  .hero-full  { height: 78vh; min-height: 420px; }
  .hero-full .promo-slide-info { padding: 0 20px 40px; }
  .hero-full .promo-slide-info h2 { font-size: clamp(28px,8vw,40px); }
  .hero-full .promo-cta { padding: 13px 20px; font-size: 14px; }
  .hero-full-dots { right: 20px; bottom: 20px; }
  .hero-scroll-hint { display: none; }
  .cat-card { width: 82vw; }
  .swipe-hint {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    margin-top: 16px; font-size: 14px; font-weight: 500; color: var(--ink-500);
  }
  .swipe-hand { animation: swipe-bounce 1.4s ease-in-out infinite; display: inline-block; font-size: 18px; }
  .modal-body  { padding: 20px; }
  .modal-head  { padding: 28px 20px 20px; }
  .modal-head h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip .container { flex-direction: column; align-items: flex-start; }
  .cta-strip .btn-whatsapp { width: 100%; justify-content: center; }
  .logo-chip   { width: 150px; height: 84px; font-size: 13px; }
  .logos-track { gap: 32px; }
  .test-card   { width: 86vw; padding: 22px; }
  .tl-item     { padding-left: 50px; }
  .timeline::before { left: 18px; }
  .tl-dot { left: 10px; }
  .rating-summary { flex-direction: column; gap: 12px; padding: 20px; }
  .container   { padding: 0 18px; }
  .btn         { padding: 11px 18px; font-size: 13.5px; }
  #btn-programacion span { display: none; }
  #btn-programacion { padding: 12px; border-radius: 50%; min-width: 44px; min-height: 44px; }
  .days-header div { font-size: .8rem; }
  .day-cell    { min-height: 70px; font-size: .8rem; }
  .event-bar   { font-size: .65rem; padding: 1px 3px; }
}
@media (max-width: 400px) {
  .cat-card  { width: 88vw; }
  .test-card { width: 90vw; }
  .logo-chip { width: 130px; height: 74px; font-size: 12px; }
}

/* ===== CORPORATE DETAIL PAGES ===== */
.detail-hero {
  position: relative; height: 60vh; min-height: 420px; max-height: 640px;
  overflow: hidden; background: var(--navy-deep);
}
.detail-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.detail-hero-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--vv-blue-deep), var(--navy-deep));
  display: grid; place-items: center;
  color: rgba(255,255,255,.3); font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
}
.detail-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(12,23,41,.25) 0%,rgba(12,23,41,.15) 40%,rgba(12,23,41,.9) 100%);
  z-index: 1; pointer-events: none;
}
.detail-hero-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  color: var(--white); padding: 0 48px 56px;
}
.detail-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--vv-orange); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 18px;
}
.detail-hero-info h1 { font-size: clamp(36px,5.5vw,60px); color: var(--white); margin-bottom: 8px; }
.detail-hero-info p  { font-size: 17px; opacity: .92; max-width: 560px; }
.back-link {
  position: absolute; top: 24px; left: 48px; z-index: 3; color: var(--white);
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  padding: 10px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
}
.detail-body { max-width: 900px; margin: 0 auto; padding: 80px 24px; }
.detail-body h2 { font-size: 32px; margin-bottom: 20px; }
.detail-body > p.lead { font-size: 18px; color: var(--ink-700); margin-bottom: 48px; line-height: 1.7; }
.includes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 56px; }
.includes-item {
  background: var(--white); border: 1px solid var(--ink-100);
  border-radius: var(--radius-md); padding: 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.includes-item .ico {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink-100);
  display: grid; place-items: center; flex: none; font-size: 18px;
}
.includes-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.includes-item p  { font-size: 13.5px; color: var(--ink-500); }
.gallery-carousel-wrap { position: relative; margin-bottom: 24px; }
.gallery-grid {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 8px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-placeholder {
  flex: 0 0 auto; width: 280px; height: 210px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--vv-blue-deep), var(--navy-deep));
  display: grid; place-items: center; scroll-snap-align: start;
  color: rgba(255,255,255,.3); font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
}
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--ink-100); box-shadow: var(--shadow-md);
  display: grid; place-items: center; font-size: 16px; color: var(--ink-900); z-index: 5;
  min-height: 44px;
}
.gallery-arrow.prev { left: -18px; }
.gallery-arrow.next { right: -18px; }
.payment-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 56px; }
.payment-box { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 24px; }
.payment-box h4 { font-size: 16px; margin-bottom: 14px; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 10px; }
.payment-methods span {
  font-size: 13px; font-weight: 600; background: var(--ink-100);
  color: var(--ink-700); padding: 7px 14px; border-radius: 100px;
}
.extra-info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.extra-info-list li { font-size: 14.5px; color: var(--ink-700); display: flex; gap: 10px; align-items: flex-start; }
.extra-info-list li::before { content: '✓'; color: var(--vv-green); font-weight: 700; flex: none; }
@media (max-width: 768px) {
  .detail-hero-info { padding: 0 24px 40px; }
  .back-link { left: 24px; }
  .includes-grid { grid-template-columns: 1fr; }
  .gallery-arrow { display: none; }
  .payment-info-grid { grid-template-columns: 1fr; }
}
