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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  color: #1d273f;
  text-align: center;
}
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

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

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo img{
    height: auto;
    width: 100%;
}

.politica-privacidade *{
    padding: 0.5rem;
}

#menu-footer{
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer01{
    padding: 0.5rem;
}

#footer02{
    display: flex;
    background-color: #1d273f;
    width: 100%;
    justify-content: left;
    align-items: left;
    border-radius: 15px 0px 0 0;
}

#footer02 a{
    color: white;
    font-weight: bolder;
    text-decoration: none;
    padding: 2rem;
}

#footer02 a:hover{
    color: #4e53fb;
}


#direitos{
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.5rem;
    background-color: black;
}


#cookie-banner {
    position: fixed;
    right: 25%;
    bottom: 0;
    z-index: 999;
    background-color: #1d273f;
    opacity: 90%;
    padding: 2rem;
    width: 50%;
    text-align: center;
    border-radius: 20px;
}
#cookie-banner p{
    color: white;
    padding: 2rem;
}

#cookie-banner a{
    color: white;
    padding: 2rem;
    font-weight: bolder;
}

#btn-cookie {
    background-color: #4e53fb;
    color: white;
    margin-top: 1rem;
    width: auto;
    padding: 0.5rem 2rem;
}

/*Responsividade*/
@media (max-width: 600px) {

#logo img{
    max-width: 90%;
}

#menu-footer{
    flex-direction: column;
    gap: 1rem;
}

#footer02{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    border-radius: 15px 15px 0px 0px;
}

#footer02 a{
    padding: 0;
}


#cookie-banner {
    width: 100%;
    right: 0;    
}
}



