﻿/* ===== HEADER ===== */
/* ===== HEADER BASE - Una sola fila ===== */
.header-premium {
  position: relative;
  width: 100%;
  z-index: 100;
  font-family: 'Poppins', sans-serif;
  background: var(--blanco);
  border-bottom: 1px solid var(--gris-borde);
  box-shadow: 0 3px 0 0 var(--lima-musgo);
}

.header-inner {
  max-width: var(--site-max-width, 1400px);
  margin: 0 auto;
  padding: 20px var(--site-gutter-x, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
}

/* ===== LOGO - Protagonista (logo.png en la raíz del sitio) ===== */
.header-logo {
  flex-shrink: 0;
  margin-right: 12px;
  display: block;
}

.header-logo img {
  width: clamp(175px, 15vw, 240px);
  height: auto;
  max-width: none;
  display: block;
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.04);
}

/* GTranslate language widget (flags) */
.header-cta-stack {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-cta-stack .header-cta {
  padding: 8px 16px;
  font-size: 12px;
  box-shadow: 0 2px 10px rgba(102, 112, 38, 0.22);
}

.header-cta-stack .header-cta:hover {
  box-shadow: 0 4px 14px rgba(102, 112, 38, 0.32);
}

.header-lang-widget {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 5px 8px 4px;
  border: 1px solid #d5dbd0;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  min-width: 0;
}

.header-lang-widget-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--verde-main);
  white-space: nowrap;
}

.header-lang-widget .gtranslate_wrapper {
  display: flex;
  align-items: center;
  min-height: 14px;
  line-height: 1;
  width: 100%;
}

.header-lang-widget .gtranslate_wrapper > * {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.header-lang-widget .gtranslate_wrapper a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 6px !important;
  border: none !important;
  background: transparent !important;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-lang-widget .gtranslate_wrapper a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-lang-widget .gtranslate_wrapper img {
  display: block !important;
  width: auto !important;
  height: 14px !important;
  max-height: 14px !important;
  border-radius: 1px !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.header-lang-widget .gtranslate_wrapper .gt_languages {
  display: flex !important;
  flex-direction: row !important;
  gap: 0 !important;
}

.header-lang-widget .gtranslate_wrapper a:first-child {
  margin-left: 0 !important;
}

.header-lang-widget .gtranslate_wrapper a:last-child {
  margin-right: 0 !important;
}

/* ===== NAV - Centro ===== */
.nav-main {
  display: flex;
  gap: 36px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gris-texto);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--verde-main);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--verde-main);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== ACTIONS - Derecha ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-premium .btn-cta,
.header-premium .header-cta {
  padding: 12px 28px;
  background: var(--naranja);
  color: var(--blanco);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 16px rgba(102,112,38,0.3);
  transition: all 0.25s ease;
}

.header-premium .btn-cta:hover,
.header-premium .header-cta:hover {
  background: var(--naranja-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102,112,38,0.4);
}

/* ===== HAMBURGER ===== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--gris-suave);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hamburger-btn:hover {
  background: var(--beige);
}

.hamburger-btn span {
  width: 20px;
  height: 2px;
  background: var(--gris-texto);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn:hover span {
  background: var(--verde-main);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 999;
}

.mobile-menu:not(.hidden) {
  display: flex;
  animation: menuFadeIn 0.3s ease;
}

@keyframes menuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu .nav-link {
  font-size: 20px;
  font-weight: 500;
  padding: 14px 24px;
}

.mobile-menu .btn-cta {
  margin-top: 24px;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--gris-suave);
  border-radius: 12px;
  font-size: 24px;
  line-height: 1;
  color: var(--gris-texto);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-menu .close-btn:hover {
  background: var(--beige);
  color: var(--verde-main);
}

.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .header-inner { padding-top: 18px; padding-bottom: 18px; gap: 28px; }
  .nav-main { gap: 28px; }
}

@media (max-width: 1024px) {
  .nav-main { display: none; }
  .hamburger-btn { display: flex; }
  .header-inner { padding-top: 18px; padding-bottom: 18px; }
}

@media (max-width: 768px) {
  .header-inner { padding-top: 16px; padding-bottom: 16px; gap: 16px; }
  .header-logo img { width: clamp(160px, 40vw, 205px); }
}

@media (max-width: 640px) {
  .header-inner { padding-top: 14px; padding-bottom: 14px; }
  .header-logo img { width: clamp(148px, 46vw, 195px); }
  .header-cta-stack .header-cta {
    display: none;
  }
  .header-lang-widget {
    padding: 4px 7px 3px;
    border-radius: 8px;
    gap: 2px;
  }
  .header-lang-widget-label {
    font-size: 7px;
    letter-spacing: 0.05em;
  }
  .header-lang-widget .gtranslate_wrapper img {
    height: 12px !important;
    max-height: 12px !important;
  }
  .mobile-menu .btn-cta { display: inline-block; }
}

/* ===== HERO ===== */
.hero-full {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* BACKGROUND VIDEO + Ken Burns */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 28s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

/* OVERLAY: capas bosque + oliva + toque lima (marca muy visible) */
.hero-overlay {
  /*
    Colores fijos de marca (RGB de #3E4F22 y #667026) para que el verde
    no se apague sobre el vídeo.
  */
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 65% at 15% 45%, rgba(164,179,76,0.22) 0%, transparent 52%),
    linear-gradient(
      100deg,
      rgba(62,79,34,0.78) 0%,
      rgba(102,112,38,0.62) 38%,
      rgba(62,79,34,0.42) 68%,
      rgba(25,35,18,0.2) 100%
    );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(62,79,34,0.35) 100%);
  pointer-events: none;
}

/* CONTENT - ancho heredado de base.js */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 640px;
}

.hero-content [class^="hero-anim"] {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.25s; }
.hero-anim-3 { animation-delay: 0.4s; }
.hero-anim-4 { animation-delay: 0.55s; }
.hero-anim-5 { animation-delay: 0.7s; }
.hero-anim-6 { animation-delay: 0.85s; }
.hero-anim-7 { animation-delay: 1s; }

.hero-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--lima-musgo);
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.92;
}

/* SOCIAL PROOF */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.92;
}

.hero-stars {
  color: var(--lima-musgo);
  font-size: 14px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--naranja);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* SEARCH BAR */
.hero-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  max-width: 760px;
}

.hero-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
}

.hero-field label {
  font-size: 11px;
  color: var(--gris-claro);
  margin-bottom: 2px;
}

.hero-field input,
.hero-field select {
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--gris-texto);
  font-weight: 500;
}

.hero-divider {
  width: 1px;
  height: 36px;
  background: var(--gris-borde);
}

.hero-search button {
  background: var(--naranja);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-search button:hover {
  transform: translateY(-2px);
}

/* SCROLL INDICATOR */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 4px;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 1024px) {
  .hero-scroll { display: none; }
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TABLET y móvil: evitar recorte de contenido */
@media (max-width: 1024px) {
  .hero-full {
    min-height: auto;
    padding: 48px 0 80px;
    align-items: flex-start;
    overflow: visible;
  }


  .hero-title { font-size: 40px; }
  .hero-text { font-size: 17px; }
}

@media (max-width: 900px) {
  .hero-title { font-size: 38px; }
  .hero-text { font-size: 16px; }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 22px;
  }

  .hero-text {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .hero-proof {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 16px;
    padding: 14px;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  }

  .hero-divider {
    display: none;
  }

  .hero-field {
    width: 100%;
    padding: 6px 0;
  }

  .hero-field label {
    font-size: 10px;
  }

  .hero-field input,
  .hero-field select {
    font-size: 15px;
  }

  .hero-search button {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .hero-full { padding: 32px 0 60px; }
  .hero-tagline { margin-bottom: 16px; }
  .hero-title { font-size: 30px; margin-bottom: 22px; }
  .hero-text { font-size: 16px; margin-bottom: 24px; }
  .hero-proof { margin-bottom: 24px; }
}

/* ===== TRUST ===== */
.trust-section {
  background: var(--blanco);
  padding: 60px 20px;
  border-top: 1px solid var(--gris-borde);
  border-bottom: 1px solid var(--gris-borde);
}

.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

/* === HEADER === */
.trust-header {
  margin-bottom: 40px;
  max-width: 640px;
}
.trust-header .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--verde-dark);
  margin-bottom: 12px;
}
.trust-header .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--naranja);
  margin-top: 14px;
  opacity: 0.9;
}

/* === STATS === */
.trust-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-stat {
  text-align: center;
}

.trust-stat strong {
  display: block;
  font-size: 26px;
  color: var(--verde-dark);
}

.trust-stat span {
  font-size: 13px;
  color: var(--gris-secundario);
}

/* === RATING === */
.trust-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--verde-dark);
}

.trust-stars {
  color: var(--naranja);
  letter-spacing: 2px;
}

/* === LOGOS === */
.trust-logos {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gris-borde);
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gris-claro);
  text-decoration: none;
  transition: all 0.3s ease;
}

.trust-logo:hover {
  color: var(--verde-main);
}

.trust-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ===== PRESENTATION ===== */
.presentation-section {
  background: var(--blanco);
  padding: 100px 0 120px;
  position: relative;
}

.presentation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: var(--lima-musgo);
  opacity: 0.85;
}

.presentation-inner {
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .presentation-inner {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* CONTENT */
.presentation-content {
  max-width: 560px;
}

.presentation-subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde-main);
  margin-bottom: 14px;
}

.presentation-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--verde-dark);
  margin-bottom: 22px;
  line-height: 1.2;
}

.presentation-title span {
  color: var(--naranja);
}

.presentation-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gris-texto);
  margin-bottom: 20px;
}

.presentation-text:last-of-type {
  margin-bottom: 28px;
}

/* CTA */
.presentation-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.presentation-btn {
  background: var(--verde-dark);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.presentation-btn:hover {
  transform: translateY(-3px);
}

.presentation-link {
  font-size: 14px;
  color: var(--naranja);
  font-weight: 600;
}

/* IMAGES - Layout limpio: una imagen principal + acento */
.presentation-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 520px;
  margin-left: auto;
}

.presentation-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.presentation-img-main-wrap {
  aspect-ratio: 4/3;
}

.presentation-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.presentation-img-main-wrap:hover .presentation-img-main {
  transform: scale(1.03);
}

.presentation-img-secondary-wrap {
  aspect-ratio: 16/9;
}

.presentation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.presentation-img-wrap:hover .presentation-img {
  transform: scale(1.03);
}

/* Decoración de fondo */
.presentation-imgs::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--beige);
  top: -24px;
  left: -24px;
  border-radius: 24px;
  z-index: -1;
}

@media (max-width: 768px) {
  .presentation-imgs {
    max-width: 100%;
    margin-left: 0;
    gap: 16px;
  }

  .presentation-img-main-wrap {
    aspect-ratio: 16/10;
  }

  .presentation-img-secondary-wrap {
    aspect-ratio: 16/9;
  }

  .presentation-title {
    font-size: 30px;
  }
}

/* ===== CATEGORIES ===== */
.categories-section { 
  background: var(--blanco); 
  padding: 100px 0 90px;
}

/* Títulos heredan de base.js (section-header, section-title, section-subtitle) */

.categories-carousel-wrap { position: relative; }

.categories-carousel { 
  display: flex; 
  gap: 20px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth; 
  padding-bottom: 60px; 
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.categories-carousel::-webkit-scrollbar { display: none; }

.category-card { 
  flex: 0 0 320px; 
  min-width: 320px; 
  height: 420px; 
  border-radius: 18px; 
  overflow: hidden; 
  text-decoration: none; 
  color: #fff; 
  position: relative; 
  scroll-snap-align: start; 
  transition: transform 0.3s ease; 
}

.category-card:hover { transform: scale(1.02); }

.category-card-bg { 
  position: absolute; 
  inset: 0; 
  background-size: cover; 
  background-position: center; 
  transition: transform 0.5s ease; 
}

.category-card:hover .category-card-bg { transform: scale(1.05); }

.category-card-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 45%, transparent 70%); 
}

.category-card-content { 
  position: relative; 
  z-index: 2; 
  height: 100%; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end; 
  padding: 24px; 
}

.category-badge { 
  display: inline-block; 
  align-self: flex-start; 
  padding: 6px 14px; 
  border-radius: 999px; 
  font-family: 'Poppins', sans-serif; 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--verde); 
  background: var(--beige); 
  margin-bottom: 12px; 
}

.category-card-content h3 { 
  font-family: 'Poppins', sans-serif; 
  font-size: 28px; 
  font-weight: 700; 
  color: #fff; 
  margin-bottom: 10px; 
  line-height: 1.2; 
}

.category-card-content p { 
  font-size: 14px; 
  color: rgba(255,255,255,0.95); 
  line-height: 1.5; 
  margin-bottom: 20px; 
}

.category-btn { 
  display: inline-block; 
  align-self: flex-start; 
  padding: 12px 24px; 
  border-radius: 999px; 
  font-family: 'Poppins', sans-serif; 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--verde); 
  background: var(--beige); 
  transition: all 0.2s ease; 
}

.category-card:hover .category-btn { 
  background: var(--blanco); 
  color: var(--verde); 
}

.categories-carousel-nav { 
  position: absolute; 
  bottom: 0; 
  right: 0; 
  display: flex; 
  gap: 8px; 
}

.carousel-btn { 
  width: 44px; 
  height: 44px; 
  border-radius: 50%; 
  border: none; 
  background: var(--beige); 
  color: var(--verde); 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.2s ease; 
}

.carousel-btn:hover { 
  background: var(--verde); 
  color: #fff; 
}

.carousel-btn svg { 
  width: 20px; 
  height: 20px; 
}

@media (min-width: 640px) { 
  .category-card { flex: 0 0 380px; min-width: 380px; height: 420px; } 
}

@media (min-width: 1024px) { 
  .category-card { flex: 0 0 400px; min-width: 400px; height: 420px; } 
}

/* ===== EXPERIENCES ===== */
.experiences-section {
  background: var(--beige);
  padding: 80px 0;
}

/* HEADER */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--verde-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 520px;
}

.section-view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--naranja);
  text-decoration: none;
}

/* GRID */
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .experiences-grid { grid-template-columns: repeat(4, 1fr); }
}

.packages-section .experiences-grid {
  gap: 30px;
}

@media (min-width: 768px) {
  .packages-section .experiences-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .packages-section .experiences-grid { grid-template-columns: repeat(3, 1fr); }
}

/* CARD */
.experience-card {
  background: var(--blanco);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

/* IMAGE */
.experience-img-wrap {
  position: relative;
  overflow: hidden;
}

.experience-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.experience-card:hover .experience-img {
  transform: scale(1.08);
}

/* DAYS */
.experience-days {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
}

/* BADGE */
.experience-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--naranja);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* HEART */
.experience-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* CONTENT */
.experience-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.experience-content h3 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--verde-dark);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.experience-desc {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}

/* ⭐ RATING */
.experience-rating {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}

.experience-stars {
  color: var(--lima-musgo);
  font-size: 13px;
}

/* TAGS */
.experience-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.experience-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gris-suave);
  color: var(--gris);
}

/* FOOTER */
.experience-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* PRICE */
.experience-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--verde-dark);
}

.experience-price small {
  display: block;
  font-size: 12px;
  color: #777;
}

/* BUTTON */
.experience-btn {
  background: var(--verde-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.experience-card:hover .experience-btn {
  background: var(--naranja);
}

/* ===== PACKAGES ===== */
.packages-section {
  background: var(--blanco);
  padding: 100px 0;
}

/* === GRID === */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === CARD === */
.package-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background: var(--blanco);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* === IMAGE === */
.package-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}

.package-card:hover .package-img {
  transform: scale(1.06);
}

/* OVERLAY PREMIUM */
.package-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(62,79,34,0.75) 0%,
    rgba(0,0,0,0.2) 50%,
    transparent 100%
  );
}

/* BADGES */
.package-days {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.package-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--naranja);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(102,112,38,0.4);
}

/* === CONTENT === */
.package-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.package-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--verde-dark);
  line-height: 1.4;
}

.package-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* === FOOTER === */
.package-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PRICE */
.package-price {
  display: flex;
  flex-direction: column;
}

.package-price strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--verde-dark);
}

.package-price span {
  font-size: 12px;
  color: #888;
}

/* CTA */
.package-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--naranja);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.package-btn::after {
  content: "→";
  transition: transform 0.25s ease;
}

.package-card:hover .package-btn::after {
  transform: translateX(6px);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: linear-gradient(180deg, var(--blanco) 0%, var(--beige-light) 30%, var(--beige) 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102,112,38,0.35), transparent);
}

.benefits-layout {
  display: grid;
  gap: 80px;
  align-items: center;
}

@media (min-width: 1024px) {
  .benefits-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 100px;
  }
}

/* === IMAGE WITH FRAME === */
.benefits-image-wrap {
  position: relative;
}

.benefits-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 24px;
  bottom: 24px;
  border: 2px solid rgba(102,112,38,0.22);
  border-radius: 24px;
  z-index: 0;
}

.benefits-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
}

@media (min-width: 1024px) {
  .benefits-image {
    aspect-ratio: 3/4;
  }
}

.benefits-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.benefits-image-wrap:hover .benefits-image img {
  transform: scale(1.06);
}

.benefits-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(62,79,34,0.45) 100%
  );
}

/* FLOATING STATS - Enhanced */
.benefits-stats {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  gap: 16px;
  z-index: 2;
}

.benefit-stat {
  flex: 1;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.8);
  transition: all 0.35s ease;
}

.benefit-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.benefit-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--verde-dark);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

/* CONTENT SIDE */
.benefits-content {
  position: relative;
}

/* NUMBERED CARDS - Editorial style */
.benefits-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.benefit-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--blanco);
  border: 1px solid rgba(102,112,38,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--naranja), var(--naranja-claro));
  transition: height 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px) translateX(4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  border-color: rgba(102,112,38,0.18);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(62,79,34,0.08);
  line-height: 1;
  letter-spacing: -0.03em;
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(102,112,38,0.14) 0%, rgba(62,79,34,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--verde-main);
  transition: all 0.35s ease;
}

.benefit-card:hover .benefit-icon-wrap {
  background: linear-gradient(135deg, rgba(164,179,76,0.2) 0%, rgba(102,112,38,0.12) 100%);
  color: var(--oliva-intenso);
}

.benefit-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--verde-dark);
  letter-spacing: -0.02em;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* CTA */
.benefits-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--naranja);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(102,112,38,0.35);
  transition: all 0.35s ease;
}

.benefits-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(102,112,38,0.45);
}

.benefits-cta svg {
  width: 18px;
  height: 18px;
}

/* ===== SEO HIGHLIGHTS (home) ===== */
.seo-highlights-section {
  padding: 72px 0;
  background: var(--blanco);
}

.seo-highlights-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.seo-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .seo-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.seo-highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--blanco-hueso);
  border: 1px solid var(--gris-borde);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 36px rgba(47, 47, 43, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.seo-highlight-card:hover {
  transform: translateY(-6px);
  border-color: #d4dbc4;
  box-shadow: 0 20px 52px rgba(62, 79, 34, 0.12);
}

.seo-highlight-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8ebe2;
}

.seo-highlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.seo-highlight-card:hover .seo-highlight-card__media img {
  transform: scale(1.06);
}

.seo-highlight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 41, 51, 0.55) 0%, transparent 55%);
}

.seo-highlight-card__body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.seo-highlight-card__body h3 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--verde-dark);
  line-height: 1.3;
}

.seo-highlight-card__body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gris-secundario);
  flex: 1;
}

.seo-highlight-card__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--naranja);
}

/* ===== EMOTIONAL ===== */
.emotional-section {
  position: relative;
  min-height: 480px;
  padding: 88px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
}

/* === BACKGROUND (AUTO MOTION) === */
.emotional-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: slowMove 18s ease-in-out infinite alternate;
  filter: contrast(1.05) saturate(1.1);
}

@keyframes slowMove {
  0% { transform: scale(1.02) translateY(0); }
  100% { transform: scale(1.06) translateY(-6px); }
}

/* === OVERLAY (colores de marca: verde-dark, verde-main, naranja) === */
.emotional-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(164,179,76,0.2) 0%, transparent 52%),
    linear-gradient(
      105deg,
      rgba(62,79,34,0.88) 0%,
      rgba(102,112,38,0.72) 42%,
      rgba(62,79,34,0.58) 72%,
      rgba(42,51,32,0.45) 100%
    );
}

.emotional-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(164,179,76,0.12), transparent 45%);
}

/* === FADE ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.emotional-inner {
  position: relative;
  width: 100%;
  max-width: 740px;
}

.emotional-content {
  position: relative;
}

.emotional-content::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--lima-musgo);
  opacity: 0.9;
}

/* === TAGLINE === */
.emotional-tagline {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.9;
  margin-bottom: 14px;
  display: block;
}

/* === TITLE === */
.emotional-content h2 {
  font-size: clamp(36px, 4.5vw, 50px);
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.emotional-content h2 span {
  color: var(--lima-musgo);
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

/* === TEXT === */
.emotional-content > p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 26px;
  opacity: 0.92;
}


/* === CTA === */
.emotional-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.emotional-actions .btn-cta {
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emotional-actions .btn-cta.primary {
  background: var(--naranja);
  color: #fff;
  box-shadow: 0 8px 24px rgba(102,112,38,0.35);
}

.emotional-actions .btn-cta.primary:hover {
  background: var(--naranja-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102,112,38,0.45);
}

.emotional-actions .btn-cta.secondary {
  background: transparent;
  color: var(--beige);
  border: 2px solid var(--verde-claro);
}

.emotional-actions .btn-cta.secondary:hover {
  background: rgba(102,112,38,0.45);
  color: #fff;
}

/* MICRO COPY */
.emotional-note {
  font-size: 13px;
  color: var(--beige);
  opacity: 0.8;
  margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--beige);
  padding: 100px 0;
}

/* === TOP RATING === */
.testimonials-top {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-rating {
  font-size: 28px;
  font-weight: 700;
  color: var(--verde-dark);
}

.testimonials-rating span {
  color: var(--naranja);
  margin-left: 6px;
}

.testimonials-count {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* === GRID === */
.testimonials-grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === CARD PREMIUM === */
.testimonial-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* QUOTE */
.testimonial-quote {
  font-size: 40px;
  color: rgba(0,0,0,0.08);
  position: absolute;
  top: 10px;
  right: 16px;
}

/* STARS */
.testimonial-stars {
  color: var(--lima-musgo);
  font-size: 14px;
  letter-spacing: 2px;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* FOOTER */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--verde-dark);
}

.testimonial-role {
  font-size: 12px;
  color: #777;
}

/* CTA */
.testimonials-footer {
  text-align: center;
  margin-top: 50px;
}

.testimonials-reviews-link {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--naranja);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102,112,38,0.32);
}

.testimonials-reviews-link:hover {
  transform: translateY(-2px);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND */
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cta-section:hover .cta-bg {
  transform: scale(1.08);
}

/* OVERLAY verde marca + profundidad */
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 35%, rgba(164,179,76,0.2) 0%, transparent 55%),
    linear-gradient(
      180deg,
      rgba(62,79,34,0.82) 0%,
      rgba(102,112,38,0.68) 45%,
      rgba(55,68,34,0.88) 100%
    );
}

.cta-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 50%,
    transparent 28%,
    rgba(0,0,0,0.22) 100%
  );
  pointer-events: none;
}

/* CONTENT - contenedor ancho de base, contenido centrado */
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner .cta-content {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Línea decorativa */
.cta-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--lima-musgo) 0%, var(--naranja-claro) 100%);
  margin: 0 auto 18px;
  border-radius: 2px;
}

.cta-content h2 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-content h2 span {
  color: var(--lima-musgo);
  display: inline-block;
  position: relative;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}

.cta-content h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lima-musgo), var(--oliva-intenso), transparent);
  opacity: 0.85;
}

.cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto 18px;
}

.cta-email {
  flex: 1;
  min-width: 180px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.cta-email::placeholder {
  color: rgba(255,255,255,0.6);
}

.cta-email:focus {
  outline: none;
  border-color: var(--naranja);
  background: rgba(255,255,255,0.12);
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--naranja);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 12px 36px rgba(102,112,38,0.4);
  transition: all 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(102,112,38,0.5);
}

.cta-btn svg {
  width: 18px;
  height: 18px;
}

.cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.cta-phone {
  color: var(--naranja);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-phone:hover {
  color: var(--naranja-claro);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .cta-section {
    padding: 56px 0;
  }

  .cta-content h2 span::after {
    display: none;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-email {
    min-width: 100%;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  max-width: none;
  margin: 0;
  background: linear-gradient(180deg, var(--verde-footer) 0%, var(--verde-footer-darker) 100%);
  color: #fff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 15%, var(--lima-musgo) 50%, transparent 85%);
  opacity: 0.8;
}

.footer-inner { }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
  }
}

/* BRAND — logo.png en la raíz del sitio */
.footer-brand {
  margin-bottom: 20px;
}

.footer-brand img {
  width: clamp(195px, 18vw, 260px);
  height: auto;
  max-width: none;
  opacity: 0.95;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 300px;
}

.footer-ruc {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

.footer-ruc + .footer-ruc {
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #fff;
}

.footer-social a:hover {
  background: var(--naranja);
  border-color: var(--naranja);
  transform: translateY(-2px);
}

.footer-social svg,
.footer-social img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

/* COLUMN TITLES */
.footer-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: var(--naranja);
}

/* CONTACT */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--naranja);
  margin-top: 2px;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

/* PAYMENT */
.footer-payment {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
}

.footer-payment-label {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,0.9);
}

.footer-payment p {
  margin: 0;
}

.footer-payment-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-payment-link img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.footer-payment-link:hover {
  color: #ffe08a;
}

/* CTA BOX */
.footer-cta {
  background: linear-gradient(135deg, rgba(102,112,38,0.18) 0%, rgba(102,112,38,0.06) 100%);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(164,179,76,0.28);
  margin-top: 24px;
}

.footer-cta p {
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--naranja);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(102,112,38,0.38);
  transition: all 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(102,112,38,0.48);
}

.footer-btn svg {
  width: 18px;
  height: 18px;
}

.footer-trust {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-trust span {
  color: var(--naranja);
}

/* BOTTOM */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .footer-brand img {
    width: clamp(155px, 48vw, 205px);
  }
}

/* ===== WHATSAPP ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Pop-up mensaje */
.whatsapp-popup {
  max-width: 320px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-widget:hover .whatsapp-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-popup-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  border: 2px solid #25D366;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
}

.whatsapp-popup-content {
  flex: 1;
  min-width: 0;
}

.whatsapp-popup-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #128C7E;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.whatsapp-popup-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
}

.whatsapp-popup-chat {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #25D366;
}

/* Botón flotante */
.whatsapp-float {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Badge de notificación */
.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #25D366;
}

@media (max-width: 640px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-popup {
    max-width: 280px;
    padding: 16px;
  }

  .whatsapp-popup-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .whatsapp-popup-title {
    font-size: 12px;
  }

  .whatsapp-popup-text {
    font-size: 13px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  width: 100%;
  max-width: none;
  padding: 48px 0 100px;
  background: var(--blanco-hueso);
  min-height: 50vh;
  box-sizing: border-box;
}
.contact-inner {
  width: 100%;
  box-sizing: border-box;
}
.contact-hero {
  margin-bottom: 40px;
  max-width: none;
}
.contact-hero-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gris-secundario);
  max-width: 640px;
}

.contact-hero-intro p {
  margin: 0;
}

.contact-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--verde-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.contact-hero h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--lima-musgo), var(--oliva-intenso));
  margin-top: 14px;
  border-radius: 2px;
}
.contact-hero p {
  margin: 0;
  font-size: 16px;
  color: var(--gris-secundario);
  line-height: 1.65;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  gap: 40px 56px;
  align-items: start;
  width: 100%;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(47, 47, 43, 0.06);
}
.contact-card h2 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-main);
}
.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gris-texto);
}
.contact-card a {
  color: var(--verde-main);
  font-weight: 600;
  text-decoration: none;
}
.contact-card a:hover { text-decoration: underline; }
.contact-card .muted {
  font-size: 13px;
  color: var(--gris-secundario);
  margin-top: 8px;
}
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: 16px;
  padding: 28px 28px 32px;
  box-shadow: 0 8px 32px rgba(47, 47, 43, 0.07);
}
.contact-form-wrap label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--verde-dark);
  margin-bottom: 6px;
}
.contact-form-wrap .field {
  margin-bottom: 18px;
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--gris-borde);
  border-radius: 10px;
  background: var(--blanco-hueso);
  color: var(--gris-texto);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: var(--oliva-intenso);
  box-shadow: 0 0 0 3px rgba(102, 112, 38, 0.15);
}
.contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-wrap .contact-submit {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: var(--oliva-intenso);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-form-wrap .contact-submit:hover {
  background: var(--naranja-hover);
  transform: translateY(-1px);
}
.contact-form-wrap .contact-note {
  font-size: 12px;
  color: var(--gris-secundario);
  margin-top: 16px;
  line-height: 1.5;
}
.contact-success {
  display: none;
  padding: 20px;
  border-radius: 12px;
  background: rgba(164, 179, 76, 0.15);
  border: 1px solid rgba(102, 112, 38, 0.35);
  color: var(--verde-dark);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.contact-success.is-visible { display: block; }
.contact-error {
  display: none;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 14px;
  line-height: 1.5;
}
.contact-error.is-visible { display: block; }
.contact-submit.is-loading { opacity: 0.65; pointer-events: none; }

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ===== LEGAL PAGES (ESSNA, policies) ===== */
.legal-page {
  background: var(--blanco-hueso);
}

.legal-hero {
  position: relative;
  background: #1f2933;
  color: #fff;
  text-align: center;
}

.legal-hero-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .legal-hero-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.legal-hero h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-hero-chevron {
  position: relative;
  height: 24px;
}

.legal-hero-chevron::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -16px;
  width: 32px;
  height: 32px;
  background: #1f2933;
  transform: translateX(-50%) rotate(45deg);
}

.legal-inner {
  width: 100%;
  box-sizing: border-box;
}

.legal-content {
  padding: 40px 0 64px;
}

@media (min-width: 768px) {
  .legal-content {
    padding: 56px 0 80px;
  }
}

.legal-content-title {
  margin: 0 0 24px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--carbon-organico);
}

.legal-statement {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .legal-statement {
    grid-template-columns: 1fr auto;
    gap: 40px 48px;
  }
}

.legal-statement-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gris-texto);
  text-align: justify;
}

.legal-statement-media {
  display: flex;
  justify-content: center;
}

.legal-statement-media img {
  display: block;
  width: auto;
  max-width: 189px;
  height: auto;
}

.legal-prose h3 {
  margin: 32px 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--carbon-organico);
}

.legal-prose h3:first-of-type {
  margin-top: 8px;
}

.legal-prose p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gris-texto);
  text-align: justify;
}

.legal-prose p:last-child {
  margin-bottom: 0;
}

.legal-prose .legal-subtitle {
  margin: 20px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--verde-dark);
}

.legal-list {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gris-texto);
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

/* Single tour styles: see assets/css/tour-page.css */
.tour-related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media(max-width:768px) { .tour-related-grid { grid-template-columns:1fr; } }

/* ===== TOUR CATEGORY ARCHIVE ===== */
.tour-category-archive { background: var(--blanco-hueso); }
.tour-category-hero {
  position: relative;
  overflow: hidden;
  background: var(--blanco-hueso);
  padding: 0;
  border-bottom: 1px solid var(--gris-borde);
}
.tour-category-hero--has-image {
  min-height: clamp(240px, 36vw, 360px);
  border-bottom: none;
}
.tour-category-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--category-hero-image);
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.tour-category-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 22%,
    rgba(255, 255, 255, 0.92) 38%,
    rgba(255, 255, 255, 0.55) 58%,
    rgba(255, 255, 255, 0.18) 78%,
    rgba(255, 255, 255, 0) 100%
  );
}
.tour-category-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 48px;
  text-align: left;
}
.tour-category-hero__inner .tour-category-breadcrumb,
.tour-category-hero__inner .tour-category-hero__title,
.tour-category-hero__inner .tour-category-hero__desc {
  max-width: 620px;
}
@media (max-width: 768px) {
  .tour-category-hero__inner {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .tour-category-hero__bg {
    background-position: 70% center;
  }
  .tour-category-hero__overlay {
    background: linear-gradient(
      to right,
      #ffffff 0%,
      rgba(255, 255, 255, 0.96) 42%,
      rgba(255, 255, 255, 0.72) 68%,
      rgba(255, 255, 255, 0.2) 100%
    );
  }
}
.tour-category-breadcrumb {
  font-size: 13px;
  color: var(--gris-secundario);
  margin-bottom: 20px;
}
.tour-category-breadcrumb a {
  color: var(--oliva-intenso);
  text-decoration: none;
  font-weight: 500;
}
.tour-category-breadcrumb a:hover { text-decoration: underline; }
.tour-category-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--verde-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 20px;
}
.tour-category-hero__desc {
  max-width: 620px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--carbon-organico);
}
.tour-category-hero:not(.tour-category-hero--has-image) .tour-category-hero__inner {
  padding: 32px 0 40px;
}
.tour-category-panel { padding: 48px 0 80px; }
.tour-category-panel__inner {
  background: #f0f2eb;
  border: 1px solid var(--gris-borde);
  border-radius: 24px;
  padding: 40px 36px 48px;
  box-shadow: 0 8px 40px rgba(62, 79, 34, 0.06);
}
@media (max-width: 768px) {
  .tour-category-panel__inner { padding: 28px 20px 36px; }
}
.tour-category-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tour-category-panel__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--naranja);
  margin: 0 0 8px;
}
.tour-category-panel__title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--verde-dark);
  margin: 0;
  letter-spacing: -0.02em;
}
.tour-category-panel__count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  font-size: 14px;
  font-weight: 600;
  color: var(--verde-dark);
  white-space: nowrap;
}
.tour-category-panel__count::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--naranja);
}
.tour-category-grid { margin-top: 0; }
.tour-category-pagination {
  text-align: center;
  margin-top: 48px;
}
.tour-category-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--verde-dark);
  font-weight: 600;
}
.tour-category-pagination .page-numbers.current {
  background: var(--oliva-intenso);
  color: #fff;
}
.tour-category-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--gris-secundario);
}

/* ===== NATIONAL CATEGORY (grouped destinations) ===== */
.tour-national-archive .tour-category-hero--has-image + .national-jump-nav {
  padding-top: 8px;
}

.national-jump-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0 0 24px;
  background: var(--blanco-hueso);
}

.national-jump-nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(62, 79, 34, 0.08);
}

.national-jump-nav__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris-secundario);
  white-space: nowrap;
}

.national-jump-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.national-jump-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gris-borde);
  background: var(--blanco);
  color: var(--verde-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.national-jump-nav__link:hover,
.national-jump-nav__link.is-active {
  border-color: var(--oliva-intenso);
  background: var(--beige);
  color: var(--verde-dark);
}

.national-destinations {
  padding-bottom: 80px;
}

.national-destination-section {
  padding-bottom: 28px;
}

.national-destination-section:last-child {
  padding-bottom: 0;
}

.national-destination-panel {
  scroll-margin-top: 120px;
}

@media (max-width: 768px) {
  .national-jump-nav__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .national-jump-nav__links {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .national-jump-nav__links::-webkit-scrollbar {
    display: none;
  }

  .national-destination-panel {
    scroll-margin-top: 140px;
  }
}
