/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
    color: black;
}
.popup.success {
    border-left: 4px solid #4CAF50;
}
.popup.error {
    border-left: 4px solid #f44336;
}
.popup-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}
#popupMessage{
    color: black;
    font-size: 24px;
}

/* ========================= Contacto  ========================= */
.contact-form{
    width: 100%;
    margin-bottom: 100px;
}
.form-group{
    width: 100%;
    margin-bottom: 15px;
}
.form-group input{
    width: 80%;
    min-height: 30px;
}
.form-group textarea{
    min-width: 80%;
    max-width: 80%;
    min-height: 300px;
}
#cfinale{
    margin-bottom: 40px;
}