body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b3c5d;
  color: #fff;
  text-align: center;
}

/* TÍTULO PRINCIPAL */
.titulo-principal {
  margin: 40px 0;
}

/* CONTENEDOR GENERAL */
.contenedor {
  display: flex;
  justify-content: center;
}

.contenedor__interno {
  display: flex;
  width: 80%;
  gap: 10px;
}

/* TARJETA BASE */
.tarjeta {
  width: 20%;
  margin: 5px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}

/* DESBORDAMIENTO */
.tarjeta__desbordamiento {
  overflow: hidden;
}

/* CAPA INTERNA */
.tarjeta__capa {
  position: relative;
}

/* FONDO DE IMAGEN */
.tarjeta__fondo {
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

/* VISTA PREVIA */
.tarjeta__vista-previa {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

/* TÍTULO DE SECCIÓN */
.tarjeta__titulo {
  margin: 0;
}

/* CONTENIDO OCULTO */
.tarjeta__contenido {
  display: none;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
}

/* ESTADO ACTIVO */
.tarjeta.activa {
  width: 60%;
}

/* mostrar contenido cuando está activa */
.tarjeta.activa .tarjeta__contenido {
  display: block;
}

/* botón cerrar */
.tarjeta__boton-cerrar {
  margin-top: 10px;
  cursor: pointer;
  color: red;
}

/* pequeño efecto hover opcional */
.tarjeta:hover .tarjeta__fondo {
  transform: scale(1.05);
}