/* Minimalista destinos */
.destinos-page {
  background: #f6f8fc;
}

.destinos-hero {
  padding: 32px 0 10px;
}

.destinos-shell,
.destinos-feature-shell,
.destinos-grid-shell {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(12, 38, 76, 0.08);
  overflow: hidden;
}

.destinos-shell {
  padding: 48px 28px;
  background: linear-gradient(135deg, #0c264c 0%, #102f5d 100%);
  color: #fff;
}

.destinos-shell h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.destinos-shell p {
  max-width: 720px;
  color: rgba(255,255,255,.85);
  margin: 0 auto;
  line-height: 1.7;
}

.destinos-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 0 28px;
}

.destinos-filter {
  border: 1px solid rgba(12,38,76,.12);
  background: #fff;
  color: #0c264c;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: all .25s ease;
}

.destinos-filter.is-active,
.destinos-filter:hover {
  background: #0c264c;
  color: #fff;
  border-color: #0c264c;
}

.destinos-feature-shell {
  padding: 24px;
  margin-top: 28px;
}

.destinos-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #0c264c;
  font-weight: 700;
  margin-bottom: 16px;
}

.destinos-feature-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0c264c;
  margin-bottom: 14px;
}

.destinos-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}

.destinos-feature-image img {
  width: 100%;
  border-radius: 22px;
  height: 360px;
  object-fit: cover;
}

.destinos-feature-copy p {
  color: #64748b;
  line-height: 1.8;
}

.destinos-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.destinos-highlight {
  background: #f6f8fc;
  border-radius: 18px;
  padding: 14px 16px;
  color: #0c264c;
  font-weight: 600;
}

.destinos-grid-shell {
  padding: 28px;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.destino-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(12,38,76,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.destino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(12,38,76,.12);
}

.destino-card .image-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.destino-card .card-body {
  padding: 20px;
}

.destino-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #64748b;
  font-size: .92rem;
}

.destino-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0c264c;
  margin-bottom: 10px;
}

.destino-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.destino-card .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.destino-card .price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0c264c;
}

.destino-empty {
  display: none;
  text-align: center;
  padding: 24px;
  color: #64748b;
}

@media (max-width: 992px) {
  .destinos-feature-grid,
  .destinos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .destinos-shell,
  .destinos-feature-shell,
  .destinos-grid-shell {
    border-radius: 20px;
  }

  .destinos-shell {
    padding: 34px 18px;
  }

  .destinos-grid-shell,
  .destinos-feature-shell {
    padding: 18px;
  }
}
