/* ==========================================================================
   MODAL - SOLICITAR ORÇAMENTO
   ========================================================================== */

/* Overlay */

.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    /*backdrop-filter: blur(4px);*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 99999;
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Modal */

.quote-modal {
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;

    background: #0f172a;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;

    padding: 40px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.45);

    transform: translateY(30px) scale(.96);

    transition: transform .35s ease;
}

.quote-modal-overlay.active .quote-modal{
    transform: translateY(0) scale(1);
}

/* Scroll */

.quote-modal::-webkit-scrollbar{
    width:8px;
}

.quote-modal::-webkit-scrollbar-thumb{
    background:#334155;
    border-radius:20px;
}

/* Fechar */

.quote-modal-close{

    position:absolute;

    right:25px;
    top:22px;

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:#1e293b;

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.25s;
}

.quote-modal-close:hover{

    background:#f97316;

    transform:rotate(90deg);

}

/* Header */

.quote-modal{

    position:relative;

}

.quote-modal-header{

    margin-bottom:30px;

}

.quote-modal-header h2{

    font-size:2rem;

    color:#ffffff;

    margin-bottom:12px;

}

.quote-modal-header p{

    color:#94a3b8;

    line-height:1.7;

}

/* Form */

#quoteForm{

    display:flex;

    flex-direction:column;

    gap:18px;

}

/* Grupo */

.quote-form-group{

    display:flex;

    flex-direction:column;

}

/* Labels */

.quote-form-group label{

    color:#ffffff;

    font-size:.95rem;

    font-weight:600;

    margin-bottom:8px;

}

/* Inputs */

.quote-form-group input,

.quote-form-group select,

.quote-form-group textarea{

    width:100%;

    padding:15px 18px;

    background:#1e293b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    color:#ffffff;

    font-size:.95rem;

    transition:.25s;

    outline:none;

}

.quote-form-group textarea{

    resize:vertical;

    min-height:130px;

}

/* Placeholder */

.quote-form-group input::placeholder,

.quote-form-group textarea::placeholder{

    color:#64748b;

}

/* Focus */

.quote-form-group input:focus,

.quote-form-group select:focus,

.quote-form-group textarea:focus{

    border-color:#f97316;

    box-shadow:0 0 0 4px rgba(249,115,22,.12);

}

/* Select */

.quote-form-group select{

    cursor:pointer;

}

/* Botão */

.quote-submit-btn{

    margin-top:12px;

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:#f97316;

    color:#fff;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.quote-submit-btn:hover{

    background:#ea580c;

    transform:translateY(-2px);

    box-shadow:0 12px 35px rgba(249,115,22,.30);

}

/* Responsivo */

@media(max-width:768px){

    .quote-modal{

        padding:28px 22px;

    }

    .quote-modal-header h2{

        font-size:1.6rem;

    }

}