@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Gluten:wght@300&display=swap');port url('https://fonts.googleapis.com/css2?family=Gluten:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk&display=swap');

@font-face {
    font-family: 'Augie';
    src: url('../fonts/augie.ttf') format('truetype');
  }

:root{
    --cor-fundo: rgb(255, 255, 255);
    --cor-hover: rgb(118, 180, 145);
    --cor-primaria: rgb(0, 0, 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

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

hr {
    display: inline; 
	border: 0;
	border-top: 3px solid;
    margin-top: 10px;
}


 .cabecalho {
    padding: 12px;
 }

 .cabecalho-logo {
    width: 50%;
    max-width: 1440px;
    margin-left: 25%;
 }

 .cabecalho-gibi {
    height: 100px;
    position: absolute;
    right: 48px; 
 }

 footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    left: 0; 
}

.footer-gibi-img {
    width: 100%;
}

.footer-logo {
    margin-top: 30px;
    width: 30%; 
}

.footer-diritti {
    font-family: 'Familjen Grotesk', sans-serif;
    margin-top: 30px;
    font-size: 20px;
    padding-bottom: 12px;
}


@media (max-width: 990px) {

    .cabecalho {
        text-align: center;
    }

    .cabecalho-logo {
        width: 80%;
        margin-left: 0;
    }


}


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

    .footer-logo {
        width: 50%; 
    }
}

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

    .footer-diritti {
        font-family: 'Familjen Grotesk', sans-serif;
        margin-top: 30px;
        font-size: 15px;
        padding-bottom: 12px;
    }
}

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

    .footer-diritti {
        font-size: 12px;
    }
}