/* ============================================================
   IVARKARIMA EXPEDICIONES — Hoja de estilos principal
   ============================================================ */

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

:root {
  /* Marca */
  --bg:        #0B1410;
  --bg-alt:    #0E1F16;
  --cream:     #F5EDD5;
  --cream-2:   #EDE3C4;
  --ink:       #23201A;
  --dimmed:    rgba(245, 237, 213, 0.72);
  --dimmed-ink: rgba(35, 32, 26, 0.68);
  --y:  #FFCC00;
  --r:  #CF1A2C;
  --b:  #0090D4;
  --g:  #0E7A45;
  --earth: #3A2E22;

  --serif: 'Fraunces', serif;
  --sans: 'Inter', sans-serif;

  --section-py: clamp(64px, 9vw, 120px);
  --container: 1180px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--r);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.2s ease;
  font-size: 0.85rem;
}
.skip-link:focus { top: 12px; }

/* Franja de bandera */
.flag-stripe {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  display: flex;
  z-index: 300;
}
.flag-stripe em { flex: 1; font-style: normal; }
.flag-stripe .y { background: var(--y); }
.flag-stripe .b { background: var(--b); }
.flag-stripe .r { background: var(--r); }

.mini-flag {
  display: flex;
  width: 84px;
  height: 2px;
  border-radius: 1px;
  overflow: hidden;
}
.mini-flag em { flex: 1; font-style: normal; }
.mini-flag .y { background: var(--y); }
.mini-flag .b { background: var(--b); }
.mini-flag .r { background: var(--r); }

/* ── Tipografía general de sección ─────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 18px;
}
.section-dark .eyebrow { color: var(--y); }
.section-light .eyebrow { color: var(--g); }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--y); }
.section-light .section-title em { color: var(--r); }

.section-subtitle {
  max-width: 640px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--dimmed);
}
.section-light .section-subtitle { color: var(--dimmed-ink); }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.align-left { margin: 0 0 48px; text-align: left; }

.section-dark { background: var(--bg); color: var(--cream); }
.section-alt  { background: var(--bg-alt); color: var(--cream); }
.section-light { background: var(--cream); color: var(--ink); }

section[id] { scroll-margin-top: 84px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 4px; left: 0; right: 0;
  z-index: 200;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 20, 16, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  padding: 8px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  height: 46px;
  width: auto;
  transition: height 0.3s ease;
}
.site-header.is-scrolled .brand img { height: 38px; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links {
  display: flex;
  gap: 26px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dimmed);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--cream); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--y);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(245,237,213,0.25);
  border-radius: 20px;
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  border: none;
  color: var(--dimmed);
  padding: 6px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lang-switch button.is-active {
  background: var(--y);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,0.4); }
.btn-primary {
  background: var(--r);
  color: #fff;
  box-shadow: 0 6px 20px rgba(207,26,44,0.3);
}
.btn-primary:hover { background: #a91423; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,237,213,0.45);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(245,237,213,0.08); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(35,32,26,0.35);
}
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(35,32,26,0.06); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-side .btn-whatsapp span { display: none; }
  .nav-side .btn-whatsapp { padding: 10px; }
  .nav-side { gap: 10px; }
}

@media (max-width: 480px) {
  .brand-name { display: none; }
  .lang-switch button { padding: 6px 9px; }

  .mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 84vw);
    height: 100vh;
    background: var(--bg-alt);
    box-shadow: -12px 0 40px rgba(0,0,0,0.4);
    padding: 100px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 190;
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu a {
    text-decoration: none;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.25rem;
  }
  .mobile-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 180;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-backdrop.is-open { opacity: 1; pointer-events: auto; }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-backdrop { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: -5%;
  background-image: url('../assets/img/roraima.jpg');
  background-size: cover;
  background-position: center 35%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(11,20,16,0.15) 0%, rgba(11,20,16,0.55) 62%, rgba(11,20,16,0.9) 100%),
    linear-gradient(to bottom, rgba(11,20,16,0.8) 0%, rgba(11,20,16,0.05) 24%, rgba(11,20,16,0.05) 68%, rgba(11,20,16,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,237,213,0.1);
  border: 1px solid rgba(245,237,213,0.25);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 26px;
}
.hero-badge .star { color: var(--y); }
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--y); }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--dimmed);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--dimmed);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.scroll-cue .line {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--y), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: linear-gradient(120deg, var(--g), #0a5533);
  padding: 44px 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-value {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: var(--y);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(245,237,213,0.88);
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text p { margin-bottom: 18px; color: var(--dimmed-ink); }
.about-quote {
  margin: 28px 0;
  padding: 26px 28px;
  background: var(--ink);
  color: var(--cream);
  border-left: 4px solid var(--y);
  border-radius: 2px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(14,122,69,0.1);
  border: 1px solid rgba(14,122,69,0.3);
  color: var(--g);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Placeholder de foto (reutilizable) ─────────────────── */
.photo-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 220px;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #16261C, #0E1811);
  border: 1.5px dashed rgba(245,237,213,0.28);
  border-radius: 10px;
  color: rgba(245,237,213,0.55);
  text-align: center;
  padding: 20px;
}
.section-light .photo-placeholder {
  background:
    repeating-linear-gradient(135deg, rgba(35,32,26,0.03) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #E9DEBC, #EFE6C8);
  border-color: rgba(35,32,26,0.25);
  color: rgba(35,32,26,0.55);
}
.photo-placeholder svg { width: 30px; height: 30px; opacity: 0.7; }
.photo-placeholder span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  max-width: 220px;
}
.about-photo.photo-placeholder { aspect-ratio: 4/5; min-height: 320px; }

/* ============================================================
   EXPEDICIONES / TOURS
   ============================================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.tour-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid rgba(245,237,213,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,204,0,0.35);
  box-shadow: 0 20px 44px rgba(0,0,0,0.35);
}
.tour-card.is-featured { border-color: rgba(207,26,44,0.4); }
.tour-media {
  position: relative;
  aspect-ratio: 16/10;
}
.tour-number {
  position: absolute;
  top: 16px; left: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(11,20,16,0.75);
  border: 1px solid rgba(255,204,0,0.5);
  color: var(--y);
  font-family: var(--serif);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.tour-duration {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  background: rgba(11,20,16,0.75);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.tour-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.tour-desc {
  color: var(--dimmed);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.tour-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.tour-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--dimmed);
}
.tour-includes svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--g);
}
.tour-cta { margin-top: auto; }

.tours-custom-banner {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 36px;
  background: linear-gradient(120deg, rgba(207,26,44,0.14), rgba(255,204,0,0.08));
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 14px;
}
.tours-custom-banner h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.tours-custom-banner p { color: var(--dimmed); font-size: 0.92rem; }

/* ============================================================
   DESTINOS
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  isolation: isolate;
}
.dest-card img, .dest-card .photo-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,20,16,0.92) 0%, rgba(11,20,16,0.15) 55%, transparent 80%);
  z-index: 1;
}
.dest-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 22px 20px;
}
.dest-caption h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--cream);
}
.dest-caption p {
  font-size: 0.82rem;
  color: var(--dimmed);
}
@media (max-width: 860px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .destinations-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALERÍA
   ============================================================ */
.gallery-grid {
  columns: 4 260px;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: none;
  display: block;
  width: 100%;
  background: none;
}
.gallery-item img, .gallery-item .photo-placeholder {
  width: 100%;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .photo-placeholder { aspect-ratio: 1/1; min-height: 0; }
.gallery-item:nth-child(3n+1) .photo-placeholder,
.gallery-item:nth-child(3n+1) img { aspect-ratio: 3/4; }
.gallery-item:nth-child(4n+2) .photo-placeholder,
.gallery-item:nth-child(4n+2) img { aspect-ratio: 1/1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(6,10,8,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 900px; max-height: 82vh; text-align: center; }
.lightbox-content img { max-height: 82vh; margin: 0 auto; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: rgba(245,237,213,0.1);
  border: 1px solid rgba(245,237,213,0.3);
  color: var(--cream);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-caption { color: var(--dimmed); margin-top: 14px; font-size: 0.88rem; }

/* ============================================================
   POR QUÉ ELEGIRNOS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-item {
  padding: 30px 26px;
  background: var(--bg-alt);
  border: 1px solid rgba(245,237,213,0.08);
  border-radius: 12px;
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,204,0,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; fill: var(--y); }
.why-item h3 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 8px; color: var(--cream); }
.why-item p { font-size: 0.88rem; color: var(--dimmed); }
@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials-track-wrap { position: relative; }
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 min(380px, 84vw);
  background: rgba(245,237,213,0.06);
  border: 1px solid rgba(245,237,213,0.14);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: var(--y); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--y), var(--r));
  color: #1a1108;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-origin { font-size: 0.78rem; color: var(--dimmed); }
.testimonial-tag {
  align-self: flex-start;
  margin-bottom: 14px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--y);
  background: rgba(255,204,0,0.12);
  padding: 4px 10px;
  border-radius: 20px;
}
.testimonials-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}
.tnav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(245,237,213,0.08);
  border: 1px solid rgba(245,237,213,0.25);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.tnav-btn:hover { background: rgba(255,204,0,0.18); border-color: var(--y); }
.tnav-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(35,32,26,0.15);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--g);
  color: var(--g);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: '';
  position: absolute;
  background: var(--g);
}
.faq-question .plus::before { width: 11px; height: 1.6px; }
.faq-question .plus::after { width: 1.6px; height: 11px; transition: transform 0.3s ease; }
.faq-item.is-open .faq-question .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-item.is-open .faq-question .plus { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer p {
  padding: 0 34px 22px 4px;
  color: var(--dimmed-ink);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--dimmed); }
.field input, .field select, .field textarea {
  background: rgba(245,237,213,0.06);
  border: 1px solid rgba(245,237,213,0.22);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.92rem;
}
.field select option { color: #111; }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,237,213,0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--y);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.76rem; color: rgba(245,237,213,0.5); }
.form-status { font-size: 0.85rem; }
.form-status[data-state="success"] { color: #6fdc9c; }
.form-status[data-state="error"] { color: #ff9d9d; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(245,237,213,0.05);
  border: 1px solid rgba(245,237,213,0.12);
  border-radius: 10px;
}
.info-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,204,0,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; fill: var(--y); }
.info-card h4 { font-size: 0.92rem; margin-bottom: 4px; }
.info-card a, .info-card p { font-size: 0.88rem; color: var(--dimmed); text-decoration: none; }
.info-card a:hover { color: var(--cream); }

.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245,237,213,0.25);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.social-links a svg { width: 18px; height: 18px; fill: var(--cream); }
.social-links a:hover { border-color: var(--y); background: rgba(255,204,0,0.1); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #070C09;
  padding: 56px 0 26px;
  border-top: 1px solid rgba(245,237,213,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { height: 44px; }
.footer-brand p { color: var(--dimmed); font-size: 0.88rem; max-width: 320px; }
.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--dimmed); font-size: 0.88rem; }
.footer-col a:hover { color: var(--cream); }
.footer-legal {
  border-top: 1px solid rgba(245,237,213,0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.76rem;
  color: rgba(245,237,213,0.45);
}
.footer-legal a { color: rgba(245,237,213,0.45); text-decoration: none; }
.footer-legal a:hover { color: var(--cream); }
.footer-credit { text-align: center; margin-top: 18px; font-size: 0.72rem; color: rgba(245,237,213,0.3); }
.footer-credit a { color: rgba(245,237,213,0.5); text-decoration: none; }
.footer-credit a:hover { color: var(--cream); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 250;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: floatPulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: floatRing 2.6s ease-out infinite;
}
@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes floatRing {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.8); }
}
@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ============================================================
   PÁGINAS LEGALES (privacy.html / terms.html)
   ============================================================ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 24px 100px;
  color: var(--cream);
}
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}
.legal-page .updated { color: var(--dimmed); font-size: 0.85rem; margin-bottom: 40px; }
.legal-page h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 36px 0 12px;
  color: var(--y);
}
.legal-page p, .legal-page li { color: var(--dimmed); font-size: 0.95rem; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; list-style: disc; }
.legal-page a { color: var(--b); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--y);
  text-decoration: none;
  font-size: 0.85rem;
}

/* ============================================================
   GENERALES DE SECCIÓN / RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
  .tours-grid, .why-grid { gap: 20px; }
  .gallery-grid { columns: 2 200px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
