
/*****whatasapp**/
/***** WhatsApp *****/
/***** WhatsApp *****/

  /* Asegura que los campos ocupen el 100% del ancho disponible en dispositivos móviles */
   
#formContainer {
  display: none;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  border: 1px solid orange;
  padding: 20px;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  border-radius: 10px;
}

#formContainer img {
  width: 50%;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.info-text {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: white;
}

.info-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    display: none;
}

 .spam-text {
        color: red;
        font-size: 16px;
        font-weight: bold;
        text-decoration: underline;
    }



.form-control {
  font-size: 0.9rem;
  border-radius: 5px;
}

.btn {
  font-size: 0.8rem;
}

.form-group {
  margin-bottom: 10px;
}

.form-check-label {
  color: white;
}





/******faqs***/


.faq-question {
    font-weight: bold;
    font-size: 0.875rem;
    color: white;
    cursor: pointer;
    margin: 10px 0;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #ccc;
}



