/* ================= HERO ================= */

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  letter-spacing: 1px;
}

.premium-text {
  font-size: 1.2rem;
  color: #ddd;
}

/* ================= REGIONES ================= */

.regiones-detalle p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* CARDS */

.region-card {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: #fff;
  overflow: hidden;
}

.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.region-card span {
  position: relative;
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 1px;
}

/* IMÁGENES */

.region-cuyo {
  background-image: url("../images/cuyo.webp");
}

.region-patagonia {
  background-image: url("../images/patagonia.webp");
}

.region-noa {
  background-image: url("../images/noa.webp");
}

.region-litoral {
  background-image: url("../images/misiones.webp");
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .region-card { height: 260px; margin-bottom: 20px; }
  .mt-4 { display: flex; flex-direction: column; gap: 10px; }
  .mt-4 .btn { width: 100%; text-align: center; margin: 0 !important; }
}