/* =========================
   HERO FULL SCREEN
========================= */
.hero-destino{
  position:relative;
  height:100vh;
  min-height:700px;
  background:center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-destino::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.85)
  );
}

.hero-destino-content{
  position:relative;
  z-index:2;
}

.hero-destino h1{
  font-size:4rem;
  letter-spacing:2px;
}

.hero-destino p{
  font-size:1.2rem;
  opacity:.8;
  margin-top:10px;
}

/* =========================
   SECCIÓN BASE
========================= */
.section{
  padding:80px 0;
}

/* =========================
   GALERÍA
========================= */
.destino-img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:15px;
  box-shadow:0 15px 40px rgba(0,0,0,.6);
  transition:.4s ease;
}

.destino-img:hover{
  transform:scale(1.03);
}

/* =========================
   EXPERIENCIAS PREMIUM
========================= */
.experiencias-premium{
  padding:80px 0;
}

/* ROW PRINCIPAL */
.exp-row{
  display:flex;
  align-items:center;
  gap:60px;
  margin-bottom:70px;
  transition:transform .5s ease, box-shadow .5s ease;
}

/* última fila sin espacio extra */
.experiencias-premium .exp-row:last-child{
  margin-bottom:0;
}

/* INVERTIDA */
.exp-row.reverse{
  flex-direction:row-reverse;
}

/* =========================
   IMAGEN EXPERIENCIA
========================= */
.exp-img{
  flex:1;
}

.exp-img img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.7);
  transition:transform .7s ease;
}

.exp-row:hover .exp-img img{
  transform:scale(1.03);
}

/* =========================
   INFO EXPERIENCIA
========================= */
.exp-info{
  flex:1;
}

.exp-info h3{
  font-family:'Playfair Display', serif;
  font-size:2rem;
  margin-bottom:15px;
}

.exp-info p{
  opacity:.85;
  margin-bottom:20px;
  line-height:1.7;
}

/* =========================
   META (DÍAS)
========================= */
.exp-meta{
  font-size:.8rem;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:.6;
  margin-bottom:10px;
}

/* =========================
   INCLUDES
========================= */
.exp-includes{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  margin:25px 0 30px;
}

.include-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.9rem;
  opacity:.85;
  transition:.3s;
}

.include-item i{
  font-size:1.1rem;
  color:var(--gold);
}

.include-item:hover{
  opacity:1;
}

/* =========================
   HOVER GENERAL CARD
========================= */
.exp-row:hover{
  transform:scale(1.01);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){

  .hero-destino h1{
    font-size:2.8rem;
  }

  .exp-row,
  .exp-row.reverse{
    flex-direction:column;
    gap:30px;
  }

  .exp-img img{
    height:300px;
  }
}