/* Imagen Fondo Contacto */
.hero-section {
  background: url(/img/Origen/Escena\ 21.webp) no-repeat 70%;
  background-size: cover;
  width: 100%;
  height: 60rem;
  color: white;
  margin-bottom: 9rem;
  position: relative;
  z-index: 0;
}

.hero-section .container {
  height: 80%;
  z-index: 1;
  position: relative;
}

/* Main */
@media screen and (min-width: 991px) {
  .imagen__inicio {
    width: 100%;
    max-width: 500px;
    height: 600px;
  }
}

.galeria .img-galeria {
  width: 100%;        
  height: 250px;        
  object-fit: cover;    
  border-radius: 8px;   
  display: block;       
}

/* Boton  */
.btn-minimal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  box-shadow: none;
}
/* Hover: pequeño levantamiento */
.btn-minimal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* Active / pressed */
.btn-minimal:active {
  transform: translateY(0);
  box-shadow: none;
}
/* Focus accesible (outline visible) */
.btn-minimal:focus {
  outline: 3px solid rgba(0,0,0,0.12);
  outline-offset: 3px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}