/* ===============================
   RESET + BASE
=============================== */
* {
  box-sizing: border-box;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #0f1115;
  color: #ffffff;
  overflow-x: hidden;
}

/* ===============================
   PORTADA
=============================== */
.hero {
  position: relative;
  height: 42vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,17,21,.25),
    rgba(15,17,21,.9)
  );
}

.hero-content {
  position: absolute;
  bottom: 18px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.hero-content h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.hero-content p {
  margin: 6px 0 0;
  font-size: 14px;
  opacity: .85;
}

/* ===============================
   BUSCADOR
=============================== */
.buscador-global {
  padding: 14px;
}

.buscador-container {
  background: #1a1d23;
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  gap: 10px;
}

.buscador-container input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
}

/* ===============================
   CATEGORÍAS
=============================== */
.categorias {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 14px;
}

.categoria {
  background: #1a1d23;
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
  cursor: pointer;
}

.categoria span {
  display: block;
  font-size: 12px;
  opacity: .75;
  margin-top: 4px;
}

/* ===============================
   LISTADOS
=============================== */
.listado {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-lugar {
  background: #1a1d23;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card-body p {
  margin: 0 0 12px;
  font-size: 13px;
  opacity: .8;
}

/* ===============================
   ACCIONES
=============================== */
.acciones {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.accion {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.accion.llegar {
  background: #0D8DBA;
  color: #fff;
}

.accion.wsp {
  background: #25D366;
  color: #fff;
  text-decoration: none;
}

.accion.web {
  background: #444;
  color: #fff;
  text-decoration: none;
}

.accion.share {
  backgrou