
/*SECCION DE PRODUCTOS*/


.caja-boton {
  height: 50px;
  border: solid green 0px;
  text-align: center;
  margin-bottom: 100px;

}

.boton-ver-producto{
  width: 150px;
  height: 30px;
  border: 0px;
  color: wheat;
  
  text-align: center;
  background: orangered;
  box-shadow: none;
  border-radius: 4px;
}

.titulo-producto{
  color: #20201f;

}

.boton-ver-producto:hover  {
  background: rgb(172, 48, 3);
  
}

.titulo-categorias-product{
  color: #E7591C;
  font-weight: bold;
}

.modelo-adiva{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: rgb(197, 45, 7);
}



/*SECCION DE INDEX*/
.texto-resaltado{
  font-weight: bold;
}

.btn-ver {
  padding: 1em 2em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #ffffff;
  background-color: #E7591C;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.btn-ver:hover {
  background-color: #fa6d30;
  box-shadow: 0px 15px 20px rgba(192, 192, 192, 0.4);
  color: #fff;
  transform: translateY(-7px);
  border: #fff;
}

.btn-ver:active {
  transform: translateY(-1px);
  border: #fff;
}





/* Naranja   #E7591C  */
/* Gris   #20201f  /





/* Fondo oscuro del modal */
.modal-fondo {
  display: none; /* Oculto por defecto */
  position: fixed; /* Se queda fijo al hacer scroll */
  z-index: 9999; /* Asegura que esté por encima de todo en tu web */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); /* Negro con 85% de opacidad */
  
  /* Usamos flexbox para centrar la imagen fácilmente */
  align-items: center;
  justify-content: center;
}

/* Estilos de la imagen dentro del visor */
.modal-imagen {
  max-width: 90%; /* Máximo ancho de la pantalla */
  max-height: 90vh; /* Máximo alto de la pantalla */
  object-fit: contain; /* Evita que la imagen se deforme */
  border-radius: 5px; /* Bordes ligeramente redondeados (opcional) */
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  animation: zoomSuave 0.3s ease-out; /* Animación de entrada */
}

/* Estilo del botón de cerrar (X) */
.modal-cerrar {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #ffffff;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10000;
}

.modal-cerrar:hover {
  color: #cccccc;
}

/* Animación para que aparezca suavemente */
@keyframes zoomSuave {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}