.dest-body{
  min-height:100vh;
  margin:0;
  background-color:var(--petroleo);
  color:var(--blanco);
  position:relative;
}

.dest-body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:
    linear-gradient(180deg, rgba(2,26,30,.3), rgba(2,26,30,.82)),
    var(--page-bg, linear-gradient(180deg, rgba(2,26,30,.45), rgba(2,26,30,.9)));
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.dest-body main{
  position:relative;
  z-index:0;
}

.dest-top {
  background: rgba(2, 26, 30, .92);
  border-bottom: 1px solid rgba(230, 220, 195, .25);
  padding: 1.1rem 0;
}

.dest-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--arena);
}

.dest-top__inner a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--arena);
  text-decoration: none;
}

.dest-hero {
  position: relative;
  min-height: 68vh;
  padding: 5rem 0;
  background-image:
    linear-gradient(180deg, rgba(2,26,30,.18), rgba(2,26,30,.7)),
    var(--hero-bg, linear-gradient(180deg, rgba(2,26,30,.45), rgba(2,26,30,.9)));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--blanco);
  display: grid;
  align-items: center;
}

.dest-hero .hero-content {
  max-width: 560px;
  display: grid;
  gap: 1.1rem;
}

.dest-hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin: 0;
}

.dest-kicker {
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--arena);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.hero-meta span {
  background: rgba(230, 220, 195, .12);
  border: 1px solid rgba(230, 220, 195, .35);
  border-radius: 999px;
  padding: .5rem .85rem;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero-cta.hero-cta--center{
  justify-content:center;
}



.dest-highlights {
  margin-top: 2rem;
}

.dest-body .section-light{
  background: rgba(230, 220, 195, .88);
  color: var(--petroleo);
}

.dest-highlights .card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(2, 26, 30, .18);
  color: var(--petroleo);
  backdrop-filter: blur(2px);
}

.dest-highlights h3 {
  margin-top: 0;
  margin-bottom: .4rem;
  font-size: 1.15rem;
}

.dest-details {
  background: linear-gradient(180deg, rgba(2,26,30,.8), rgba(14,74,82,.72));
  color: var(--blanco);
}

.dest-details ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: .5rem;
}

.dest-details li::marker {
  color: var(--arena);
}

.cta-strip {
  padding: 2.5rem 0;
  background: rgba(2, 26, 30, .42);
  text-align: center;
  border-top: 1px solid rgba(230, 220, 195, .18);
  color: var(--blanco);
}

.cta-strip h3 {
  margin: 0 0 .75rem 0;
  font-size: 1.75rem;
}

footer {
  background: rgba(2, 26, 30, .9);
  border-top: 1px solid rgba(230, 220, 195, .2);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="static"] {
  opacity: 1;
  transform: none;
}

@media (max-width: 720px) {
  .dest-top__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dest-hero {
    padding: 3.5rem 0;
    min-height: 60vh;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid.cols-3.dest-highlights {
    grid-template-columns: 1fr;
  }
}
