/* Botón Contacto */
.btn-contacto {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #444;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 20px;
    width: 50%;
    border-radius: 8px;
    text-align: start;
    text-decoration: none;
    color: black;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* Estilos del formulario */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px;
    background: #444;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.error-message {
    color: red;
    font-size: 14px;
    margin: 5px 0;
}

.error-asterisk {
    color: red;
    font-weight: bold;
}
