/* CONTATO */

.contato-main-content {
    padding: 100px 0;
}

.map-container iframe {
    width: 100%;
    height: 560px;
}

.div-contact-form-flex-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.div-contact-form-content {
    padding: 24px;
    background-color: #F7F7F7;
}

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

.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;
    /* border: 1px solid #000; */
    background: #fff;
    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;
}

.form-control-message {
    height: 118px;
    background: #fff;
    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;
}

.btn-send-contact {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    background-color: var(--BlueNormal);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    padding: 0 16px;
    cursor: pointer;
    margin: 0 auto;
    transition: .3s ease-in-out;
    margin-top: 16px;
}

.btn-send-contact:hover {
    background-color: var(--BlueDark);
    transition: .3s ease-in-out;
}

.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;
}

/* CONTATO INFO */

.contact-info-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 16px;
}

.contact-info-column {
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 20px;
}

.contact-info-column2 {
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.div-contact-text-content {
    display: grid;
    grid-template-columns: 3fr 4fr;
    height: fit-content;
    gap: 20px;
}

.contact-info-item.info-email {
    grid-area: 2 / 1 / 3 / 3;
    width: fit-content;
}

.contact-info-item{
    width: auto;
    max-width: 434px;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 8px;
    align-items: flex-start;
    transition: .3s ease-in-out;
}

form#form-contato {
    display: flex;
    flex-direction: initial;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 16px;
}

.form-contato-content {
    width: 49%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-contato-full-content {
    width: 100%;
}

.form-contato-last-content {
    width: 100%;
}

.btn-div{
    margin-top: 32px;
}

@media only screen and (max-width: 1100px) {

    .div-contact-form-flex-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media only screen and (max-width: 650px) {
    .contato-main-content{
        padding: 40px 0;
    }

    .form-contato-content {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {

    .contact-info-item{
        color: var(--LightGray);
        font-size: 14px;
    }
}


@media only screen and (max-width: 450px) {

    .div-contact-text-content{
        display: flex;
        flex-direction:column;
    }
}

@media only screen and (max-width: 380px) {

    .contact-info-content{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 16px;
    }

    .contact-item-infomation {
        font-size:16px;
        line-height: 24px;
    }
}