@import url('../../shared/global.css');
*{
    margin: 0;
    padding: 0;
}

body{
    background: rgb(250, 250, 250);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main{
    flex-grow: 1;
    min-height: 60vh;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

#corpo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#corpo::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('./Logo_Amarelo_Azul.webp') no-repeat;
    background-size: 500px;
    background-position: center 30%;
    opacity: 0.3; 
    z-index: -1;
}

#mensagem {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

#mensagem h2 {
    font-weight: bold;
    letter-spacing: 0.1rem;
}

#mensagem h5 {
    margin-top: 20px;
}

footer{
    background: linear-gradient(
        to top,
        rgb(0, 0, 80) 80%,
        rgb(0, 0, 60)
    );
    padding: 30px;
    color: rgba(180, 180, 180, 0.5);
}

.div_footer{
    width: 100%;
}

.titulos_rodape{
    padding-bottom: 20px;
    font-size: 1.2rem;
    color: rgb(230, 230, 230);
    font-weight: bold;
    letter-spacing: 0.1rem;
}

.div_footer a{
    font-size: 0.9rem;
    color: rgba(150, 150, 150, 0.4);
}

.div_footer a:hover{
    color: yellow;
    transition: 600ms;
}

.div_footer li{
    padding-bottom: 10px;
}

.info_contatos{
    font-size: 0.9rem;
    color: rgb(200, 200, 200);
    padding-bottom: 25px;
}

#icones{
    display: flex;
    justify-content: space-around;
    width: 100px;
    margin: 0 auto;
    padding: 0;
}

#icones a{
    color: rgba(250, 250, 250, 0.7);
}

#icones a:hover{
    color: rgba(220, 220, 0, 1);
}

#logo_rodape{
    display: block;
    width: 100px;
    margin: 0px auto;
}

@media(max-width: 992px){

    footer{
        padding: 10px 20px;
    }
    
    footer > .d-md-flex{
        gap: 30px;
    }
}



@media (max-width: 767px) {
    #corpo::before {
        background-size: 300px;
        background-position: center 50%;
    }

    footer{
        padding: 10px 20px;
    }

    #logo_rodape{
        width: 100px;
        padding: 0;
        margin: 0 auto;
    }

    #icones{
        width: 150px;
        margin: 0 auto;
    }
}