:root { --header-h: 65px; }

html, body { margin: 0; }
body { padding-top: 0 !important; }

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* Hero */
.hero-hospedaje {
  margin-top: var(--header-h);
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-hospedaje img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-hospedaje::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25));
  z-index: -1;
}
.hero-overlay {
  text-align: center;
  color: #fff;
}
.hero-overlay h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 2px 2px 6px rgba(0,0,0,.7);
}
.hero-overlay p {
  font-size: 1.2rem;
  margin-top: 8px;
}

/* Split sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-media { position: relative; }
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-content {
  display: grid;
  align-content: center;
  padding: 40px;
}
.split-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lista-beneficios { margin: 10px 0 0 20px; }
.lista-beneficios li { margin: 6px 0; }

.cta-row { margin-top: 12px; }

/* Botones */
.btn-primario {
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.btn-primario:hover { filter: brightness(1.1); }

/* Responsivo */
@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-media { height: 40vh; }
}
