.tt-contato {
    background-color: black;
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.tt-email {
    background-color: black;
    padding: 10px;
    color: white;
    border-radius: 5px;
}

.conteudo {
    height: max-content;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
    border-radius: 5px;
    margin: 40px auto;
    background-color: white;
    width: 60%;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.info {

    height: max-content;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    width: 40%;

    .tels {
        display: flex;
        flex-direction: column;
        color: black;
        width: max-content;
    }

    ul {

        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;


        li {
            list-style: none;
            text-align: center;
            padding: 8px;

            p {
                margin: auto;
                text-align: center;
                width: max-content;
            }

            .cont-redes-sociais {
                display: flex;
                flex-direction: column;
                width: 200px;
                justify-content: space-around;
                padding: 0;
                margin: auto;

                li {

                    list-style: none;
                    margin: 10px 0;



                    a {
                        color: black;
                        display: flex;
                        flex-direction: column;
                        width: max-content;
                        margin: auto;

                        #insta {
                            background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
                            background-size: 100% 100%;
                            -webkit-background-clip: text;
                            -webkit-text-fill-color: transparent;
                            animation: gradientAnimation 15s ease infinite;
                        }

                        #facebook {
                            color: #1877F2;
                        }
                    }

                    .icon-rede-social {
                        font-size: xx-large;
                    }
                }
            }
        }
    }

}

form {
    width: 100%;
    height: max-content;
}

.forms {
    height: max-content;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 5px;
    background-color: #EC6608;
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    padding: 20px;

    input {
        background-color: rgb(255, 255, 255);
        outline: none;
        padding: 8px;
        border-radius: 3px;
        width: 90%;
        transition: .2s;
        margin: auto;
    }

    .msg {
        background-color: rgb(255, 255, 255);
        outline: none;
        padding: 8px;
        border-radius: 3px;
        width: 90%;
        transition: .2s;
        margin: auto;
    }

    .msg:focus {
        border: 1px solid rgba(0, 195, 255);
        box-shadow: 0px 0px 0px 4.5px rgb(0, 195, 255, 0.25);
    }

    input:focus {
        border: 1px solid rgba(0, 195, 255, 0.5);
        box-shadow: 0px 0px 0px 4.5px rgb(0, 195, 255, 0.25);
    }

    .btt {
        background-color: transparent;
        background-color: black;
        border: 0px;
        color: white;
        padding: 12px 85px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 100%;
        margin: auto;
        display: flex;
        width: max-content;
    }
}

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

    .info {

        height: max-content;
        border-radius: 5px;
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .forms {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        height: max-content;
        align-items: center;
        border-radius: 0;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;

        input {
            background-color: rgb(255, 255, 255);
            outline: none;
            padding: 8px;
            border-radius: 3px;
            width: 90%;
            transition: .2s;
            margin: auto;
        }

        .msg {
            background-color: rgb(255, 255, 255);
            outline: none;
            padding: 8px;
            border-radius: 3px;
            width: 90%;
            transition: .2s;
            margin: auto;
        }

    }

    .conteudo {
        height: max-content;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
        border-radius: 5px;
        margin: 40px auto;
        background-color: white;
        width: 90%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}