/* POPUP PREVENTIVO */
.popup_overlay_3 {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* BOX */
.popup_preventivo_box_3 {
    background: #fff;
    width: 95%;
    max-width: 760px;
    border-radius: 14px;
    padding: 0 40px 40px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    animation: popupShow 0.25s ease;
    font-family: Figtree, sans-serif;
}



/* ANIMAZIONE */
@keyframes popupShow {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* CLOSE BUTTON */
.popup_close_3 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white
}

/* HEADER NERO */
.popup_header_fjd_3 {
    background: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    border-radius: 10px 10px 0 0;
    margin: 0 -40px 10px;
}

.popup_header_fjd_3 img {
    width: 200px;
}

/* TITOLI */
.popup_title_fjd_3,
.popup_title_fjd_4 {
    text-align: center;
    font-size: 38px;
    line-height: 44px;
    font-weight: 600;
    margin-block-start: 0px !important;
    margin-block-end: 0px !important;
    padding-bottom: 10px;
    color: #000;
}


.popup_subtitle_fjd_3 {
    text-align: center;
    color: #000;
    font-size: 16px;
    line-height: 22px;
    margin-block-start: 0px !important;
    margin-block-end: 0px !important;
    padding-bottom: 25px;
}

/* FORM */
.popup_form_fjd_3,
.popup_form_fjd_4 {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form_row {
    display: flex;
    gap: 20px;
}

.form_group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form_group label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
    color: #000;
}
.form_2col label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
    color: #000;
}

.form_group input,
.form_group select,
.form_group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    font-size: 15px;
    font-family: Figtree;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    border-color: #FFDD23;
    outline: none;
}

/* PRIVACY */
.popup_privacy {
    font-size: 12px;
    line-height: 18px;
    color: #7f7f77;
    margin-top: -5px;
}

.bottone_popup_centrato {
    text-align: center;
}

/* BOTTONE GIALLO */
.popup_button_3,
.popup_button_4,
.popup_button_44,
.popup_button_40{
    background: #FFDD23;
    color: #000;
    border: none;
    padding: 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    width: 300px;
    text-align: center;
}


.popup_button_3:hover {
    background: #e5c821;
}
.popup_button_4:hover {
    background: #e5c821;
}
.popup_button_44:hover {
    background: #e5c821;
}
.popup_button_40:hover {
    background: #e5c821;
}


/* POPUP PREVENTIVO MOBILE  */
@media (max-width: 1000px) {

    .popup_preventivo_box_3 {
        width: 100%;
        max-width: 95%;
        padding: 0 14px 18px;
        border-radius: 12px;
        max-height: 100vh;
        overflow: hidden; 
    }

    
    .popup_header_fjd_3 {
        margin: 0 -14px 12px;
        padding: 12px 0;
    }
    .popup_header_fjd_3 img {
        width: 130px;
    }


    .popup_close_3 {
        top: 8px;
        right: 8px;
        font-size: 20px;
    }

    
    .popup_title_fjd_3,
    .popup_title_fjd_4{
        font-size: 22px;
        line-height: 28px;
        padding-bottom: 5px;
    }

    .popup_subtitle_fjd_3 {
        font-size: 13px;
        line-height: 18px;
        padding-bottom: 10px;
    }

    .form_row {
        display: flex;
        flex-direction: row; 
        gap: 10px;        
        }

    .form_group {
        flex: 1; 
    }

    .form_group label {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .form_2col label {
        font-size: 12px;
        line-height: 18px;

    }

    .form_group input,
    .form_group select,
    .form_group textarea {
        padding: 8px;
        font-size: 13px;
        border-radius: 6px;
    }


    .popup_privacy {
        font-size: 10px;
        line-height: 14px;
        margin-top: -2px;
    }

    .popup_button_3,
    .popup_button_4,
    .popup_button_44 {
        padding: 10px;
        font-size: 15px;
        border-radius: 8px;
    }

    .popup_form_fjd_3,
    .popup_form_fjd_4 {
        gap: 6px;
    }
}


/* Rimuove il ridimensionamento della textarea */
textarea {
    resize: none;
}
