/* CONTATO */
#contato {
    /* Conteúdo principal */
    width: 100%;
    display: block;
    height: 47em;
    background: #0A1848;
}

#headling-contato {
    /* Cabeçalho */
    width: 100%;
    padding: 20px 0;
    display: block;
}

.contents {
    display: flex;
}

.item1 {
    /*Informações de Contato*/
    width: 50%;
    height: auto;
    display: flex;
    text-align: center;
    overflow: hidden;
    flex-direction: column;
    color: white;
}

.item1 title {
    display: block;
    font-size: 19px;
    color: white;
    font-weight: bold;
}

.item1 ul {
    width: 25em;
    /*
    margin-left: 6em; */
    text-align: left;
    margin: 0 auto;
}

.item1 ul li {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 12px;
    overflow: hidden;
    height: 55px;
    padding: 2px 15px;
}

.item1 ul li span {
    font-size: 13px;
    font-weight: bold;
}

.item1 ul li img {
    width: 45px;
    padding: 0 12px;
}


.item2 {
    /*Google Maps*/
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.item2 iframe {
    border-radius: 15px;
}

.item3 {
    width: 100%;
    height: 200px;
    margin-top: 25px;
    border-top: 2px solid #989898;
    padding-top: 20px;
    display: flex;
}

.container {
    width: 33.33%;
    height: 10em;
    display: flex;
    padding: 0 30px;
    flex-direction: column;
}

.container .title {
    color: white;
    font-weight: 600;
}

.container ul {
    display: flex;
    flex-direction: column;
    color: white;
    line-height: 30px;
}

/* Caontiner2 */
.icon-group {
    width: 100%;
    height: auto;
    display: flex;
    align-items: start;
    margin-top: 10px;
    gap: 5px;
    flex-wrap: wrap;
}

.bandeiras img,
.redes-sociais img {
    width: 40px;
    border-radius: 2px;
}

.redes-sociais {
    justify-content: center;
}

/* responsivo */
@media (max-width: 700px) {
    .contents {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .item1,
    .item2 {
        width: 100%;
        max-width: 400px;
    }

    #contato {
        height: auto;
    }

    .item2 iframe {
        max-width: 100%;
        max-height: 350px;
    }

    .item3 {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 24px;
    }

    .container {
        width: 100%;
        max-width: 400px;
        margin-bottom: 12px;
        align-items: center;
        height: auto;
    }

    .icon-group {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .contents {
        gap: 20px;
    }

    .item2 iframe {
        min-width: 150px;
        min-height: 150px;
        max-width: 100vw;
        max-height: 250px;
    }

    .item1,
    .item2 {
        max-width: 100vw;
    }

    .item3 {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 16px;
    }

    .container {
        width: 100%;
        height: auto;
        max-width: 100vw;
        margin-bottom: 10px;
        align-items: center;
    }

    .icon-group {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0;
    }
}

@media (max-width: 420px) {
    .item1 ul {
        padding-left: 0;
    }
}