
.botones-servicios {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.botones-servicios button {
  padding: 12px 20px;
  background: #E50914;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.botones-servicios button:hover {
  background: #95060D;
}

/* ventanas modales *************************************************** */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-contenido {
  background-color: #fff;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Imagen dentro del modal */
.modal-contenido img {
  width: 100%;          /* ocupa todo el ancho del modal */
  max-height: 250px;    /* altura máxima uniforme */
  object-fit: cover;    /* recorta la imagen para que se ajuste */
  border-radius: 8px;
  margin-bottom: 15px;
}

.cerrar {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .modal-contenido {
    width: 95%;
    font-size: 0.9rem;
  }
  .modal-contenido img {
    max-height: 180px; /* más pequeño en móviles */
  }
}

