.orcamento-section{
    background-color: #F7F7F7;
}

/* title */
.orcamento__container-title {
    padding: 80px 0;
}

.orcamento__title-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.orcamento__title {
    color: var(--MainParagraphDark);
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    text-transform: uppercase;
}

.orcamento-title__title-paragraph {
    color: #4A5565;
    font-size: 16px;
    font-weight: 500;
    line-height: 143%; 
}

/* CONTATO */

.form-section-title{
    color: var(--MainDark);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    grid-column: 1 / 3;
}

.image-form {
    grid-column: 1 / 3;
}

.form-section {
    padding: 40px;
    background: #FFF;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.form-single-lane {
    grid-column: 1 / 3;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.form-group-radio {
    grid-column: 1 / 3;
    flex-direction: initial;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.form-group.form-group-radio label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.form-group.form-group-radio input{
    height: 30px;
    background: var(--MainLightGrey);
    font-size: 14px;
    line-height: 28px;
    color: #000;
    letter-spacing: 0.08px;
    outline: none;
    padding: 0px 8px;
    transition: .3s ease-in-out;
}

input#giro_outrostext {
    width:155px;
}

.radio-title{
    width: 100%;
    color: var(--Neutro-900, #191B1F);
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    line-height: 22px; /* 137.5% */
}

.form-group label {
    color: var(--Neutro-900, #191B1F);
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    line-height: 22px; /* 137.5% */
}

select option {
  margin: 40px;
  background: #fff;
}

.form-control {
    height: 46px;
    min-height: 46px;
    background: var(--MainLightGrey);
    border-radius: 6px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 28px;
    color: #000;
    letter-spacing: 0.08px;
    outline: none;
    padding: 0px 16px;
    transition: .3s ease-in-out;
    width: -webkit-fill-available!important;
}

.form-control-anexo {
    margin-top: 8px;
    font-size: 14px;
    line-height: 28px;
    color: #000;
    letter-spacing: 0.08px;
    outline: none;
    transition: .3s ease-in-out;
}

.form-control-message {
    height: 80px;
    min-height: 80px;
    background: var(--MainLightGrey);
    border-radius: 6px;
    margin-top: 8px;
    outline: none;
    padding: 16px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.08px;
    color: #000;
    transition: .3s ease-in-out;
    width: -webkit-fill-available!important;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.btn-send-contact {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    background-color: var(--MainColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    max-width: 140px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.btn-send-contact:hover {
    color: var(--MainDark);
}

.btn-send-print {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    background-color: var(--MainDark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    max-width: 140px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.btn-send-print:hover {
    color: var(--MainColor);
}

.contact-item-title {
    color: var(--Preto, #000);
    font-size: 20px;
    font-weight: bold;
    line-height: 24px; 
}

.contact-item-infomation {
    color: #636363;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.contact-item-separator {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* especial forms */

.form-with-image {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.form-with-image img {
    max-width: 260px;
}

.form-special-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sub-form {
    display: flex;
    flex-direction: column;
    margin-left: 16px;
    width: auto;
    gap: 16px;
}

@media only screen and (max-width: 800px) {
    .orcamento__title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .form-section-title{
        color: var(--MainDark);
        font-size: 20px;
        line-height: 28px;
        grid-column: 1 / 2;
    }
    
    .form-section {
        padding: 24px;
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }
    
    .form-single-lane {
        grid-column: 1 / 2;
    }

    .image-form {
        grid-column: 1 / 2;
    }
}

@media (max-width: 600px) {

    .form-group.form-group-radio {
        grid-column: 1;
        flex-direction: column;
    }
    
    .orcamento__container-title {
        padding: 40px 0;
    }
    
    .orcamento__title-container {
        gap: 16px;
    }
    
    .orcamento__title {
        font-size: 24px;
        line-height: 32px;
    }
    
  .form-control-anexo {
        display: inline-block; 
        width: 100%;
  }
    
  .form-control-anexo::file-selector-button {
        display: block;
        margin-bottom: 8px;
  }

    .form-control-anexo::-webkit-file-upload-button {
        display: block;
        margin-bottom: 8px;
    }
    
    .form-actions {
        gap: 24px;
    }

    .form-section {
        padding: 16px;
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .form-with-image img {
        max-width: 240px;
    }
}

@media (max-width: 400px) {
    .form-section {
        padding: 12px;
    }
}