/* ============================================
   HOTELESPLUS.COM — CSS PRINCIPAL
   Reset, Variables, Layout, Componentes
============================================ */
@font-face{font-family:Inter;font-style:normal;font-display:swap;font-weight:400;src:local('hind-vadodara-v7-latin-regular'),local('hind-vadodara-Regular'),url('<?echo $url_fonts;?>/hind-vadodara-v7-latin-regular.woff2') format('woff2'),url('<?echo $url_fonts;?>/hind-vadodara-v7-latin-regular.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:Inter;font-style:normal;font-display:swap;font-weight:600;src:local('hind-vadodara-v7-latin-600'),local('hind-vadodara-v7-latin-600'),url('<?echo $url_fonts;?>/hind-vadodara-v7-latin-600.woff2') format('woff2'),url('<?echo $url_fonts;?>/hind-vadodara-v7-latin-600.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta */
  --color-primary:    #1a3a5c;   /* Azul marino profundo */
  --color-primary-d:  #122840;
  --color-accent:     #f07a26;   /* Naranja cálido */
  --color-accent-c:   #ff8a36;   /* Naranja cálido claro*/
  --color-accent-d:   #d4641a;
  --color-bg:         #f8f9fb;
  --color-surface:    #ffffff;
  --color-text:       #1e2a38;
  --color-text-muted: #4a5568;
  --color-border:     #e2e8f0;
  --color-success:    #2ecc71;

  /* Tipografía */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;

  /* Espaciado */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);

  /* Transiciones */
  --transition: 220ms ease;
}

html { scroll-behavior: smooth; font-size: 21px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* --- CONTENEDOR --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- ACCESIBILIDAD --- */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.1rem 0;
}
.navbar.scrolled {
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-hoteles { color: var(--color-surface); }
.logo-plus    { color: var(--color-accent); }
.navbar.scrolled .logo-hoteles { color: var(--color-primary); }

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,.95);
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.navbar.scrolled .nav-links a { color: #374151; }
.navbar.scrolled .nav-links a:hover { color: var(--color-accent); }

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--color-primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Fondo con gradiente que simula imagen de España */
  background:
    linear-gradient(
      165deg,
      rgba(18, 40, 64, 0.82) 0%,
      rgba(26, 58, 92, 0.70) 50%,
      rgba(240, 122, 38, 0.35) 100%
    ),
    linear-gradient(135deg, #1a3a5c 0%, #2d6a9f 50%, #f07a26 100%);
  padding: 7rem 0 0;
  overflow: hidden;
}
/* Patrón geométrico sutil como overlay */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(240,122,38,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}
.hero-pretitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-c);
  margin-bottom: var(--space-sm);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: var(--space-sm);
  letter-spacing: -1px;
}
.hero-title .highlight { color: var(--color-accent-c); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

/* --- SEARCH BOX --- */
.search-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto var(--space-md);
  overflow: visible;
  position: relative;
}
.search-fields {
  display: flex;
  flex: 1;
  align-items: stretch;
  overflow: visible;
}
.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  position: relative;
}
.search-field label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}
.search-field label svg {
  width: 14px; height: 14px;
  stroke: var(--color-accent);
}
.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  width: 100%;
  padding: 0;
  appearance: none;
}
.search-field select {
  cursor: pointer;
}
.search-divider {
  width: 1px;
  background: var(--color-border);
  margin: 0.85rem 0;
  flex-shrink: 0;
}
.btn-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #d25903;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 1.75rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-search svg { width: 18px; height: 18px; }
.btn-search:hover { background: var(--color-accent-d); transform: scale(1.02); }

/* Autocomplete */
.autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 200;
  overflow: hidden;
  display: none;
}
.autocomplete-list.active { display: block; }
.autocomplete-list li {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
}
.autocomplete-list li:hover,
.autocomplete-list li[aria-selected="true"] {
  background: var(--color-bg);
  color: var(--color-accent);
}

/* Popular tags */
.popular-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,.90);
}
.popular-tags span { font-weight: 500; }
.tag {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.25);
  transition: background var(--transition), color var(--transition);
}
.tag:hover {
  background: var(--color-accent);
  color: white;
  border-color: transparent;
}

/* Stats band */
.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}
.stat {
  text-align: center;
  color: white;
}
.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}
.stat span { font-size: 0.82rem; opacity: 1; color: rgba(255,255,255,.82);}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ============================================
   SECCIÓN VALOR — CARDS
============================================ */
.value-prop {
  padding: var(--space-2xl) 0;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header--light .section-pretitle,
.section-header--light h2,
.section-header--light .section-desc {
  color: rgba(255,255,255,.88); 
}
.section-pretitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cf3a00;
  margin-bottom: 0.5rem;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}
.section-header h2 em {
  font-style: normal;
  color: #cf3a00;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--space-md);
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md) var(--space-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.card--accent {
  background: linear-gradient(135deg, #fff4d7 0%, #fcf5da 100%);
  border-color: transparent;
  color: white;
}
.card--accent h3, .card--accent p { color: white; }
.card--accent .card-link {color: #ffa559; }

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: var(--space-sm);
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition);
  margin-top: auto;
}
.card-link:hover { text-decoration: underline; }

/* ============================================
   DESTINOS
============================================ */
.destinos {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}
.destino-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  background: var(--color-primary);
  transition: transform var(--transition);
}
.destino-card:first-child {
  grid-column: span 2;
  min-height: 280px;
}
.destino-card:hover { transform: scale(1.02); }
.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  transition: background var(--transition);
}
.destino-card:hover .destino-overlay {
  background: linear-gradient(to top, rgba(240,122,38,.7) 0%, rgba(240,122,38,.1) 60%, transparent 100%);
}
/* Colores placeholder por destino */
.destino-madrid    { background: linear-gradient(135deg, #c0392b 0%, #8e44ad 100%); }
.destino-barcelona { background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%); }
.destino-sevilla   { background: linear-gradient(135deg, #e67e22 0%, #f1c40f 100%); }
.destino-mallorca  { background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%); }
.destino-granada   { background: linear-gradient(135deg, #8e44ad 0%, #c0392b 100%); }
.destino-todos     { background: linear-gradient(135deg, #1a3a5c 0%, #2d6a9f 100%); }

.destino-info {
  position: relative;
  z-index: 1;
  padding: var(--space-md);
  color: white;
}
.destino-tipo {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.45);    /* Fondo oscuro sólido garantiza contraste ✓ */
  color: #ffffff;                 /* ratio >12:1 ✓ */
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.4rem;
}
.destino-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.destino-info p {
  font-size: 0.82rem;
  opacity: .8;
}

/* ============================================
   TIPOS DE VIAJERO
============================================ */
.tipos-viajero {
  padding: var(--space-2xl) 0;
  background: var(--color-primary);
}
.tipos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.tipo-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.tipo-card:hover {
  background: rgba(240,122,38,.2);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}
.tipo-emoji { font-size: 2rem; }
.tipo-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;  
  text-align: center;
}

/* ============================================
   CHECKLIST CTA
============================================ */
.checklist-cta {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}
.checklist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.checklist-text .section-pretitle { text-align: left; }
.checklist-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}
.checklist-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #cf3a00;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.btn-primary:hover { background: var(--color-accent-d); transform: translateY(-2px); }

.checklist-preview {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  transition: background var(--transition);
}
.check-item:hover { background: #eef2f7; }
.check-item.check-done {
  color: var(--color-text);
  text-decoration: line-through;
  opacity: .55;
}
.check-icon {
  font-size: 1rem;
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.check-item:not(.check-done) .check-icon { color: var(--color-border); }

/* ============================================
   BLOG / GUÍAS
============================================ */
.blog { padding: var(--space-2xl) 0; background: var(--color-surface); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img {
  height: 180px;
}
.blog-img--1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.blog-img--2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.blog-img--3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.blog-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c45e0f;
  background: rgba(196,94,15,.10);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
}
.blog-body h3 {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  flex: 1;
}
.blog-body h3 a:hover { color: var(--color-accent); }
.blog-body p {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}
.blog-meta {
  font-size: 0.78rem;
  color: #374151;
  margin-top: auto;
}
.blog-cta { text-align: center; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

/* ============================================
   NEWSLETTER
============================================ */
.newsletter {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2d6a9f 100%);
}
.newsletter-inner {
  text-align: center;
  max-width: 560px;
}
.newsletter-icon { font-size: 2.5rem; margin-bottom: var(--space-sm); }
.newsletter h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}
.newsletter p {
  color: rgba(255,255,255,.90);
  margin-bottom: var(--space-md);
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto var(--space-sm);
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: var(--color-accent); }
.newsletter-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,.80);
}
.newsletter-legal a {
  color: #ffffff;
  text-decoration: underline;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--color-primary-d);
  color: rgba(255,255,255,.7);
  padding-top: var(--space-2xl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-hoteles { color: white; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0.75rem 0 var(--space-md);
  max-width: 280px;
    color: rgba(255,255,255,.82); 

}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--color-accent); }
.footer-social svg { width: 16px; height: 16px; stroke: white; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.footer-col h3,
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-sm);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.80);
}
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  text-align: center;
}

/* ============================================
   TOAST
============================================ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--color-primary);
  color: white;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.success { background: var(--color-success); }
.toast.error   { background: #e74c3c; }

/* ============================================
   RESPONSIVE
============================================ */

/* Tablet grande */
@media (max-width: 960px) {
  .destinos-grid { grid-template-columns: repeat(2, 1fr); }
  .destino-card:first-child { grid-column: span 2; }
  .tipos-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card:last-child { grid-column: span 2; }
  .checklist-inner { grid-template-columns: 1fr; }
  .checklist-preview { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Tablet */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--color-primary-d);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: white !important; font-size: 1.05rem; padding: 0.5rem 0; }
  .navbar.scrolled .hamburger span { background: var(--color-primary); }

  .search-box {
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .search-fields { flex-direction: column; }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .btn-search {
    border-radius: 0;
    justify-content: center;
    padding: 1.1rem;
  }

  .stats-inner { gap: var(--space-md); flex-wrap: wrap; }

  .tipos-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { grid-column: auto; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

/* Móvil */
@media (max-width: 480px) {
  .destinos-grid { grid-template-columns: 1fr; }
  .destino-card:first-child { grid-column: auto; }
  .tipos-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .stats-inner { gap: var(--space-sm); }
  .stat-divider { display: none; }
  .footer-nav { grid-template-columns: 1fr; }
}

/* Skip link — visible solo al recibir foco por teclado */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid white;
  outline-offset: 2px;
}