/* Extracted from style.css for footer and support modal */

#footer {
  background-color: var(--colorclaro);
  min-height: 60px;
  height: auto !important;
}

@media (max-width: 767px) {
    #footer {
      margin-left: -20px;
      margin-right: -20px;
      padding-left: 20px;
      padding-right: 20px;
    }
}

/*modal soporte tecnico*/
.help-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Ensure it's on top */
}

.modalsoporte {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modalsoporte-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 400px;
}

.modalsoporte-content h4 {
    margin-bottom: 10px;
}

.modalsoporte-content p {
    text-decoration: none;
    color: #e03b09;
    font-size: 30px;
    margin-top: 20px;
}

.modalsoporte-content a {
    text-decoration: none;
    color: #25D366;
    font-size: 18px;
    margin-top: 10px;
    display: inline-block;
}

.modalclose-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.whatsapp-icon {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
}
