body {
    font-family: Arial, sans-serif;
    background-color: #2c3e50;
    color: white;
    margin: 0;
    padding: 20px;
}

/******boton envisr| cerrar***********/


.button-container {
  display: flex;
  justify-content: space-between; /* Alinea los botones de manera equidistante */
  gap: 10px; /* Espacio entre los botones */
}

#closeWhatssApp {
  display: inline-block;
  font-weight: bold;
  background-color: #25d366;
  color: white;
  border: 2px solid #128C7E;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#closeWhatssApp:hover {
  background-color: #128C7E;
  border-color: #25d366;
}

.btn-custom-red {
  display: inline-block;
  font-weight: bold;
  background-color: red;
  color: white;
  border: 2px solid darkred;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-custom-red:hover {
  background-color: darkred;
  border-color: red;
}



















/*****************************/


.whatsapp-button {
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

#formContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000; /* Fondo negro opaco */
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    max-height: 80%;
    overflow-y: auto;
}


.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.faq-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #34495e;
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #1abc9c;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btn {
    background-color: #1abc9c;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin: 0 5px;
    font-size: 12px;
}

.btn-secondary {
    background-color: #34495e;
}

.privacy-link {
    color: brown;
    text-decoration: none;
}

.privacy-link:hover {
    color: white;
}
