body{
    max-width: 100%;
    overflow-x: hidden !important;
}

.form-wrapper {
    width: 95%;
}

.form-card {
    background: #FFFFFF09;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari */
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #E1D5C5;
    font-family: Playfair Display, serif;
}

.form-header p {
    font-size: 0, 875rem;
    color: #ffffff;
    font-weight: 600;
    font-family: Inter, sans-serif;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #f1f1f1;
}

.form-group input,
.form-group select {
    height: 42px;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 15px;
    background: #2a2a2a;
    color: #ffffff;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #d4c7b4;
    box-shadow: 0 0 0 2px rgba(212, 199, 180, 0.3);
}

.send-form {
    width: 100% !important;
    height: 48px !important;
    background: #DCD4CD !important;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.send-form:hover {
    background: #d5c7b4 !important;
}

@media screen and (max-width:968px) {
    footer .send-form {
        width: 100% !important;
    }

    .form-wrapper {
        width: 100%;
    }
}

/* BACKDROP */
.cotacao-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10;
    justify-content: center;
    align-items: center;
}

/* CAIXA DO MODAL */
.cotacao-modal {
    width: 90%;
    max-width: 420px;
    background: #000000;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 32px;
    position: relative;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

/* BOTÃO FECHAR */
.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    color: white;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* TÍTULO */
.modal-title {
    text-align: center;
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}

/* FORM GERAL */
.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.modal-form label {
    color: white;
    font-size: 14px;
}

/* INPUTS / SELECT */
.modal-form input,
.modal-form select {
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #fff;
    font-size: 15px;
    color: #000;
}

/* BOTÃO */
.send-form {
    width: 100%;
    padding: 12px;
    background: #1fab4c; 
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.send-form:hover {
    opacity: 0.85;
}

.open-modal{
    cursor: pointer;
}