/* ══════════════════════════════════════════════════════
   PetTrip · Home Premium CSS
   Sistema de color:
     Navy:    #0b1d35 (dark sections)
     Blue:    #4A90D9 (brand)
     Accent:  #7EC8F5 (blue light on dark)
     Text:    var(--color-text-primary/secondary)
   Tipografía: system-ui, weight 400/500 (nunca 700+)
   Radio:      14px cards, 20px cards grandes, 50px pills
══════════════════════════════════════════════════════ */

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

.page-home {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text-primary);
}

/* ── NAV ──
   Las reglas de navegación han sido movidas a header.css
   para que el header (.site-header) sea consistente en toda la web.
*/

/* ── HERO FONDO DINÁMICO ── */
.hero {
  background: #0b1d35;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 24px;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0b1d35;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(11,29,53,0.7) 0%, rgba(11,29,53,0.4) 40%, rgba(11,29,53,0.85) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 100px 0 80px;
}

.hero::before,
.hero::after { display: none; }

/* Tag animado */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(74,144,217,.1);
  border: 0.5px solid rgba(74,144,217,.22);
  color: #7EC8F5;
  font-size: 11px;
  font-weight: 400;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4A90D9;
  flex-shrink: 0;
  animation: hpulse 2s ease-in-out infinite;
}
@keyframes hpulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__title {
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero__title-accent { color: #7EC8F5; }

.hero__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* ════ HERO SEARCH ════ */
.hero-search-wrapper {
  max-width: 860px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1000;
}

.hero-search {
  position: relative;
}

/* Barra */
.hsearch-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 40px; /* Airbnb style */
  padding: 10px 10px 10px 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  gap: 0;
  min-height: 72px;
}
.hsearch-icon-main {
  color: #222;
  margin-right: 16px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.hsearch-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 17px;
  color: #222;
  font-weight: 500;
  background: transparent;
  padding: 16px 0;
  min-width: 0;
  font-family: inherit;
}
.hsearch-input::placeholder { color: #888; font-weight: 400; }
.hsearch-sep {
  width: 1px;
  height: 32px;
  background: #ebebeb;
  flex-shrink: 0;
  margin: 0 16px;
}
.hsearch-filters-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 12px;
  transition: background 0.2s;
}
.hsearch-filters-btn:hover { background: #f7f7f7; }
.hsearch-filters-btn[aria-expanded="true"] {
  background: #f7f7f7;
}
.hsearch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4A90D9;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.hsearch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
}
.hsearch-btn:hover { background: var(--color-primary-dk); }
.hsearch-btn:active { transform: scale(0.96); }

/* Panel filtros desktop (Popup) */
.hsearch-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  max-width: 90vw;
  max-height: calc(100vh - 160px);
  background: #ffffff;
  border-radius: 28px;
  border: none;
  overflow: hidden;
  z-index: 2600;
  box-shadow: 0 24px 80px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.08);
  animation: popupanim .25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}
@keyframes popupanim {
  from { opacity: 0; transform: translate(-50%, -48%) scale(0.98); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.hsearch-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 20px;
  border-bottom: 1px solid #F1F5F9;
  flex-shrink: 0;
}
.hsearch-panel__header h3 { margin: 0; font-size: 22px; font-weight: 800; color: #0F172A; }
.hsearch-panel__close {
  background: #F8FAFC; border: none; padding: 10px; margin-right: -10px;
  display: flex; color: #64748B; border-radius: 50%; cursor: pointer;
  transition: all 0.2s;
}
.hsearch-panel__close:hover { background: #E2E8F0; color: #0F172A; }

.hsearch-panel__body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hfp-block { margin-bottom: 0; padding: 0; border: none; }
.hfp-title {
  display: flex; align-items: center; gap: 12px; margin: 0 0 16px 0;
  font-size: 16px; font-weight: 700; color: #0F172A;
  text-transform: none; letter-spacing: normal;
}
.hfp-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: #EFF6FF; color: #3B82F6; display: flex; align-items: center; justify-content: center;
}
.hfp-icon svg { width: 18px; height: 18px; }

.hfp-pills { display: flex; flex-wrap: wrap; gap: 12px; }

.hfp-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  min-height: auto;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
.hfp-pill:hover { border-color: #3B82F6; color: #1D4ED8; background: #EFF6FF; }
.hfp-pill:active { transform: scale(0.96); }

.hfp-pill.active {
  background: #1D4ED8;
  border-color: #1D4ED8;
  color: #FFFFFF;
  font-weight: 600;
}
.hfp-pill.active::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") no-repeat center / contain;
}

.hfp-pet.active {
  background: #1D4ED8;
  border-color: #1D4ED8;
  color: #FFFFFF;
  font-weight: 600;
}

.hfp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: #FFFFFF;
  border-top: 1px solid #F1F5F9;
  flex-shrink: 0;
}
.hfp-clear {
  font-size: 15px;
  color: #475569;
  font-weight: 600;
  cursor: pointer;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
}
.hfp-clear:hover { background: #F1F5F9; color: #0F172A; }
.hfp-go {
  background: #1D4ED8;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}
.hfp-go:hover { background: #1E40AF; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(29, 78, 216, 0.3); }
.hfp-go:active { transform: scale(0.97); }

/* ── CHIPS DE CATEGORÍAS ── */
.hero-categories {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hcat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff; /* Blanco sólido para máximo contraste */
  border: 1px solid rgba(59, 130, 246, 0.2); /* Borde sutil azulado */
  color: var(--color-primary-dk); /* Texto azul corporativo profundo */
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.hcat-chip svg {
  color: var(--color-primary-dk);
  transition: color 0.2s ease-in-out;
}

.hcat-chip:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
  border-color: var(--color-primary);
}
.hcat-chip:hover svg {
  color: #ffffff;
}

.hcat-chip.active {
  background: var(--color-primary-dk);
  color: #ffffff;
  border-color: var(--color-primary-dk);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.hcat-chip.active svg {
  color: #ffffff;
}

/* ── BOTÓN MÁS CATEGORÍAS ── */
.hcat-chip--more {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
.hcat-chip--more:hover {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}

/* ── BOTTOM SHEET CATEGORÍAS ── */
.hcat-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
  padding-bottom: env(safe-area-inset-bottom);
}
.hcat-sheet.hcat-sheet--open {
  transform: translateY(0);
}
.hcat-sheet::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  margin: 12px auto 0;
}
.hcat-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #f1f5f9;
}
.hcat-sheet__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.hcat-sheet__close {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hcat-sheet__close:hover { background: #f1f5f9; color: #111827; }

.hcat-sheet__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 70vh;
  overflow-y: auto;
}
.hcat-chip--sheet {
  width: 100%;
  justify-content: flex-start;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 16px;
  box-shadow: none;
  background: #f8fafc;
  border: 1px solid transparent;
  color: #334155;
}
.hcat-chip--sheet:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #111827;
  transform: none;
  box-shadow: none;
}
.hcat-chip--sheet.active {
  background: var(--color-primary-lt);
  border-color: var(--color-primary);
  color: var(--color-primary-dk);
  box-shadow: none;
}
.hcat-chip--sheet svg { color: #64748b; }
.hcat-chip--sheet:hover svg { color: #111827; }
.hcat-chip--sheet.active svg { color: var(--color-primary-dk); }

/* ── VISIBILIDAD DE CHIPS DE CATEGORÍAS ── */
.mobile-only-chip { display: none; }
.desktop-only-chip { display: flex; }
.hfp-block--mobile-only { display: none; }

/* ── MÓVIL: bottom sheet ── */
@media (max-width: 768px) {
  .hero__title { font-size: 40px; }
  .hero__subtitle { font-size: 16px; margin-bottom: 32px; }

  .mobile-only-chip { display: flex; }
  .desktop-only-chip { display: none; }
  .desktop-only-categories { display: none; }
  .hfp-block--mobile-only { display: block; }

  .hsearch-bar {
    flex-wrap: nowrap;
    padding: 8px;
    border-radius: 40px;
    gap: 0;
    min-height: 56px;
  }
  .hsearch-icon-main { margin-left: 12px; width: 20px; height: 20px; margin-right: 12px; color: #111; }
  .hsearch-input {
    order: 1;
    width: 100%;
    padding: 12px 0;
    font-size: 16px; /* evita zoom iOS */
    border: none;
    border-radius: 0;
    background: transparent;
  }
  .hsearch-sep { display: none; }
  .hsearch-filters-btn { order: 2; padding: 0; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; gap: 0; background: #f0f0f0; margin-right: 4px; font-size: 0; color: transparent; } /* Hide text, icon only */
  .hsearch-filters-btn svg { width: 20px; height: 20px; }
  .hsearch-btn { display: none; } /* Ocultar texto en móvil */

  /* Categories horizontal scroll */
  .hero-categories {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 8px 24px 24px;
    margin: 16px -24px 0;
    gap: 8px;
  }
  .hero-categories::-webkit-scrollbar { display: none; }
  .hcat-chip {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 40px;
  }

  /* Panel como bottom sheet */
  /* Panel como bottom sheet */
  .hsearch-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    background: #ffffff;
    width: 100%;
    max-width: none;
    border-radius: 32px 32px 0 0;
    border: none;
    animation: sheetup .4s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: calc(100dvh - 140px);
    display: flex;
    flex-direction: column;
    padding-top: 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.08);
    z-index: 2600;
  }
  .hsearch-panel::before {
    content: '';
    display: block;
    width: 36px;
    height: 5px;
    background: #E2E8F0;
    border-radius: 4px;
    margin: 12px auto 4px;
    flex-shrink: 0;
  }
  .hsearch-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px 16px;
    border-bottom: 1px solid #F1F5F9;
    flex-shrink: 0;
  }
  .hsearch-panel__header h3 { margin: 0; font-size: 20px; font-weight: 700; color: #0F172A; }
  .hsearch-panel__close {
    background: none; border: none; padding: 8px; margin-right: -8px;
    display: flex; color: #64748B; border-radius: 50%;
  }
  .hsearch-panel__close:active { background: #F1F5F9; }
  .hsearch-panel__body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .hfp-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #F1F5F9; }
  .hfp-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .hfp-title {
    display: flex; align-items: center; gap: 10px; margin: 0 0 12px 0;
    font-size: 15px; font-weight: 700; color: #0F172A;
    text-transform: none; letter-spacing: normal;
  }
  .hfp-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: #EFF6FF; color: #3B82F6; display: flex; align-items: center; justify-content: center;
  }
  .hfp-icon svg { width: 16px; height: 16px; }
  
  /* Pills Grid & Scroll Horizontal */
  .hfp-pills { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
  }
  .hfp-pills--scrollable { 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
    margin-right: -24px;
    padding-right: 24px;
    padding-bottom: 8px;
  }
  .hfp-pills--scrollable::-webkit-scrollbar { display: none; }
  .hfp-pill {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    min-height: auto;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .hfp-pills--scrollable .hfp-pill { flex-shrink: 0; white-space: nowrap; }
  .hfp-pill.active {
    background: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF;
    font-weight: 600;
  }
  .hfp-pill.active::after {
    content: "";
    display: block; width: 16px; height: 16px; background-color: #FFFFFF;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") no-repeat center / contain;
  }

  /* Actions */
  .hfp-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px calc(20px + env(safe-area-inset-bottom, 0px));
    background: #FFFFFF;
    border-top: 1px solid #F1F5F9;
    position: sticky;
    bottom: 0;
  }
  .hfp-clear {
    background: #F1F5F9 !important;
    color: #0F172A !important;
    border: none !important;
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
  }
  .hfp-go {
    background: #1D4ED8 !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2) !important;
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
  }
}

/* ── Microestadísticas Inline ── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  opacity: 0.7;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-stat__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .hero-stats { margin-top: 16px; gap: 12px; }
  .hero-stat { font-size: 11px; }
}

/* ── AUTOCOMPLETE ── */
#hero-autocomplete {
  position: fixed;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  z-index: 99999;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
  border: 0.5px solid #eee;
  max-height: 340px;
  overflow-y: auto;
}
.ac-header {
  padding: 8px 14px 6px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #aaa;
  background: #fafafa;
  border-bottom: 0.5px solid #f0f0f0;
}
.ac-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  cursor: pointer;
  border-bottom: 0.5px solid #f5f5f5;
  transition: background 0.1s;
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item.ac-focused { background: #f7f9fc; }
.ac-city-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.ac-city-info { flex: 1; min-width: 0; }
.ac-city-name { display: block; font-size: 14px; font-weight: 500; color: #111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ac-city-name mark { background: #FFF3B0; border-radius: 2px; padding: 0 1px; font-style: normal; color: inherit; }
.ac-city-sub { font-size: 11px; color: #aaa; display: block; margin-top: 1px; }
.ac-score { font-size: 10px; font-weight: 500; padding: 2px 7px; border-radius: 20px; background: #E1F5EE; color: #085041; flex-shrink: 0; }
.ac-empty { padding: 14px; font-size: 13px; color: #aaa; text-align: center; }
.ac-loading { padding: 12px 14px; font-size: 12px; color: #aaa; display: flex; align-items: center; gap: 8px; }
.ac-loading::before { content: ''; width: 12px; height: 12px; border: 1.5px solid #eee; border-top-color: #4A90D9; border-radius: 50%; animation: spin .6s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── DISCOVERED STRIP ── */
.discovered-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
  background: var(--color-background-secondary);
  border-bottom: 0.5px solid var(--color-border-tertiary);
}
.discovered-strip__label { font-size: 10px; font-weight: 500; color: var(--color-text-secondary); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0; }
.discovered-strip__list { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.discovered-strip__list::-webkit-scrollbar { display: none; }
.ds-card { display: flex; align-items: center; gap: 8px; background: var(--color-background-primary); border: 0.5px solid var(--color-border-tertiary); border-radius: 10px; padding: 6px 10px 6px 6px; flex-shrink: 0; text-decoration: none; transition: border-color 0.12s; }
.ds-card:hover { border-color: #4A90D9; }
.ds-card__img { width: 38px; height: 38px; border-radius: 7px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ds-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ds-card__name { font-size: 11px; font-weight: 500; color: var(--color-text-primary); white-space: nowrap; max-width: 110px; overflow: hidden; text-overflow: ellipsis; }
.ds-card__city { font-size: 10px; color: var(--color-text-secondary); }

/* ── STATS STRIP ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 0.5px solid var(--color-border-tertiary);
}
.stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 0.5px solid var(--color-border-tertiary);
}
.stat:last-child { border-right: none; }
.stat__num { display: block; font-size: 30px; font-weight: 500; color: var(--color-text-primary); letter-spacing: -0.04em; line-height: 1; }
.stat__num .suffix { font-size: 18px; color: #4A90D9; }
.stat__label { display: block; font-size: 12px; color: var(--color-text-secondary); margin-top: 6px; }

/* ── SECCIONES ── */
.section { padding: 64px 40px; }
.section--alt { background: var(--color-background-secondary); }

/* Sección oscura — ciudades */
.section--dark {
  position: relative;
  background: radial-gradient(circle at 80% -20%, rgba(126, 200, 245, 0.15), transparent 40%),
              radial-gradient(circle at 20% 120%, rgba(74, 144, 217, 0.15), transparent 40%),
              #0b1d35;
  padding: 80px 40px;
  overflow: hidden;
}

.section__inner { max-width: 1080px; margin: 0 auto; }

.section__pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: #4A90D9;
  background: #E6F1FB;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section--dark .section__pill {
  background: rgba(74,144,217,.12);
  color: #7EC8F5;
  border: 0.5px solid rgba(74,144,217,.2);
}

.section__title { font-size: 30px; font-weight: 500; color: var(--color-text-primary); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 6px; }
.section--dark .section__title { color: #fff; }

.section__sub { font-size: 15px; color: var(--color-text-secondary); margin-bottom: 28px; line-height: 1.6; }
.section--dark .section__sub { color: rgba(255,255,255,.38); }

.section__cta { text-align: center; margin-top: 28px; }

/* ── CATEGORÍAS GRID ── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 14px 18px;
  border: 0.5px solid var(--color-border-tertiary);
  border-radius: 16px;
  background: var(--color-background-primary);
  text-decoration: none;
  transition: all 0.15s;
  gap: 8px;
  cursor: pointer;
}
.cat-card:hover { border-color: #4A90D9; transform: translateY(-2px); }
.cat-card__icon-wrap { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.cat-card__emoji { font-size: 26px; line-height: 1; }
.cat-card__name { font-size: 12px; font-weight: 500; color: var(--color-text-primary); text-align: center; line-height: 1.3; }
.cat-card__count { font-size: 11px; color: var(--color-text-secondary); }

/* ── CIUDADES DESTINOS (Editorial Light Mode) ── */
.section--destinations {
  background-color: #ffffff;
  padding: 80px 40px;
}
.section--destinations .section__title {
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section--destinations .section__sub {
  color: #4b5563; /* Medium gray */
}
.section--destinations .section__pill {
  background: rgba(74, 144, 217, 0.1);
  color: #4A90D9;
  border: 1px solid rgba(74, 144, 217, 0.2);
}

/* ── NEW DESTINATIONS HEADER ── */
.destinations-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.destinations-header__content {
  position: relative;
  z-index: 1;
}
.destinations-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-dk);
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(74, 144, 217, 0.15);
}
.destinations-header__title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.destinations-header__desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
  max-width: 500px;
  margin: 0;
}
.destinations-header__action {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(74, 144, 217, 0.25);
  width: 100%;
}
.btn-modern:hover {
  background: var(--color-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 144, 217, 0.35);
  color: #ffffff;
}
.btn-modern svg {
  transition: transform 0.3s ease;
}
.btn-modern:hover svg {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .destinations-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .destinations-header__action {
    margin-top: 0;
    flex-shrink: 0;
    width: auto;
  }
  .btn-modern {
    width: auto;
  }
  .destinations-header__title {
    font-size: 40px;
  }
  .destinations-header__desc {
    font-size: 18px;
  }
}
.cities-scroll-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 24px;
  padding-right: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cities-scroll-wrap::-webkit-scrollbar { display: none; }
.cities-scroll { display: flex; gap: 24px; margin-top: 32px; padding-bottom: 0; min-width: max-content; }

.city-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  text-decoration: none;
  width: 260px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s cubic-bezier(0.2, 0, 0, 1);
  background: #ffffff;
  border: 1px solid transparent;
  /* Soft, diffused shadow for light background */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
}
.city-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04); 
}
.city-card__img { 
  height: 200px; 
  position: relative; 
  overflow: hidden; 
  border-radius: 24px 24px 0 0;
}
.city-card__img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  transition: transform .6s cubic-bezier(0.2, 0, 0, 1); 
}
.city-card:hover .city-card__img img { transform: scale(1.05); }
.city-card__img-placeholder { width: 100%; height: 100%; }

.city-card__body { 
  padding: 20px 24px; 
  display: flex; 
  flex-direction: column;
  gap: 6px;
}
.city-card__name { 
  font-size: 20px; 
  font-weight: 700; 
  color: #1a1a1a; 
  letter-spacing: -0.01em; 
  margin: 0;
}
.city-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.city-card__region { 
  font-size: 14px; 
  color: #6b7280; 
  font-weight: 400;
}
.city-card__count { 
  font-size: 13px; 
  color: #9ca3af; 
  font-weight: 500; 
}
.city-card__score-wrap {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-tertiary);
}
.city-card__score { 
  font-size: 13px; 
  color: var(--color-primary); 
  font-weight: 600; 
}

.btn--outline-blue {
  display: inline-block; 
  padding: 12px 28px; 
  border-radius: 100px; 
  font-size: 15px; 
  font-weight: 600; 
  text-decoration: none; 
  cursor: pointer; 
  border: 1.5px solid #4A90D9; 
  color: #4A90D9;
  background: transparent;
  transition: all 0.2s ease; 
}
.btn--outline-blue:hover {
  background: #4A90D9;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(74, 144, 217, 0.2);
}

/* ── LUGARES CAROUSEL (Premium) ── */
.places-carousel-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  overflow-x: auto;
  scrollbar-width: none;
}
.places-carousel { 
  display: flex; 
  gap: 24px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
  padding-bottom: 24px;
}
.places-carousel::-webkit-scrollbar { display: none; } /* Safari and Chrome */

.places-carousel__btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.places-carousel__btn:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-50%) scale(1.05); }
.places-carousel__btn--prev { left: -10px; }
.places-carousel__btn--next { right: -10px; }

.places-mobile-action { display: none; }

.fplace-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  max-width: 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background: var(--color-background-primary);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.4s cubic-bezier(0.2, 0, 0, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--color-border-tertiary);
}

/* Glassmorphism for dark section */
.section--dark .fplace-card.glass-card {
  background: rgba(16, 38, 70, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.section--dark .fplace-card.glass-card:hover { 
  transform: translateY(-8px) scale(1.015); 
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15); 
}

.fplace-card__img-wrap { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--color-background-secondary); }
.fplace-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.fplace-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.2, 0, 0, 1); }
.fplace-card:hover .fplace-card__img { transform: scale(1.06); }

.fplace-card__body { padding: 24px; text-align: left; display: flex; flex-direction: column; flex-grow: 1; }

.fplace-card__badge-v2 {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  color: white;
  margin-bottom: 12px;
}
.fplace-card__name { font-size: 19px; font-weight: 700; color: #111827; margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.3; }
.section--dark .fplace-card__name { color: #ffffff; }

.fplace-card__city { font-size: 13px; color: #6b7280; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }
.section--dark .fplace-card__city { color: #7EC8F5; /* Light blue */ }

.fplace-card__rating { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #111827; font-weight: 600; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.section--dark .fplace-card__rating { color: #ffffff; border-bottom-color: rgba(255,255,255,0.1); }
.fplace-card__rating-info { display: flex; align-items: center; gap: 6px; }
.fplace-card__rating-empty { font-size: 13px; color: #9ca3af; font-style: italic; }
.section--dark .fplace-card__rating-empty { color: rgba(255,255,255,0.4); }
.stars { color: #4A90D9; font-size: 14px; letter-spacing: 1px; }

.fplace-card__footer { margin-top: auto; }
.fplace-card__pet-v2 { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  font-size: 13px; 
  color: var(--color-text-secondary); 
  font-weight: 600; 
}
.section--dark .fplace-card__pet-v2 { color: rgba(255, 255, 255, 0.85); }
.fplace-card__pet-v2 svg { flex-shrink: 0; color: var(--color-primary); }
.section--dark .fplace-card__pet-v2 svg { color: #7EC8F5; }

.section--dark .btn--ghost-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 10px 24px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}
.section--dark .btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* ── CÓMO FUNCIONA ── */
/* ── CÓMO FUNCIONA PREMIUM (v2) ── */
.section--how {
  background: #F9FAFB;
  padding: 80px 40px;
}
.how-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.how-header .section__title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.how-header .section__sub {
  font-size: 18px;
  color: #4b5563;
  margin-top: 16px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.how-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s cubic-bezier(0.2, 0, 0, 1);
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Visual Previews */
.how-card__visual {
  background: #f1f5f9;
  height: 200px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.mini-ui {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
  width: 100%;
  max-width: 260px;
  overflow: hidden;
}

/* Search Preview */
.mini-ui--search { padding: 16px; }
.mini-ui__searchbar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}
.mini-ui__searchbar svg { color: #64748b; }
.mini-ui__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-chip {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 100px;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}
.mini-chip.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Filters Preview */
.mini-ui--filters { padding: 16px 20px; }
.mini-filter-row { margin-bottom: 16px; }
.mini-filter-row:last-child { margin-bottom: 0; }
.mini-filter-label { font-size: 11px; font-weight: 700; color: #334155; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.mini-filter-options { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-pill {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  color: #64748b;
  font-weight: 500;
  background: #ffffff;
}
.mini-pill.active {
  border-color: var(--color-primary);
  background: #eff6ff;
  color: var(--color-primary-dk);
  font-weight: 600;
}

/* Map Preview */
.mini-ui--map { height: 100%; max-width: 100%; box-shadow: none; border: none; background: transparent; position: relative; }
.mini-map-bg {
  position: absolute; inset: -30px;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h40v40H0V0zm20 20h20v20H20V20zM0 20h20v20H0V20z" fill="%23cbd5e1" fill-opacity="0.3" fill-rule="evenodd"/></svg>');
  border-radius: 16px;
}
.mini-map-pin {
  position: absolute;
  width: 32px; height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translate(-50%, -50%);
  border: 1.5px solid #e2e8f0;
}
.mini-map-pin.active {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}
.mini-map-card {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 160px; background: #ffffff; border-radius: 12px; padding: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); display: flex; gap: 10px;
  border: 1px solid rgba(0,0,0,0.05);
}
.mini-map-card__img { width: 36px; height: 36px; border-radius: 8px; background: #eff6ff; }
.mini-map-card__info { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.mini-map-card__title { height: 6px; background: #334155; border-radius: 3px; width: 85%; }
.mini-map-card__sub { height: 4px; background: #cbd5e1; border-radius: 2px; width: 60%; }

/* Content */
.how-card__content {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.how-card__num-wrap {
  margin-bottom: 16px;
}
.how-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #eff6ff;
  color: var(--color-primary-dk);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.how-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.how-card__desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.how-cta {
  text-align: center;
  margin-top: 56px;
}

/* ── REVIEWS ── */
/* ── REVIEWS CAROUSEL ── */
.reviews-carousel-wrap {
  margin: 40px -40px 0;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews-carousel-wrap::-webkit-scrollbar { display: none; }
.reviews-carousel {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  min-width: max-content;
}
.review-card {
  border: 1px solid var(--color-border-tertiary);
  border-radius: 24px;
  padding: 32px 24px;
  background: var(--color-background-primary);
  position: relative;
  overflow: hidden;
  width: 340px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.review-card::after { content: '"'; position: absolute; bottom: -20px; right: 16px; font-size: 160px; color: var(--color-text-primary); opacity: 0.03; font-family: Georgia, serif; line-height: 1; pointer-events: none; }
.review-card__stars { color: var(--color-primary); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card__text { font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; position: relative; z-index: 1; }
.review-card__author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--color-border-tertiary); padding-top: 20px; margin-top: auto; position: relative; z-index: 1; }
.review-card__photos { display: flex; align-items: center; position: relative; width: 64px; height: 48px; }
.review-card__photo { border-radius: 50%; object-fit: cover; border: 2px solid #fff; position: absolute; }
.review-card__photo--pet { width: 48px; height: 48px; left: 0; z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.review-card__photo--user { width: 32px; height: 32px; left: 32px; bottom: 0; z-index: 3; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.review-card__info { display: flex; flex-direction: column; justify-content: center; }
.review-card__name { display: block; font-size: 15px; font-weight: 700; color: var(--color-text-primary); letter-spacing: -0.01em; }
.review-card__meta { font-size: 13px; color: var(--color-text-secondary); margin-top: 2px; }

/* ── NEWSLETTER PREMIUM COMPONENT ── */
.newsletter-section { padding: 64px 40px; background: #f8fafc; }
.newsletter-card {
  max-width: 1080px;
  margin: 0 auto;
  background: #0b1d35; /* Navy dark */
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11, 29, 53, 0.15);
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,200,245,0.15) 0%, rgba(11,29,53,0) 70%);
  pointer-events: none;
}
.newsletter__content { position: relative; z-index: 2; }
.newsletter__graphic {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsletter__title { font-size: 32px; font-weight: 700; color: #ffffff; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
.text-accent { color: #7EC8F5; } /* Light accent blue */
.newsletter__sub { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.6; max-width: 400px; }

.newsletter__form { margin-bottom: 16px; }
.newsletter__input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08); /* Translucent white */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  padding: 6px;
  transition: all 0.3s ease;
  max-width: 440px;
}
.newsletter__input-group:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.newsletter__input-icon {
  color: rgba(255,255,255,0.4);
  margin-left: 16px;
  flex-shrink: 0;
}
.newsletter__input { 
  flex: 1; 
  padding: 12px 16px; 
  background: transparent; 
  border: none; 
  outline: none; 
  color: #fff; 
  font-size: 15px; 
  font-family: inherit; 
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__btn { 
  padding: 14px 28px; 
  background: #7EC8F5; /* Vibrant blue */
  color: #0b1d35; 
  font-size: 15px; 
  font-weight: 700; 
  border: none; 
  cursor: pointer; 
  border-radius: 40px;
  white-space: nowrap; 
  font-family: inherit; 
  transition: background 0.2s, transform 0.2s; 
  flex-shrink: 0; 
}
.newsletter__btn:hover { background: #9ed7f8; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(126,200,245,0.3); }
.newsletter__ok { color: #7EC8F5; font-size: 14px; font-weight: 500; }
.newsletter__legal { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 16px; max-width: 400px; line-height: 1.5; }
.newsletter__legal a { color: rgba(255,255,255,0.5); text-decoration: underline; text-underline-offset: 2px; }

/* ── BOTONES ── */
.btn { display: inline-block; padding: 10px 24px; border-radius: 9px; font-size: 14px; font-weight: 500; text-decoration: none; cursor: pointer; border: 0.5px solid var(--color-border-secondary); transition: all 0.12s; font-family: inherit; }
.btn--primary { background: #4A90D9; color: #fff; border-color: #4A90D9; }
.btn--primary:hover { background: #2C6FA8; }
.btn--ghost { background: transparent; color: #4A90D9; border-color: #4A90D9; }
.btn--ghost:hover { background: #E6F1FB; }
.btn--dark { background: #0b1d35; color: #fff; border-color: #0b1d35; }
.btn--dark:hover { opacity: 0.85; }

/* ════════ PREMUM REDESIGN OVERRIDES ════════ */

/* Hero Premium */
.hero-overlay-radial {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(11,29,53,0.3) 0%, rgba(11,29,53,0.85) 100%);
}

.glass-search {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.2) !important;
}
.glass-search .hsearch-input { color: #fff; }
.glass-search .hsearch-input::placeholder { color: rgba(255,255,255,0.7); }
.glass-search .hsearch-icon-main { color: #fff; }
.glass-search .hsearch-sep { background: rgba(255,255,255,0.2); }
.glass-search .hsearch-filters-btn { color: #fff; border-color: rgba(255,255,255,0.2); }
.glass-search .hsearch-filters-btn:hover { background: rgba(255,255,255,0.1); }
.glass-search .hsearch-filters-btn svg { stroke: #fff; }

.btn--glow {
  background: #2563eb;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  border: none;
  transition: all 0.3s ease;
}
.btn--glow:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

.hero-stats-glass {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: transform 0.2s ease;
}
.hero-stat-item:hover {
  transform: translateY(-2px);
}
.hero-stat-val {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
}

/* Destinos Premium */
.section-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.city-card-immersive {
  position: relative;
  width: 250px;
  height: 310px;
  border-radius: 32px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.city-card-immersive:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0,0,0,0.15);
}
.city-card-immersive .city-card__img { height: 100%; width: 100%; border-radius: 0; }
.city-card-immersive .city-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.city-card-immersive:hover .city-card__img img {
  transform: scale(1.08);
}
.city-card-immersive .city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}
.city-card__top-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.city-card__top-badge span {
  font-size: 14px;
  font-weight: 700;
  color: #0b1d35;
}
.city-card-immersive .city-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.city-card-immersive .city-card__name { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.1; margin: 0; text-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.city-card-immersive .city-card__places { font-size: 15px; color: rgba(255,255,255,0.9); font-weight: 500; display: flex; align-items: center; gap: 6px; }

/* Como Funciona Premium */
.how-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.how-carousel__btn {
  display: none;
}
.how-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-card-ui {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.how-card-ui:nth-child(1) .how-card__visual { background: linear-gradient(145deg, #f0f7ff 0%, #e0effe 100%); }
.how-card-ui:nth-child(2) .how-card__visual { background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%); }
.how-card-ui:nth-child(3) .how-card__visual { background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%); }
.how-card-ui:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #e2e8f0;
}
.how-card__step-badge {
  width: 48px;
  height: 48px;
  background: #e0effe;
  color: var(--color-primary);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.how-card__step-badge svg {
  width: 24px;
  height: 24px;
}

/* Featured places fixes */
.fplace-card__badge-floating {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn--ghost-dark { color: #fff !important; border-color: rgba(255,255,255,0.3) !important; }
.btn--ghost-dark:hover { background: rgba(255,255,255,0.1) !important; border-color: #fff !important; }

/* Reviews Premium */
.reviews-section {
  background: linear-gradient(180deg, #F9FAFB 0%, #F1F5F9 100%);
}
.reviews-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.reviews-summary-card {
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews-summary__stars {
  color: #4A90D9;
  font-size: 20px;
  letter-spacing: 2px;
}
.reviews-summary__text {
  color: #6b7280;
  font-size: 14px;
}
.reviews-summary__text strong {
  font-size: 16px;
  color: #111827;
  font-weight: 800;
}
.review-card-premium {
  width: 380px;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 32px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(74, 144, 217, 0.08);
  border-color: rgba(74, 144, 217, 0.2);
}
.review-card-premium::before {
  content: '”';
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 160px;
  background: linear-gradient(135deg, #4A90D9 0%, #7EC8F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-card-premium .review-card__stars {
  color: #4A90D9;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.review-card-premium .review-card__text { 
  font-size: 16px; 
  font-style: normal; 
  color: #374151;
  line-height: 1.6;
  z-index: 1; 
  flex-grow: 1;
  margin-bottom: 32px;
}
.review-card-premium .review-card__author {
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}
.review-card-premium .review-card__name {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  display: block;
}
.review-card-premium .review-card__meta {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}
.review-card-premium .review-card__photos {
  position: relative;
  width: 64px;
  height: 48px;
}
.review-card-premium .review-card__photo {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  position: absolute;
}
.review-card-premium .review-card__photo--pet {
  width: 48px;
  height: 48px;
  left: 0;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.review-card-premium .review-card__photo--user {
  width: 32px;
  height: 32px;
  left: 32px;
  bottom: 0;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Newsletter Premium */
.newsletter-card-premium {
  background: linear-gradient(135deg, #0B1D35 0%, #174A82 100%);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.newsletter-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: floatShape 10s ease-in-out infinite alternate;
}
.newsletter-bg-shapes .shape-1 { 
  width: 400px; height: 400px; 
  background: rgba(74, 144, 217, 0.2); 
  top: -150px; left: -100px; 
}
.newsletter-bg-shapes .shape-2 { 
  width: 350px; height: 350px; 
  background: rgba(74, 144, 217, 0.15); 
  bottom: -150px; right: -50px; 
  animation-delay: -5s;
}
@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 50px) scale(1.1); }
}

.newsletter__content { position: relative; z-index: 2; }
.newsletter__title { 
  font-size: 36px; 
  font-weight: 800; 
  color: #ffffff; 
  margin-bottom: 16px; 
  letter-spacing: -0.02em;
}
.newsletter__title .text-accent {
  background: linear-gradient(135deg, #4A90D9 0%, #7EC8F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.newsletter__sub {
  font-size: 16px;
  color: #94a3b8;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.newsletter__form-pill { max-width: 500px; margin: 0 auto; }
.newsletter__input-group-pill {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.newsletter__input-group-pill:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(74, 144, 217, 0.5);
  box-shadow: 0 16px 48px rgba(74, 144, 217, 0.2);
}
.newsletter__input-icon {
  margin-left: 20px;
  color: #94a3b8;
  align-self: center;
}
.newsletter__input-group-pill .newsletter__input { 
  flex: 1; 
  border: none; 
  background: transparent;
  padding: 14px 16px; 
  font-size: 16px; 
  color: #ffffff; 
  outline: none; 
}
.newsletter__input-group-pill .newsletter__input::placeholder { color: #64748b; }

.newsletter__input-group-pill .newsletter__btn-pill {
  background: linear-gradient(135deg, #4A90D9 0%, #3b82f6 100%);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(74, 144, 217, 0.3);
}
.newsletter__input-group-pill .newsletter__btn-pill:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 24px rgba(74, 144, 217, 0.4); 
}
.newsletter-card-premium .newsletter__legal {
  margin: 24px auto 0;
  text-align: center;
  max-width: none;
  color: rgba(255,255,255,0.5);
}
.newsletter-card-premium .newsletter__legal a {
  color: #fff;
}

@media (max-width: 768px) {
  .hero-stats-glass { gap: 24px; }
  .hero-stat-item { flex: 1; }
  .hero-stat-divider { display: none; }
  .hero-stat-val { font-size: 32px; }
  .section-header-premium { flex-direction: column; align-items: center; text-align: center; gap: 12px; margin-bottom: 24px; }
  .section-header-premium > div { display: flex; flex-direction: column; align-items: center; }

  /* Modern Mobile Places Card */
  .section--dark .fplace-card.glass-card {
    height: 420px;
    border-radius: 32px;
    border: none;
    position: relative;
    overflow: hidden;
    background: #0b1d35;
  }
  .fplace-card__img-wrap {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }
  .fplace-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,29,53,0.95) 0%, rgba(11,29,53,0.3) 50%, transparent 100%);
    z-index: 1;
  }
  .fplace-card__badge-floating {
    top: 20px;
    bottom: auto;
    left: 20px;
    z-index: 3;
  }
  .fplace-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: transparent !important;
    border: none !important;
  }
  
  .places-header-btn { display: none !important; }
  .places-mobile-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .places-mobile-action .btn {
    width: 100%;
    max-width: 320px;
    padding: 14px;
    border-radius: 12px;
  }

  .section--how { padding: 32px 16px; }
  .how-header { margin-bottom: 24px; }
  .how-cta { margin-top: 24px; }

  .how-carousel-wrapper {
    margin: 0 -16px;
    padding: 0 16px;
  }
  .how-grid-premium { 
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    scrollbar-width: none;
  }
  .how-grid-premium::-webkit-scrollbar { display: none; }
  .how-card-ui {
    min-width: 75vw;
    max-width: 300px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .how-card__content {
    padding: 24px 20px;
  }
  .how-carousel__btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: none;
    color: #2563eb; /* Stronger blue */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .how-carousel__btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
  }
  .how-carousel__btn--prev { left: 12px; }
  .how-carousel__btn--next { right: 12px; }
  .reviews-header-premium { flex-direction: column; align-items: center; text-align: center; gap: 16px; margin-bottom: 24px; }
  .reviews-title-block { display: flex; flex-direction: column; align-items: center; }
  .reviews-summary-card { width: 100%; text-align: center; align-items: center; }
  .newsletter-card-premium { padding: 40px 24px; border-radius: 28px; }
  .newsletter__title { font-size: 28px; }
  .newsletter__input-group-pill { flex-direction: column; border-radius: 24px; padding: 12px; gap: 12px; background: rgba(255,255,255,0.05); }
  .newsletter__input-icon { display: none; }
  .newsletter__input-group-pill .newsletter__input { border-radius: 12px; padding: 12px 16px; text-align: center; }
  .newsletter__input-group-pill .newsletter__btn-pill { width: 100%; border-radius: 12px; padding: 16px; }
  .hsearch-bar.glass-search { background: rgba(0,0,0,0.4) !important; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: rgba(255,255,255,0.2); }
  .hero-categories { display: none !important; }
  .glass-search .hsearch-filters-btn { background: #fff !important; }
  .glass-search .hsearch-filters-btn svg { stroke: #4A90D9 !important; }
}

/* ── PLANES PARA HACER (INSPIRACIÓN) ── */
.section--plans {
  background-color: #F7F9FC;
  padding: 80px 0;
}
.plans-header {
  margin-bottom: 40px;
}
.plans-header__pill {
  display: inline-block;
  background: #E6F1FB;
  color: #4A90D9;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.plans-header__title {
  font-size: 32px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}
.plans-header__sub {
  font-size: 16px;
  color: #64748B;
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}
.plans-grid-wrap {
  position: relative;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.plan-card {
  position: relative;
  background: #E2E8F0;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  min-height: 440px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
}
.plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0,0,0,0.15);
}
.plan-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.plan-card:hover .plan-card__img {
  transform: scale(1.08);
}
.plan-card__top-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.plan-card__top-badge span {
  font-size: 14px;
  font-weight: 700;
  color: #0b1d35;
}
.plan-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-card__title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.plan-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
  margin: 0 0 12px 0;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.plan-card__cta {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.plan-card__cta svg {
  transition: transform 0.2s ease;
}
.plan-card:hover .plan-card__cta svg {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section--plans { padding: 48px 0; }
  .plans-header { padding: 0 20px; text-align: center; }
  .plans-header__title { font-size: 28px; }
  .plans-grid-wrap {
    margin: 0 -20px;
    padding: 0 20px 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px; /* Asegura que el scroll se alinee al padding */
    scrollbar-width: none;
  }
  .plans-grid-wrap::-webkit-scrollbar { display: none; }
  .plans-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
  }
  .plan-card {
    min-width: 260px; /* Más estrechas para que se vea la siguiente */
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__title { font-size: 36px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 0 16px; height: 54px; }
  .nav__links { display: none; }

  .hero { padding: 40px 16px 32px; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 14px; }

  /* old hero search block removed */

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 0.5px solid var(--color-border-tertiary); }
  .stat:nth-child(odd) { border-right: 0.5px solid var(--color-border-tertiary); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }


  .reviews-carousel-wrap { margin: 24px -20px 0; padding: 0 20px; }
  .review-card { width: 300px; }
  .how-grid { 
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -20px;
    padding: 0 20px 24px;
    scrollbar-width: none;
  }
  .how-grid::-webkit-scrollbar { display: none; }
  .how-card {
    min-width: 85vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .section { padding: 32px 16px; }
  .section--dark { padding: 32px 16px; }
  .section__title { font-size: 24px; }
  
  .section--destinations { padding: 32px 16px; }
  .destinations-header { gap: 12px; margin-bottom: 24px; align-items: center; text-align: center; }
  .destinations-header__title { font-size: 26px; }
  .destinations-header__desc { font-size: 14px; margin: 0 auto; }
  .destinations-header__badge { font-size: 11px; padding: 6px 14px; margin-bottom: 8px; }
  .destinations-header__action { width: 100%; display: flex; justify-content: center; margin-top: 12px; }
  .destinations-header__action .btn-modern { font-size: 14px; padding: 10px 24px; width: auto; }
  .cities-scroll-wrap, .places-carousel-wrap { 
    width: auto;
    position: static;
    left: auto;
    right: auto;
    margin: 0 -20px; 
    padding: 0 20px; 
  }

  /* old mobile search block removed */
  .hero-photos { display: none; }


  .newsletter-section { padding: 32px 16px; }
  .newsletter-card { padding: 32px 20px; grid-template-columns: 1fr; gap: 24px; border-radius: 24px; }
  .newsletter__title { font-size: 26px; }
  .newsletter__input-group { flex-direction: column; border-radius: 16px; background: transparent; border: none; padding: 0; }
  .newsletter__input-group:focus-within { background: transparent; border: none; box-shadow: none; }
  .newsletter__input { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 12px; margin-bottom: 12px; width: 100%; padding: 14px 16px; }
  .newsletter__input-icon { display: none; }
  .newsletter__btn { width: 100%; border-radius: 12px; padding: 14px; }
  .newsletter__graphic { display: none; }
}

@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 28px; }
  /* Ocultar las últimas 2 fotos en móvil pequeño */
  .hero-photo:nth-child(n+5) { display: none; }
  .hero-photos { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
}
