.modal-inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999; /* Asegura que esté encima de todo */
}


.modal-inicio .modal-contentInicio {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.modal-inicio img {
    width: 600px;
    height: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

/*botón Whatsapp flotante */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  /* z-index: 9999; */
  z-index: 1000;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-button:hover {
  transform: scale(1.05);
  background-color: #1ebe5b;
}
.whatsapp-button img {
  display: block;
}
