/* CONTATO */
.contato-main-content{
    padding: 40px 0;
}

.main-contato-title{
    color: var(--main-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 16px;
}

.mt-40{
    margin-top: 40px;
    border-radius: 50%;
}

.main-intern-contato {
    background-color: #454444f2;
}

.map-container iframe {
    width: 100%;
    height: 30vh;
}

.div-contact-form-flex-container {
    display: flex;
    flex-direction: column;
}

.div-contact-form-content-separator {
    margin-bottom: 36px;
}

.div-contact-form-content__sub-title {
    color:#000;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom:8px;
}

.div-contact-form-content__paragraph-effect {
    color: #41A360;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
}

.div-contact-form-content-unordened-list {
    list-style-type: none;
}

.div-contact-form-content-unordened-list a {
    color: #FFF;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group2 {
    display: flex;
    flex-direction: initial;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top:8px;
    row-gap: 8px;
}

.form-group2 p{
    width: 49%;
}

.form-group label, .form-group2 label {
    font-size: 16px;
    color: #1A4B47;
    letter-spacing: 0.08px;
    line-height: 24px;
    font-weight: 500;
}

.form-group2 span{
    margin-left:8px;
}

.form-label-paragraph {
    font-size: 16px;
    color: #3D3D3D;
    letter-spacing: 0.08px;
    line-height: 28px;
    font-weight: bold;
}

input[type="radio"] {
    margin-right: 4px;
    accent-color: #3293c8;
    width: 14px;
    height: 14px;
    transition: .3s ease-in-out;
}

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

.form-group__options div {
    margin-bottom: 8px;
}

.form-group__options span {
    color: #3D3D3D;
    font-size: 16px;
    letter-spacing: 0.08px;
    line-height: 28px;
}

.form-control {
    height: 46px;
    border: 1px solid #000;
    background: #F4F4F6;
    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: 128px;
    border: 1px solid #000;
    background: #F4F4F6;
    border-radius: 6px;
    margin-top: 8px;
    outline: none;
    padding: 16px;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.08px;
    color: #000;
    transition: .3s ease-in-out;
}

.btn-send-contact {
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}

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

.contact-map {
    height: 300px;
    width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
}

@media only screen and (min-width: 1024px) {
    .div-contact-form-flex-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .div-contact-form-content {
        width: 50%;
    }

    .div-contact-text-content{
        width: 45%;
    }

    .div-contact-form-content-separator {
        margin-bottom: unset;
    }
}

/* CONTATO INFO */

.contact-info{
    padding: 40px 0;
    background-color: #F4F4F6;
}

.contact-info-content{
    display: flex;
    flex-direction: initial;
    justify-content: space-between;
}

.contact-info-list{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    width: 33%;
}

.contact-info-item{
    display: flex;
    flex-direction: column;
    transition: .3s ease-in-out;
}

.contact-info-item svg{
    margin-bottom: 16px;
}

.contact-info-item strong{
    margin-bottom: 8px;
}

.contact-info-item:hover{
    color: var(--main-hover);
    transition: .3s ease-in-out;
}

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

    .contact-info-content{
        flex-wrap: wrap;
        row-gap: 24px;
        justify-content: space-around;
    }

    .contact-info-list{
        width: 49%;
    }
}

@media only screen and (max-width: 500px) {
    .contact-info-list{
        width: 100%;
    }

    .form-group2 p{
        width: 100%;
    }
}