/*
 * ============================================================
 *  MACHU PICCHU INTI TRAVEL — style.css
 *  Inversiones Turísticas Inti Travel E.I.R.L | RUC: 20609403188
 *  Versión: 1.0 | Fecha: 2025
 * ============================================================
 *
 *  WORDPRESS — Instrucciones de instalación:
 *  ─────────────────────────────────────────
 *  1. Copia este archivo a la carpeta de tu tema WordPress:
 *     /wp-content/themes/inti-travel/style.css
 *
 *  2. Agrega al inicio del archivo (requerido por WP):
 *
 *     Theme Name:  MachuPicchu IntiTravel
 *     Theme URI:   https://www.machupicchunitravel.com
 *     Author:      Inversiones Turísticas Inti Travel E.I.R.L
 *     Description: Tema oficial MachuPicchu IntiTravel
 *     Version:     1.0
 *
 *  3. En functions.php registra el script JS:
 *     function inti_scripts() {
 *         wp_enqueue_style('inti-style', get_stylesheet_uri());
 *         wp_enqueue_script('inti-js',
 *             get_template_directory_uri() . '/main.js',
 *             array(), '1.0', true
 *         );
 *     }
 *     add_action('wp_enqueue_scripts', 'inti_scripts');
 *
 *  ÍNDICE DE SECCIONES:
 *  ─────────────────────────────────────────
 *  01. Variables CSS (colores, fuentes, sombras)
 *  02. Reset y utilidades base
 *  03. Botones
 *  04. Cabeceras de sección (section headers)
 *  05. Ornamentos decorativos (inca pattern)
 *  06. Animación Fade-in
 *  07. HEADER — navegación fija
 *  08. HERO — sección principal
 *  09. TOURS — grid y tarjetas
 *  10. DESTINOS — mosaico
 *  11. CULTURA ANDINA — sección oscura
 *  12. SOBRE NOSOTROS
 *  13. LEGAL / DOCUMENTOS
 *  14. TESTIMONIOS
 *  15. BLOG
 *  16. CONTACTO — formulario
 *  17. TOUR DETAIL — página individual
 *  18. DESTINO DETAIL
 *  19. BLOG POST DETAIL
 *  20. FOOTER
 *  21. WHATSAPP FLOTANTE
 *  22. PAGE HEADERS / BREADCRUMBS / TEAM
 *  23. RESPONSIVE — tablet y móvil
 * ============================================================
 */

/* ═══════════════════════════════════════════════════════
   MACHU PICCHU INTI TRAVEL — Complete Stylesheet
   WordPress: enqueue via wp_enqueue_style() in functions.php
═══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --azul:       #2F6FAE;
  --azul-dk:    #1E3F66;
  --azul-xdk:   #132840;
  --gold:       #F2C500;
  --gold-dk:    #D4A800;
  --gold-lt:    #FFF0A0;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-lt:    #9CA3AF;
  --green:      #5FA36A;
  --dark:       #0F1A26;
  --bg:         #F9F7F2;
  --bg2:        #F3EFE8;
  --bg3:        #EDE8DF;
  --sh1:        0 4px 24px rgba(30,63,102,.09);
  --sh2:        0 10px 44px rgba(30,63,102,.17);
  --sh3:        0 20px 70px rgba(30,63,102,.26);
  --r:          16px;
  --r2:         10px;
  --r3:         6px;
  --t:          .33s cubic-bezier(.4,0,.2,1);
  --ft:         'Cinzel', serif;
  --fd:         'Playfair Display', serif;
  --fb:         'Poppins', sans-serif;
  --hh:         80px;
  --mw:         1300px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }

/* ── LAYOUT ── */
.wrap { width: 100%; max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.sp  { padding: 100px 0; }
.sp2 { padding: 70px 0; }
.sp3 { padding: 50px 0; }
.page { display: none; }
.page.active { display: block; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--azul-dk);
  font-weight: 700; font-size: .93rem; letter-spacing: .03em;
  padding: 15px 34px; border-radius: 50px;
  transition: all var(--t); white-space: nowrap;
  box-shadow: 0 6px 28px rgba(242,197,0,.38);
}
.btn-gold:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(242,197,0,.45); }
.btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid rgba(255,255,255,.65); color: #fff;
  font-weight: 600; font-size: .93rem;
  padding: 13px 30px; border-radius: 50px;
  transition: all var(--t);
}
.btn-white:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--azul-dk); color: #fff;
  font-size: .83rem; font-weight: 700; padding: 10px 22px; border-radius: 28px;
  transition: all var(--t);
}
.btn-dark:hover { background: var(--gold); color: var(--azul-dk); transform: translateX(2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  border: 2px solid var(--azul-dk); color: var(--azul-dk);
  font-weight: 700; font-size: .85rem; padding: 10px 24px; border-radius: 28px;
  transition: all var(--t);
}
.btn-outline:hover { background: var(--azul-dk); color: #fff; }
.btn-wa {
  width: 100%; padding: 16px; border-radius: 12px;
  background: #25D366; color: #fff;
  font-size: .97rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--t);
}
.btn-wa:hover { background: #1EBE57; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.42); }

/* ── SECTION HEADERS ── */
.sh { margin-bottom: 56px; }
.sh .ey {
  display: inline-block; font-size: .76rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 11px;
}
.sh h2 {
  font-family: var(--ft); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--azul-dk); line-height: 1.18; margin-bottom: 14px;
}
.sh p { font-size: 1.02rem; color: var(--gray); max-width: 570px; line-height: 1.75; }
.sh.c { text-align: center; }
.sh.c p { margin: 0 auto; }
.sh.wh h2 { color: #fff; }
.sh.wh p { color: rgba(255,255,255,.72); }
.ornam {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
}
.sh.c .ornam { justify-content: center; }
.ornam span { height: 2px; width: 52px; background: var(--gold); display: block; }
.ornam .gem { width: 10px; height: 10px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ── BADGE ── */
.bdg {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gold); color: var(--azul-dk);
  font-size: .68rem; font-weight: 800; letter-spacing: .09em;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.bdg.blue { background: var(--azul); color: #fff; }
.bdg.green { background: var(--green); color: #fff; }

/* ── FADE IN ── */
.fi { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.fi.vis { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   HEADER  — WP: header.php
══════════════════════════════════════════════ */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hh);
  background: transparent;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
#hdr.scr {
  background: var(--azul-xdk);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
  height: 68px;
}
.hi { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }

/* Logo */
.logo-img {
  height: 50px;
  width: auto;
}
.logo { display: flex; align-items: center; gap: 13px; cursor: pointer; flex-shrink: 0; }
.logo-ic {
  width: 46px; height: 46px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ft); font-weight: 900; color: var(--azul-dk); font-size: 1rem;
  flex-shrink: 0; transition: transform var(--t);
}
.logo:hover .logo-ic { transform: rotate(-8deg) scale(1.08); }
.logo-tx { display: flex; flex-direction: column; line-height: 1.1; }
.logo-tx .br { font-family: var(--ft); font-size: .9rem; color: #fff; font-weight: 700; letter-spacing: .02em; }
.logo-tx .tg { font-size: .62rem; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }

/* Main nav */
.mnav ul { display: flex; gap: 2px; align-items: center; }
.mnav a {
  font-size: .86rem; font-weight: 500; color: rgba(255,255,255,.87);
  padding: 8px 14px; border-radius: var(--r3);
  transition: all var(--t); cursor: pointer; position: relative;
}
.mnav a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: all var(--t);
}
.mnav a:hover::after, .mnav a.act::after { left: 14px; right: 14px; }
.mnav a:hover, .mnav a.act { color: var(--gold); }

/* Header right */
.ha { display: flex; align-items: center; gap: 10px; }
.hsoc { display: flex; gap: 7px; }
.hsoc a {
  width: 31px; height: 31px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.68); font-size: .82rem;
  transition: all var(--t);
}
.hsoc a:hover { border-color: var(--gold); color: var(--gold); background: rgba(242,197,0,.1); }
.lsw { display: flex; gap: 3px; background: rgba(255,255,255,.1); border-radius: 20px; padding: 3px; }
.lsw button {
  font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 15px;
  color: rgba(255,255,255,.65); transition: all var(--t);
}
.lsw button.act { background: var(--gold); color: var(--azul-dk); }
.btn-rsv {
  background: var(--gold); color: var(--azul-dk);
  font-weight: 700; font-size: .83rem; letter-spacing: .03em;
  padding: 9px 22px; border-radius: 28px; transition: all var(--t); white-space: nowrap;
}
.btn-rsv:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(242,197,0,.4); }

/* Hamburger */
.hbg {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; justify-content: center; align-items: center;
  border-radius: 9px; border: 1.5px solid rgba(255,255,255,.28);
}
.hbg span { display: block; width: 21px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--t); }
.hbg.op span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hbg.op span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hbg.op span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobnav {
  display: none; position: fixed; top: var(--hh); left: 0; right: 0;
  background: var(--azul-xdk); z-index: 999; padding: 22px 24px;
  flex-direction: column; gap: 6px; box-shadow: var(--sh3);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobnav.op { display: flex; }
.mobnav a { color: #fff; font-weight: 500; padding: 11px 16px; border-radius: 10px; cursor: pointer; }
.mobnav a:hover { background: rgba(255,255,255,.08); color: var(--gold); }
.mobnav .mob-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.mobnav .lsw { flex: 1; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hbg2 {
  position: absolute; inset: 0;
  background:
    linear-gradient(168deg, rgba(19,40,64,.92) 0%, rgba(30,63,102,.6) 45%, rgba(95,163,106,.22) 100%),
    url('https://images.unsplash.com/photo-1587595431973-160d0d94add1?w=1920&q=85') center/cover no-repeat;
  transform: scale(1.03);
  animation: hzoom 18s ease-in-out infinite alternate;
}
@keyframes hzoom { 0% { transform: scale(1.03); } 100% { transform: scale(1.10); } }
.hov  { position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,40,64,.82) 0%, transparent 55%); }
.hpat {
  position: absolute; inset: 0; opacity: .045;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 26px 26px;
}
/* Geometric inca border bottom */
.hinca {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 20px, var(--azul-dk) 20px, var(--azul-dk) 40px);
  opacity: .7;
}
.hcnt {
  position: relative; z-index: 2; text-align: center;
  padding: calc(var(--hh) + 48px) 24px 90px;
  max-width: 920px;
}
.hey {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.hey::before, .hey::after { content: ''; display: block; width: 38px; height: 1px; background: var(--gold); }
.hcnt h1 {
  font-family: var(--ft);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  color: #fff; line-height: 1.08; margin-bottom: 26px;
  text-shadow: 0 6px 36px rgba(0,0,0,.32);
  letter-spacing: .01em;
}
.hcnt h1 .ac { color: var(--gold); display: block; }
.hcnt > p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 42px; max-width: 640px; margin-left: auto; margin-right: auto;
  line-height: 1.8;
}
.hctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hstats { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.hst { text-align: center; padding: 0 36px; }
.hst .n { font-family: var(--ft); font-size: 2.1rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hst .l { font-size: .72rem; color: rgba(255,255,255,.65); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.hst + .hst { border-left: 1px solid rgba(255,255,255,.18); }
.scri {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.52); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}
.smou { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.44); border-radius: 11px; position: relative; }
.smou::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold); border-radius: 2px;
  animation: sd 1.9s ease-in-out infinite;
}
@keyframes sd { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 100%{opacity:0;transform:translateX(-50%) translateY(13px)} }

/* ══════════════════════════════════════════════
   TOURS GRID & CARD
══════════════════════════════════════════════ */
#sec-tours { background: var(--bg); }
.fbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; margin-bottom: 38px;
  padding: 18px 26px; background: #fff;
  border-radius: var(--r); box-shadow: var(--sh1);
}
.fcnt { font-size: .88rem; color: var(--gray); }
.fcnt strong { color: var(--azul-dk); font-weight: 700; }
.fgrp { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.fsel {
  padding: 8px 34px 8px 14px; border: 1.5px solid #E5E7EB;
  border-radius: 28px; font-size: .83rem; color: var(--dark);
  background: #fff; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; cursor: pointer;
  transition: border-color var(--t);
}
.fsel:focus { outline: none; border-color: var(--azul); }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tcard {
  background: #fff; border-radius: var(--r); box-shadow: var(--sh1);
  overflow: hidden; transition: transform var(--t), box-shadow var(--t); cursor: pointer;
  display: flex; flex-direction: column;
}
.tcard:hover { transform: translateY(-9px); box-shadow: var(--sh3); }
.tci { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tci img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; display: block; }
.tcard:hover .tci img { transform: scale(1.08); }
.tcbdg { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.tcfav {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; background: rgba(255,255,255,.93); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  color: #D1D5DB; transition: all var(--t); border: none;
}
.tcfav:hover, .tcfav.on { color: #EF4444; background: #fff; transform: scale(1.1); }
.tcb { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.tct {
  font-family: var(--fd); font-size: 1.08rem; font-weight: 700;
  color: var(--azul-dk); margin-bottom: 8px; line-height: 1.3;
  transition: color var(--t);
}
.tcard:hover .tct { color: var(--azul); }
.tcl {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--gray); margin-bottom: 12px;
}
.tcl svg { color: var(--azul); flex-shrink: 0; }
.tcm { display: flex; gap: 14px; margin-bottom: 14px; }
.tcmi { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--gray); }
.tcmi svg { color: var(--green); flex-shrink: 0; }
.tcf {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #F3F4F6; margin-top: auto;
}
.tcp .d { font-size: .69rem; color: var(--gray); }
.tcp .a { font-family: var(--ft); font-size: 1.28rem; font-weight: 700; color: var(--azul-dk); }
.pgn { display: flex; justify-content: center; gap: 8px; margin-top: 52px; flex-wrap: wrap; }
.pb {
  width: 40px; height: 40px; border-radius: 11px; border: 1.5px solid #E5E7EB;
  font-size: .86rem; font-weight: 600; color: var(--gray);
  transition: all var(--t); display: flex; align-items: center; justify-content: center;
}
.pb:hover, .pb.on { background: var(--azul-dk); border-color: var(--azul-dk); color: #fff; }
.pb.on { background: var(--gold); border-color: var(--gold); color: var(--azul-dk); }
.pb-tx { padding: 0 16px; width: auto; font-size: .8rem; }

/* ══════════════════════════════════════════════
   DESTINOS MOSAIC
══════════════════════════════════════════════ */
#sec-destinos { background: #fff; }
.dgrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px; gap: 18px;
}
.dcard {
  position: relative; border-radius: var(--r); overflow: hidden;
  cursor: pointer; min-height: 200px;
}
.dcard:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.dcard img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .65s ease;
}
.dcard:hover img { transform: scale(1.06); }
.dov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(19,40,64,.9) 0%, rgba(19,40,64,.08) 65%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; transition: background var(--t);
}
.dcard:hover .dov { background: linear-gradient(to top, rgba(19,40,64,.96) 0%, rgba(19,40,64,.22) 55%); }
.dn { font-family: var(--ft); font-size: 1.15rem; color: #fff; font-weight: 700; margin-bottom: 4px; }
.dcard:nth-child(1) .dn { font-size: 2rem; }
.ds { font-size: .79rem; color: rgba(255,255,255,.75); }
.darr {
  position: absolute; top: 50%; right: 18px; transform: translateY(-50%);
  width: 36px; height: 36px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-dk); opacity: 0; transition: opacity var(--t); font-size: 1.1rem; font-weight: 700;
}
.dcard:hover .darr { opacity: 1; }

/* ══════════════════════════════════════════════
   CULTURA ANDINA
══════════════════════════════════════════════ */
#sec-cultura {
  background: linear-gradient(140deg, var(--azul-xdk) 0%, #193352 50%, #0F2A45 100%);
  position: relative; overflow: hidden;
}
#sec-cultura::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(242,197,0,.04) 0, rgba(242,197,0,.04) 1px, transparent 0, transparent 50%);
  background-size: 26px 26px;
}
/* Big decorative letter */
#sec-cultura::after {
  content: 'INCA'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--ft); font-size: 18rem; font-weight: 900; color: rgba(242,197,0,.03);
  line-height: 1; pointer-events: none; letter-spacing: .1em;
}
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.citems { display: grid; gap: 20px; }
.citem {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: rgba(255,255,255,.055);
  border-radius: var(--r2); border: 1px solid rgba(255,255,255,.07);
  transition: all var(--t);
}
.citem:hover { background: rgba(255,255,255,.1); border-color: rgba(242,197,0,.28); transform: translateX(4px); }
.cion {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
}
.citem h3 { font-family: var(--ft); font-size: 1.02rem; color: #fff; margin-bottom: 6px; }
.citem p { font-size: .85rem; color: rgba(255,255,255,.62); line-height: 1.65; }
.cimg { position: relative; border-radius: var(--r); overflow: hidden; }
.cimg img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.cib {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(19,40,64,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(242,197,0,.32); border-radius: var(--r2);
  padding: 16px 20px; color: #fff; font-size: .86rem; line-height: 1.55;
}
.cib strong { color: var(--gold); display: block; font-size: 1.08rem; margin-bottom: 4px; }

/* ══════════════════════════════════════════════
   SOBRE NOSOTROS
══════════════════════════════════════════════ */
#sec-nosotros { background: var(--bg); }
.ngrid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; }
.nimg { position: relative; }
.nimg-mn { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh3); }
.nimg-mn img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.nib {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); border-radius: var(--r);
  padding: 24px 28px; text-align: center; color: var(--azul-dk);
  box-shadow: var(--sh2); min-width: 140px;
}
.nib .big { font-family: var(--ft); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.nib .lb { font-size: .77rem; font-weight: 700; letter-spacing: .07em; }
.nvals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.nvcard {
  padding: 18px; background: #fff; border-radius: var(--r2);
  border-left: 3px solid var(--gold); box-shadow: var(--sh1);
  transition: all var(--t);
}
.nvcard:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.nvcard h4 { font-size: .87rem; font-weight: 700; color: var(--azul-dk); margin-bottom: 5px; }
.nvcard p { font-size: .81rem; color: var(--gray); line-height: 1.6; }
.ndif { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.ndif div { display: flex; align-items: center; gap: 11px; font-size: .88rem; color: var(--dark); }
.ndif div::before { content: '✦'; color: var(--gold); font-size: .78rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   LEGAL / DOCUMENTOS
══════════════════════════════════════════════ */
#sec-legal { background: #fff; }
.lgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lcard {
  background: var(--bg); border-radius: var(--r); padding: 24px 20px; text-align: center;
  border: 1.5px solid #E9E5DC; transition: all var(--t);
}
.lcard:hover { border-color: var(--gold); box-shadow: var(--sh2); transform: translateY(-5px); }
.lico {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--azul), var(--azul-dk));
  border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
}
.lcard h4 { font-size: .86rem; font-weight: 700; color: var(--azul-dk); margin-bottom: 6px; line-height: 1.3; }
.lcard .ent { font-size: .76rem; color: var(--gray); margin-bottom: 4px; line-height: 1.4; }
.lcard .yr { display: inline-block; font-size: .7rem; font-weight: 700; background: var(--gold); color: var(--azul-dk); padding: 2px 10px; border-radius: 10px; margin-top: 8px; }
.lcard .rucn { display: block; font-size: .8rem; font-weight: 700; color: var(--azul); margin-top: 7px; }

/* ══════════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════════ */
#sec-test { background: var(--bg2); }
.testgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testcard {
  background: #fff; border-radius: var(--r); padding: 28px; box-shadow: var(--sh1);
  transition: all var(--t);
}
.testcard:hover { transform: translateY(-7px); box-shadow: var(--sh2); }
.testh { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.testav { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2.5px solid var(--gold); flex-shrink: 0; }
.testav img { width: 100%; height: 100%; object-fit: cover; }
.testinfo h4 { font-size: .93rem; font-weight: 700; color: var(--azul-dk); }
.testinfo .pi { font-size: .78rem; color: var(--gray); }
.stars { color: #F59E0B; font-size: .92rem; margin-bottom: 10px; letter-spacing: .04em; }
.testtx { font-size: .87rem; color: var(--dark); line-height: 1.72; font-style: italic; position: relative; }
.testtx::before { content: '"'; font-family: var(--fd); font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -.5em; margin-right: 4px; opacity: .6; }
.tripb { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: .71rem; color: var(--gray); }
.tripb .tl { font-weight: 800; color: #00AF87; }

/* ══════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════ */
#sec-blog { background: #fff; }
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bcard { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh1); transition: all var(--t); cursor: pointer; }
.bcard:hover { transform: translateY(-7px); box-shadow: var(--sh2); }
.bimg { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.bimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; display: block; }
.bcard:hover .bimg img { transform: scale(1.06); }
.bcat {
  position: absolute; top: 11px; left: 11px;
  background: var(--azul); color: #fff;
  font-size: .68rem; font-weight: 700; padding: 3px 11px; border-radius: 14px;
  letter-spacing: .08em; text-transform: uppercase;
}
.bbd { padding: 22px; background: #fff; }
.bdt { font-size: .76rem; color: var(--gray); margin-bottom: 7px; }
.btit { font-family: var(--fd); font-size: 1.04rem; font-weight: 700; color: var(--azul-dk); margin-bottom: 10px; line-height: 1.4; }
.bex { font-size: .84rem; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.brm { font-size: .81rem; font-weight: 700; color: var(--azul); transition: color var(--t); display: inline-flex; align-items: center; gap: 4px; }
.brm:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════ */
#sec-contact {
  background: linear-gradient(140deg, var(--azul-xdk) 0%, #193352 100%);
  position: relative; overflow: hidden;
}
#sec-contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(242,197,0,.03) 0, rgba(242,197,0,.03) 1px, transparent 0, transparent 50%);
  background-size: 26px 26px;
}
.cgrd { display: grid; grid-template-columns: 1fr 1.45fr; gap: 60px; position: relative; z-index: 1; align-items: start; }
.cinfo { color: #fff; }
.cii { display: flex; gap: 15px; margin-bottom: 26px; align-items: flex-start; }
.cii-ic {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(242,197,0,.14); border: 1px solid rgba(242,197,0,.3);
  border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.cii h4 { font-size: .79rem; color: var(--gold); font-weight: 700; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .1em; }
.cii p, .cii a { font-size: .9rem; color: rgba(255,255,255,.84); line-height: 1.55; }
.cii a:hover { color: var(--gold); }
.csoc { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }
.csoc a {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 7px 15px; border-radius: 24px; color: #fff; font-size: .8rem; transition: all var(--t);
}
.csoc a:hover { border-color: var(--gold); color: var(--gold); background: rgba(242,197,0,.08); }
.cfw { background: #fff; border-radius: var(--r); padding: 38px; box-shadow: var(--sh3); }
.cfw h3 { font-family: var(--ft); font-size: 1.25rem; color: var(--azul-dk); margin-bottom: 22px; }
.fgd { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: span 2; }
.fg label { font-size: .8rem; font-weight: 700; color: var(--azul-dk); }
.fg input, .fg select, .fg textarea {
  padding: 11px 15px; border: 1.5px solid #E9E5DC; border-radius: var(--r2);
  font-size: .88rem; color: var(--dark); background: #FAFAF8;
  transition: all var(--t);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--azul); box-shadow: 0 0 0 3px rgba(47,111,174,.1); background: #fff;
}
.fg textarea { resize: vertical; min-height: 105px; }
.cfnote { font-size: .73rem; color: var(--gray); text-align: center; margin-top: 10px; line-height: 1.55; }

/* ══════════════════════════════════════════════
   TOUR DETAIL PAGE
══════════════════════════════════════════════ */
.tdhero { background: linear-gradient(160deg, var(--azul-xdk), #193352); padding: calc(var(--hh)+38px) 0 0; color: #fff; }
.tdbc { font-size: .79rem; color: rgba(255,255,255,.6); margin-bottom: 13px; }
.tdbc span { color: rgba(255,255,255,.3); margin: 0 8px; }
.tdbc a { color: rgba(255,255,255,.6); cursor: pointer; transition: color var(--t); }
.tdbc a:hover { color: var(--gold); }
.tdmeta { display: flex; gap: 22px; flex-wrap: wrap; margin: 14px 0 28px; }
.tdmeta span { display: flex; align-items: center; gap: 6px; font-size: .87rem; color: rgba(255,255,255,.8); }
.tdmeta .gd { color: var(--gold); font-weight: 700; }
.tgal { border-radius: var(--r) var(--r) 0 0; overflow: hidden; position: relative; }
.tgmain { aspect-ratio: 16/9; overflow: hidden; }
.tgmain img { width: 100%; height: 100%; object-fit: cover; transition: opacity .24s; }
.tgthumbs { display: flex; gap: 7px; padding: 8px; background: rgba(0,0,0,.35); overflow-x: auto; }
.tgth {
  width: 78px; height: 54px; border-radius: 6px; overflow: hidden;
  cursor: pointer; opacity: .6; transition: all .22s;
  border: 2.5px solid transparent; flex-shrink: 0;
}
.tgth:hover, .tgth.on { opacity: 1; border-color: var(--gold); }
.tgth img { width: 100%; height: 100%; object-fit: cover; }
.garr {
  position: absolute; top: 46%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--azul-dk);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: var(--sh2); cursor: pointer; transition: all var(--t); z-index: 5;
}
.garr:hover { background: var(--gold); }
.garr.prev { left: 16px; }
.garr.nxt { right: 16px; }
.tlay { display: grid; grid-template-columns: 1fr 350px; gap: 36px; padding: 60px 0; }
.tsec { background: #fff; border-radius: var(--r); padding: 34px; box-shadow: var(--sh1); margin-bottom: 24px; }
.tsec h2 { font-family: var(--ft); color: var(--azul-dk); font-size: 1.35rem; margin-bottom: 18px; }
.tsec p { color: var(--gray); line-height: 1.88; margin-bottom: 14px; }
.tsec p:last-child { margin-bottom: 0; }
.tinc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tic h3 { font-family: var(--ft); font-size: .95rem; margin-bottom: 14px; }
.tic.yes h3 { color: var(--green); }
.tic.no h3 { color: #EF4444; }
.til { display: flex; flex-direction: column; gap: 8px; }
.tii { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--dark); line-height: 1.5; }
.tii .ck { flex-shrink: 0; font-size: .95rem; }
.tic.yes .ck { color: var(--green); }
.tic.no .ck { color: #EF4444; }
.itin { position: relative; padding-left: 28px; }
.itin::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--azul));
}
.iday { position: relative; margin-bottom: 30px; }
.iday::before {
  content: ''; position: absolute; left: -24px; top: 4px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold); border: 2px solid #fff; box-shadow: 0 0 0 3px var(--gold);
}
.iday h4 { font-family: var(--ft); font-size: .92rem; color: var(--azul-dk); margin-bottom: 6px; }
.iday p { font-size: .85rem; color: var(--gray); line-height: 1.65; }
.tside { position: sticky; top: calc(var(--hh) + 18px); background: #fff; border-radius: var(--r); box-shadow: var(--sh2); overflow: hidden; }
.tsdt { padding: 26px; background: var(--azul-dk); color: #fff; }
.tsdp { font-family: var(--ft); font-size: 2.1rem; color: var(--gold); font-weight: 700; }
.tsdp .us { font-size: .9rem; color: rgba(255,255,255,.65); }
.tsdb { padding: 22px; }
.tsdm { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.tsdi { display: flex; justify-content: space-between; font-size: .84rem; border-bottom: 1px solid #F3F4F6; padding-bottom: 9px; }
.tsdi .k { color: var(--gray); }
.tsdi .v { color: var(--azul-dk); font-weight: 600; }

/* ══════════════════════════════════════════════
   DESTINO DETAIL
══════════════════════════════════════════════ */
.dethero { position: relative; height: 56vh; min-height: 400px; display: flex; align-items: flex-end; }
.dethero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dethero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,40,64,.92) 0%, rgba(19,40,64,.18) 65%); }
.dethero .dhc { position: relative; z-index: 2; padding-bottom: 40px; color: #fff; }

/* ══════════════════════════════════════════════
   BLOG POST
══════════════════════════════════════════════ */
.bphero { background: var(--azul-xdk); padding-top: var(--hh); }
.bpart { background: #fff; border-radius: var(--r); padding: 44px; box-shadow: var(--sh1); max-width: 860px; margin: 44px auto 60px; }
.bpart h2 { font-family: var(--ft); color: var(--azul-dk); font-size: 1.32rem; margin: 28px 0 12px; }
.bpart p { color: var(--gray); line-height: 1.9; margin-bottom: 16px; }
.bpart ul { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 7px; }
.bpart ul li { font-size: .9rem; color: var(--gray); list-style: disc; }
.bpart .tip { background: rgba(47,111,174,.07); border-left: 3px solid var(--azul); padding: 14px 18px; border-radius: 0 var(--r2) var(--r2) 0; margin: 22px 0; }
.bpart .tip strong { color: var(--azul-dk); }

/* ══════════════════════════════════════════════
   FOOTER  — WP: footer.php
══════════════════════════════════════════════ */
#ftr { background: #091520; color: rgba(255,255,255,.72); padding: 80px 0 0; }
.fgrid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.6fr; gap: 48px; padding-bottom: 60px; }
.fbr p { font-size: .86rem; line-height: 1.75; max-width: 280px; margin-top: 14px; color: rgba(255,255,255,.6); }
.fsoc { display: flex; gap: 9px; margin-top: 22px; }
.fsoc a {
  width: 38px; height: 38px; border-radius: 11px;
  border: 1px solid rgba(255,255,255,.13);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.58); font-size: .95rem; transition: all var(--t);
}
.fsoc a:hover { border-color: var(--gold); color: var(--gold); background: rgba(242,197,0,.08); }
.fcol h4 {
  font-family: var(--ft); font-size: .87rem; color: #fff; margin-bottom: 20px; letter-spacing: .08em;
}
.fcol h4::after { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); margin-top: 8px; }
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flinks a { font-size: .84rem; transition: color var(--t); cursor: pointer; color: rgba(255,255,255,.65); }
.flinks a:hover { color: var(--gold); padding-left: 4px; }
.fci { display: flex; gap: 10px; font-size: .84rem; margin-bottom: 11px; align-items: flex-start; color: rgba(255,255,255,.68); }
.fci span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.fci a { color: rgba(255,255,255,.68); transition: color var(--t); word-break: break-word; }
.fci a:hover { color: var(--gold); }
.fbot {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.fbot p { font-size: .78rem; color: rgba(255,255,255,.38); }
.flnk { display: flex; gap: 20px; }
.flnk a { font-size: .77rem; color: rgba(255,255,255,.35); transition: color var(--t); cursor: pointer; }
.flnk a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.waf {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.55rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.52);
  transition: all var(--t); animation: wap 2.5s ease-in-out infinite;
}
.waf:hover { transform: scale(1.14); box-shadow: 0 12px 44px rgba(37,211,102,.65); }
@keyframes wap {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,.52); }
  50% { box-shadow: 0 8px 52px rgba(37,211,102,.72), 0 0 0 12px rgba(37,211,102,.1); }
}
.wat {
  position: absolute; right: 68px; white-space: nowrap;
  background: #091520; color: #fff; font-size: .79rem; font-weight: 600;
  padding: 6px 13px; border-radius: 20px;
  opacity: 0; pointer-events: none; transform: translateX(8px); transition: all var(--t);
}
.waf:hover .wat { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════
   MISC: PAGE HEADERS, BREADCRUMBS, TEAM
══════════════════════════════════════════════ */
.page-header {
  padding: calc(var(--hh)+42px) 0 52px;
  background: linear-gradient(160deg, var(--azul-xdk), #193352);
  color: #fff;
}
.page-header .brcr { font-size: .79rem; color: rgba(255,255,255,.6); margin-bottom: 13px; }
.page-header .brcr a { color: rgba(255,255,255,.6); cursor: pointer; transition: color var(--t); }
.page-header .brcr a:hover { color: var(--gold); }
.page-header .brcr .sep { color: rgba(255,255,255,.3); margin: 0 8px; }
.page-header .brcr .cur { color: var(--gold); }
.page-header h1 { font-family: var(--ft); font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.15; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.75); max-width: 560px; font-size: .98rem; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh1); text-align: center; padding: 30px 22px; transition: all var(--t); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh2); }
.team-card img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); margin: 0 auto 16px; }
.team-card h4 { font-family: var(--ft); color: var(--azul-dk); font-size: 1rem; margin-bottom: 5px; }
.team-card .role { font-size: .8rem; color: var(--gold); font-weight: 700; margin-bottom: 9px; }
.team-card p { font-size: .83rem; color: var(--gray); line-height: 1.6; }
.info-box { background: #fff; border-radius: var(--r); padding: 34px; box-shadow: var(--sh1); margin-bottom: 22px; }
.info-box h3 { font-family: var(--ft); color: var(--azul-dk); font-size: 1.25rem; margin-bottom: 16px; }
.info-box p { color: var(--gray); line-height: 1.88; margin-bottom: 14px; }
.legal-doc-box { background: var(--bg); border-radius: var(--r); padding: 24px; box-shadow: var(--sh1); margin-bottom: 22px; }
.legal-doc-box h2 { font-family: var(--ft); color: var(--azul-dk); font-size: 1.15rem; margin: 22px 0 10px; }
.legal-doc-box h2:first-child { margin-top: 0; }
.legal-doc-box p { color: var(--gray); line-height: 1.88; margin-bottom: 14px; font-size: .9rem; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width:1100px) {
  .tgrid { grid-template-columns: repeat(2,1fr); }
  .bgrid { grid-template-columns: repeat(2,1fr); }
  .dgrid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dcard:nth-child(1) { grid-column: span 2; min-height: 300px; }
  .fgrid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .lgrid { grid-template-columns: repeat(2,1fr); }
  .ngrid { grid-template-columns: 1fr; gap: 40px; }
  .nimg { max-width: 460px; margin: 0 auto; }
  .nib { right: 0; }
  .tlay { grid-template-columns: 1fr; }
  .tside { position: static; }
  .cgrd { grid-template-columns: 1fr; }
  .cgrid { grid-template-columns: 1fr; }
  .tinc { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  :root { --hh: 66px; }
  .mnav, .hsoc, .lsw, .btn-rsv { display: none; }
  .hbg { display: flex; }
  .tgrid, .bgrid, .testgrid, .team-grid { grid-template-columns: 1fr; }
  .dgrid { grid-template-columns: 1fr; }
  .dcard:nth-child(1) { grid-column: span 1; }
  .nvals { grid-template-columns: 1fr; }
  .hst + .hst { border-left: none; padding-left: 0; }
  .hstats { gap: 16px; }
  .fgrid { grid-template-columns: 1fr; }
  .fbot { flex-direction: column; text-align: center; }
  .lgrid { grid-template-columns: 1fr 1fr; }
  .sp { padding: 68px 0; }
  .fgd { grid-template-columns: 1fr; }
  .fg.full { grid-column: span 1; }
  .bpart { padding: 24px 20px; }
}
@media (max-width:480px) {
  .hctas { flex-direction: column; align-items: center; }
  .lgrid { grid-template-columns: 1fr; }
  .cfw { padding: 24px 18px; }
  .hst .n { font-size: 1.6rem; }
  .hst { padding: 0 20px; }
}
