@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1px;
    text-transform: none;
}

html, body{
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body{
    display: flex;
    flex-direction: column;
}

.rodape{
    width: 100%;
    color:white;
    flex-shrink: 0;
    background-color: #333333;
    color: white;
    margin: 0;
    padding: 20px;
    text-align: left;
    margin-top: 20px;
}

h3, p{
    text-transform: none; /* começar apenas com letra maiúscula depois de ponto */
}

/* Cor do texto do rodapé */
footer{
    width: 100%;
    color:white;
}

/* DISTÂNCIA DAS BORDAS */
#footer_content{
    /* background-color: #333333; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0.1rem 0.1rem;
}

#footer_social_media{
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

/* para conseguirmos por um background nos icons */
#footer_social_media .footer-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: white;
    border-radius: 50%;
    transition: all 0.4s; /* para demorar a diminuir a opacidade */
}

/* Tamanho dos icons */
#footer_social_media .footer-link{
    font-size: 1.5rem;
}

/* Diminuir opacidade quando passamos o rato por cima */
#footer_social_media .footer-link:hover{
    opacity: 0.7;
}

#instagram{
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#facebook{
    background-color: #4267b3;
}

#localizacao{
    background: linear-gradient(#ca3939, #f7e80e, #0e50f7, #00c10d);
}

/* Espaçamento entre linhas */
.footer-list{
    display: flex;
    flex-direction: column;
    gap: 0.70rem;
    list-style: none; /* Tirar "bolinha" */
}

/* Alterar cor das palavras e diminuir a opacidade quando se passa o rato por cima 
.footer-list .footer-link{
    color:lightgray;
    transition: all 0.4s;
}
*/

/* Fica roxo quando passamos o rato por cima 
.footer-list .footer-link:hover{
    color:mediumpurple;
}
*/

/* subrodapé */
#footer_copyright{
    display:flex;
    align-items: baseline; /* Para que o icon do linkedin fique ao mesmo nível do texto */
    justify-content: center;
    background-color: black;
    font-size: 0.8rem;
    padding: 0.1rem;
    font-weight: 100;
    margin-top: 2%;
    gap: 0.5rem; /* distancia do icon ao texto */
}

/* Site responsivo */
/* Alterar conforme o tamanho da tela */
@media screen and (max-width: 820px){
    #footer_content{
        font-size: 16px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    #footer_copyright{
        font-size: 12px;
    }
}

@media screen and (max-width: 464px){
    #footer_content{
        font-size: 14px;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    
    #footer_copyright{
        font-size: 12px;
    }
}

@media screen and (min-width: 1700px){
    #footer_content{
        font-size: 24px;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    #footer_copyright{
        font-size: 22px;
    }
}