body {
  background: #f4f6f9;
}

/* ===== CARÁTULA ===== */

.caratula {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,.08);
  padding: 2.5rem 1.5rem;
}

.stripe {
  width: 10px;
  height: 140px;
  background: linear-gradient(to bottom, #004b87, #e32227, #f4c300);
  border-radius: 50px;
  margin-bottom: 1rem;
}

.logo-box img {
  max-width: 120px;
  border-radius: 8px;
}

.caratula-title {
  background: #e9ecef;
  padding: 4px 14px;
  margin: 5px 0;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== MAPA ===== */

#map {
  height: 520px;
  border-radius: 12px;
}

/* ===== GALERÍA ===== */

.thumb-img {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.thumb-img:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

/* Modal con fondo transparente */
.modal-imagen-content {
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 1rem;
}

.modal-imagen-content img {
  align-self: center;
}

/* Ajuste botón cerrar en modal oscuro */
.btn-close-white {
  filter: invert(1);
}
