* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #E6E6E6;
    font-family: "Inter", sans-serif;
    overflow-y: scroll;
}

#navbar-sticky-container {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2;
}

#navbar {
    display: flex;
    align-items: center;
    background-color: white;
    width: 100%;
    height: 75px;
    filter: drop-shadow(0 5px 0 #56BEC1);
}

#logo-navbar {
    display: block;
    width: 300px;
    flex-basis: 20%;
}

#navbar-logo-img {
    display: block;
    width: 100%;
    padding: 15px;
    padding-left: 30px;
}

#navbar-botoes-container {
    flex-basis: 85%;
    height: 100%;
    display: flex;
    align-items: center;
}

#navbar-botoes {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#navbar-lista-botoes {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 80%;
    height: 100%;
}

.navbar-botao {
    display: flex;
    align-items: center;
    position: relative;
    list-style-type: none;
}

.navbar-botao:hover {
    background-color: #EEEEEE;
    transition-duration: 300ms;
}

.navbar-botao-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #58ACAC;
    height: 100%;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
}

.navbar-botao:active {
    transform: scale(0.95);
    opacity: 0.9;
}

.navbar-botao-texto {
    transition-duration: 300ms;
}

.navbar-botao-link:hover .navbar-botao-texto {
    transform: scale(1.05);
}

#navbar-botao-analise-container {
    display: flex;
    justify-content: right;
    flex-basis: 25%;
    width: 100%;
    height: 100%;
}

#navbar-analise-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #58ACAC;
    font-size: 20px;
    font-weight: 600;
    margin-right: 60px;
    width: min-content;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

#navbar-analise-link:hover {
    background-color: #EEEEEE;
}

#navbar-analise-texto {
    text-align: center;
    transition-duration: 300ms;
}

#navbar-analise-link:hover #navbar-analise-texto {
    transform: scale(1.05);
}

.hamburguer {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburguer div {
    width: 25px;
    height: 3px;
    background: #4fb3b3;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburguer {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburguer div {
    width: 25px;
    height: 3px;
    background: #4fb3b3;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

#hero {
    display: grid;
    align-items: center;
    grid-template-areas: "text nothing";
    grid-template-columns: 1fr 1fr;
}

#container-texto-hero {
    display: flex;
    justify-content: right;
    grid-area: text;
    z-index: 1;
}

#texto-hero {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.3;
    user-select: none;
}

#destaque-texto-hero {
    background-color: #56BEC1;
    padding: 0.15em;
    margin: -0.15em;
}

#img-hero {
    width: 100%;
    grid-area: 1/1/2/3;
}

.img-transicao {
    width: 100%;
    margin-bottom: -10px;
}

.img-transicao.rotacionado {
    transform: rotate(180deg);
    margin-top: -10px;
}

.img-transicao#transicao-hero {
    align-self: end;
    grid-area: 1 / 1 / 2 / 3;
    filter: drop-shadow(0 -5px 0 #56BEC1);
}

.titulo-secao {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 1.5em;
}

.titulo-secao.claro {
    margin-top: 1.5em;
}

/* SERVIÇOS */

#servicos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#servicos-tabela {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70%;
    gap: 30px;
    margin-bottom: 50px;
}

.servico-container {
    flex-basis: 40%;
    height: 350px;
    perspective: 1000px;
    flex-grow: 1;
}

.servico-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.servico-inner.flipado {
    transform: rotateX(180deg);
}

.servico-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.servico-front {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
}

.servico-back {
    background-color: white;
    color: black;
    transform: rotateY(180deg) rotateZ(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.servico-back-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.servico-back-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: black;
}

.servico-back-description {
    font-size: 18px;
    line-height: 1.6;
    color: black;
}

.servico-descricao-container {
    display: grid;
    grid-template-rows: 1fr 2fr 1fr;
    grid-template-areas: "nada" "nome" "botao";
    height: 100%;
    flex-basis: 50%;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.servico-nome {
    flex-basis: 40%;
    font-size: 30px;
    font-weight: 500;
    align-self: center;
    grid-area: nome;
}

.servico-btn-saiba-mais {
    font-size: 20px;
    cursor: pointer;
    color: #000;
    background-color: white;
    border: 5px solid #58ACAC;
    font-family: 'Inter';
    padding: 10px;
    border-radius: 10px;
    align-self: flex-end;
    justify-self: left;
    grid-area: botao;
    transition-duration: 0.5s;
}

.servico-btn-saiba-mais:hover {
    transform: scale(0.9);
}

.servico-btn-voltar {
    font-size: 20px;
    cursor: pointer;
    color: #000;
    background-color: white;
    border: 5px solid #58ACAC;
    font-family: 'Inter';
    padding: 10px;
    border-radius: 10px;
    align-self: flex-start;
    justify-self: left;
    transition-duration: 0.5s;
}

.servico-btn-voltar:hover {
    transform: scale(0.9);
}

.servico-btn-saiba-mais, .servico-btn-voltar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.servico-img-container {
    height: 100%;
    flex-basis: 50%;
}

.servico-img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: 100%;
    mask-size: 100% 100%;
    mask-image: url(../static/servico-mask.png);
}

/* RETIRAR ANALISES */
#retirar-analises-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #EEEEEE;
}

#retirar-analises-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin-top: 50px;
    gap: 30px;
    margin-bottom: 50px;
    font-size: 50px;
    height: 4em;
}

#retirar-analises-title {
    width: 50%;
    font-size: 50px;
    font-weight: 500;
}

#retirar-analises-btn {
    display: flex;
    justify-content: center;
    width: 40%;
    height: 70px;
    border-radius: 10px;
    background-color: white;
    border: 5px solid #58ACAC;
    transition-duration: 0.5s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#retirar-analises-btn:hover{
    transform: scale(0.95);
}

#retirar-analises-btn-img {
    height: 100%;
    padding: 5px;
}

/* AVALIAÇÕES */

#avaliacoes {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#avaliacoes-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 90%;
}

#avaliacoes-tabela {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 70%;
}

#avaliacoes-tabela-container {
    width: 100%;
}

#avaliacoes-tabela-carrossel {
    display: flex;
    align-items: center;
    position: relative;
    height: 350px;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: visible;
}

.avaliacoes-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition-duration: 0.5s;
}

.avaliacao-estrela {
    color: #56BEC1;
    font-size: 30px;
}

.avaliacao-nome {
    margin-top: 15px;
}

.avaliacao-corpo {
    margin-top: 15px;
}

.avaliacoes-seta-container {
    padding: 20px;
    border-radius: 10px;
    transition-duration: 0.5s;
    cursor: pointer;
}

.avaliacoes-seta-container:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.avaliacoes-seta-container:hover #avaliacoes-seta-direita {
    transform: scale(0.9) rotate(135deg);
}
.avaliacoes-seta-container:hover #avaliacoes-seta-esquerda {
    transform: scale(0.9) rotate(-45deg);
}

.avaliacoes-seta {
    display: block;
    margin: 30px auto;
    width: 25px;
    height: 25px;
    border-top: 5px solid #000;
    border-left: 5px solid #000;
    margin: 30px;
}

#avaliacoes-seta-esquerda {
    transform: rotate(-45deg);
    transition-duration: 0.5s;
}

#avaliacoes-seta-direita {
    transform: rotate(135deg);
    transition-duration: 0.5s;
}

#avaliacoes-seta-esquerda::after,
#avaliacoes-seta-direita::after {
    content: "";
    display: block;
    width: 5px;
    height: 45px;
    background-color: black;
    transform: rotate(-45deg) translate(14px, 4px);
    left: 0;
    top: 0;
}

/* NOTICIAS/HISTORIAS */

#noticias {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    background-color: #EEEEEE;
}

#noticias-tabela {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 70%;
    gap: 30px;
    margin-bottom: 50px;
}

.noticia-container {
    display: flex;
    flex-direction: row;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition-duration: 0.3s;
    opacity: 1;
}

.noticia-container.escondido {
    display: none;
    opacity: 0;
}

.noticia-container:hover {
    transform: scale(0.95) translateZ(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition-duration: 300ms;
}

.noticia-img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.noticia-conteudo {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.noticia-titulo {
    font-size: 22px;
    font-weight: 600;
    color: #58ACAC;
    margin-bottom: 10px;
}

.noticia-data {
    font-size: 14px;
    color: #666;
    margin-top: auto;
}

.noticia-corpo {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    hyphens: auto;
    height: 5em;
    overflow: hidden;
    text-align: justify;
}

#noticias-botao-carregar-noticias {
    font-size: 20px;
    font-weight: 500;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 10px;
    color: black;
    background-color: white;
    border-color: #58ACAC;
    border-width: 5px;
    border-style: solid;
    font-family: 'Inter', sans-serif;
    transition-duration: 0.5s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

#noticias-botao-carregar-noticias:hover {
    transform: scale(0.9);
}

/* CONTATO */

#contato {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#infos-container {
    display: flex;
    gap: 30px;
    width: 70%;
    min-height: 400px;
    margin-bottom: 15px;
}

#mapa-container {
    display: flex;
    flex-basis: 40%;
    flex-grow: 1;
    border-radius: 30px;
    overflow: hidden;
    border: #1E5455 5px solid;
    background-color: #1E5455;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#mapa-container>iframe {
    width: 100%;
}

#contato-container {
    flex-basis: 40%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    background-color: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contato-info {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100%;
}

#container-horario-atendimento {
    display: flex;
    align-items: center;
}

#horario-atendimento-titulo {
    width: 45%;
}

#horario-atendimento-texto {
    width: 55%;
    text-align: right;
}

#entre-em-contato-container {
    display: flex;
    align-items: center;
}

#container-telefones {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#container-telefones-numeros {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    width: 55%;
    gap: 10px;
}

.contact-telefones-link {
    display: flex;
    justify-content: right;
    gap: 0.5em;
    text-decoration: none;
    width: 100%;
    align-items: center;
}

.contact-telefones-link img {
    width: 30px;
    height: auto;
}

.contact-telefones-link p {
    color: #58ACAC;
    font-weight: 500;
}

.contact-telefones-link p:hover {
    text-decoration: underline;
}

#telefones-titulo {
    width: 45%;
}

.contato-item {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato-label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.contato-link {
    color: #56BEC1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contato-link:hover {
    color: #58ACAC;
    text-decoration: underline;
}

#container-redes-sociais {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#redes-sociais-titulo {
    width: 45%;
}

#container-botoes-redes-sociais {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    width: 55%;
    gap: 20px;
}

.link-rede-social {
    display: flex;
    justify-content: right;
    padding: 10px;
    border-radius: 10px;
    border: 5px solid #58acac;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition-duration: 0.5s;
}
.link-rede-social:hover {
    transform: scale(0.9);
}

.img-rede-social {
    display: block;
    width: 50px;
}

#facebook-btn>.img-rede-social {
    transform: scale(1.4);
}

.bADM {
    margin-top: 50px;
    color: #b8b8b8;
    margin-left: auto;
    font-size: small;
}

/*
PAGINA DE NOTICIAS
*/

#noticia-cabecalho-container {
    display: grid;
    grid-template-areas: "transicao";
    align-items: end;
    position: relative;
}

#noticia-cabecalho-img {
    width: 100%;
    grid-area: transicao;
    object-fit: cover;
    max-height: 700px;
}

#noticia-transicao {
    width: 100%;
    grid-area: transicao;
    filter: drop-shadow(0 -5px 0 #56BEC1);
}

#container-titulo-noticia {
    background-color: white;
    width: 750px;
    border-radius: 30px;
    padding: 30px;
    position: absolute;
    bottom: 0;
    justify-self: center;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#noticia-titulo {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 0.5em;
}

#noticia-descricao {
    margin-bottom: 1em;
}

#noticia-corpo-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;

}

#noticia-corpo {
    width: 750px;
    line-height: 1.5;
    hyphens: auto;
    text-align: justify;
}

#noticia-corpo a {
    color: #56BEC1;
}

.noticia-paragrafo {
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
    hyphens: auto;
}

#noticia-nao-encontrada-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 200px;
}

#noticia-nao-encontrada-botao {
    color: #58ACAC;
    font-size: 30px;
    font-weight: 500;
    text-decoration: none;
}

#noticia-nao-encontrada-botao:hover {
    text-decoration: underline;
}

/* TELA DE CARREGAMENTO */
.loader {
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: #56BEC1 #0000;
    animation: l1 1s infinite;
}

@keyframes l1 {
    to {
        transform: rotate(.5turn)
    }
}

#loadingscreen-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    z-index: 3;
    position: fixed;
    background-color: white;
}

#loadingscreen-logo {
    width: 40%;
}

#loadingscreen-throbber {
    height: 50px;
}


/* Tablet e Mobile Grande (até 1024px) */
@media (max-width: 1024px) {
    #navbar {
        padding: 0px 0;
    }

    #navbar-lista-botoes {
        width: 100%;
        justify-content: center;
        gap: 2px;
        flex-wrap: wrap;
    }

    .navbar-botao-link,
    #navbar-analise-link {
        font-size: 19px;
    }

    #navbar-logo-img {
        padding: 10px;
        padding-left: 20px;
    }

    #hero {
        grid-template-areas:
            "text"
            "nothing";
        grid-template-columns: 1fr;
    }

    .servico-descricao-container {
        height: 9%;
    }

    #container-texto-hero {
        justify-content: center;
        text-align: left;
        margin-right: 45%;
        padding: 2rem 1rem;
    }

    #texto-hero {
        font-size: 50px;
    }

    #img-hero {
        grid-area: 1/1/2/2;
        opacity: 0.9;
    }

    .titulo-secao {
        font-size: 42px;
        text-align: center;
    }

    #servicos-tabela {
        width: 85%;
        gap: 45px;
    }

    .servico-front {
        flex-direction: column;
    }

    .servico-back {
        transform: rotateY(180deg);
    }

    .servico-inner.flipado {
        transform: rotateY(180deg);
    }

    .servico-container {
        flex-direction: column;
        height: auto;
        min-height: 400px;
    }


    .servico-img {
        mask-image: url(../static/servico-mask-mobile.png);
    }

    .servico-img-container {
        flex-basis: auto;
        height: 50%;
        width: 100%;
    }

    .servico-descricao-container {
        padding: 10px 10px 10px 10px;
    }

    .servico-nome {
        margin-left: 22px;
        text-align: center;
        margin: auto;
        margin-top: 30px;
        line-height: 28px;
        font-size: 25px;
    }

    .servico-btn-saiba-mais {
        margin: 0 auto -1px;
        margin-top: 5%;
        align-self: center;
    }

    #retirar-analises-container {
        flex-direction: column;
        width: 85%;
        gap: 20px;
        height: auto;
        font-size: 36px;
        text-align: center;
    }

    #retirar-analises-title,
    #retirar-analises-btn {
        width: 100%;
    }

    #noticias-tabela {
        width: 85%;
    }

    .noticia-container {
        flex-direction: column;
        height: auto;
    }

    .noticia-img {
        width: 100%;
        height: 200px;
    }

    .noticia-conteudo {
        width: 100%;
        padding: 15px;
    }

    /* Contato */
    #infos-container {
        flex-direction: row;
        width: 85%;
        gap: 20px;
    }

    #mapa-container,
    #contato-container {
        flex-basis: 100%;
        width: 70%;
    }

    #contato-container {
        padding: 30px 20px;
        width: 70%;
    }

    .contato-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    #container-titulo-noticia {
        width: 90%;
        left: 5%;
        right: 5%;
        padding: 20px;
    }

    .img-rede-social {
        width: 45px;
    }

    #noticia-corpo {
        width: 85%;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    #noticia-cabecalho-container {
        --noticia-container-titulo-profundidade: 50px;
    }

    #noticia-corpo-container {
        --noticia-corpo-container-profundidade: 100px;
    }


    #navbar {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #logo-navbar {
        flex-basis: unset;
    }

    .hamburguer {
        display: flex;
        margin-right: 15px;
    }

    #navbar-botoes-container {
        display: none;
        flex-direction: column;
        flex-basis: 100%;
        gap: 25px;
        border-top: 5px solid #4fb3b3;
        padding: 15px 0;
        align-items: flex-start;
        background-color: white;
        position: absolute;
        top: 100%;
        width: 100%;
        height: fit-content;
    }

    #navbar-lista-botoes,
    #navbar-botoes-container {
        gap: 20px;
    }

    #navbar-botoes-container.active {
        display: flex;
    }

    .navbar-botao-link,
    #navbar-analise-link {
        padding: 0;
    }

    #navbar-lista-botoes {
        flex-wrap: wrap;
    }

    .navbar-botao {
        flex-basis: 100%;
        margin-left: 30px;
    }

    #navbar-botao-analise-container {
        justify-content: left;
    }

    #navbar-analise-link {
        margin-right: 0;
        margin-left: 30px;
        width: fit-content;
    }

    #container-texto-hero {
        margin: 50px 0;
        margin-right: 30%;
    }

    #img-hero {
        object-fit: cover;
        height: 100%;
    }

    #servicos-tabela {
        grid-template-columns: 1fr;
        width: 70%;
    }

    .servico-img-container {
        height: 50%;
    }

    #retirar-analises-title {
        font-size: 42px;
    }

    .avaliacoes-card {
        width: 86%;
    }

    .avaliacoes-seta-container:active {
        background-color: unset;
    }

    .avaliacoes-seta-container:active {
        background-color: rgba(0, 0, 0, 0.1);
    }

    #infos-container {
        flex-direction: column;
        align-items: center;
    }

    #mapa-container,
    #contato-container {
        flex-basis: unset;
        height: 400px;
        width: 100%;
    }

    .titulo-secao {
        margin-top: 1em;
    }

    #noticia-cabecalho-img {
        height: 700px;
    }

    #container-titulo-noticia {
        bottom: calc(var(--noticia-container-titulo-profundidade) * -1);
    }

    #noticia-corpo-container {
        margin-top: var(--noticia-corpo-container-profundidade);
    }


    #noticia-titulo {
        font-size: 40px;
        hyphens: auto;
    }
}

/* Responsivo */
@media (max-width: 480px) {
    #navbar {
        justify-content: space-between;
    }

    /* Esconde o menu por padrão */
    #navbar-botoes-container {
        display: none;
    }

    #navbar-botoes-container {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        background: white;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 15px 0;
        border-top: 5px solid #4fb3b3;
        z-index: 999;
        margin-top: 0;
        z-index: 5;
    }

    #navbar-botoes {
        margin-left: 30px;
    }

    .navbar-botao {
        margin: 0;
    }

    #navbar-botao-analise-container {
        flex-direction: column;
        margin-right: 0;
        margin-left: 30px;
    }

    #navbar-lista-botoes,
    #navbar-botao-analise-container {
        align-items: start;
    }

    #navbar-lista-botoes,
    #navbar-botoes-container {
        gap: 15px;
    }

    #navbar-analise-link {
        margin: 0;
        padding: 0;
    }

    .hamburguer {
        margin-right: 20px;
    }

    /* Links e botões um abaixo do outro */
    #navbar-botoes-container ul {
        flex-direction: column;
    }

    #container-texto-hero {
        grid-area: 1/1/2/3;
        margin-right: 5%;
    }

    #texto-hero {
        font-size: 35px;
        margin-right: 30%;
        margin-top: 5%;
    }

    #avaliacoes-container {
        display: grid;
        grid-template-rows: 1fr auto;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .avaliacoes-seta-container.esquerda {
        grid-area: 2/1/3/2;
        justify-self: right;
    }

    .avaliacoes-seta-container.direita {
        grid-area: 2/2/3/3;
        justify-self: left;
    }

    #avaliacoes-tabela-container {
        grid-area: 1/1/2/3;
        width: 100%;
    }

    .avaliacoes-card {
        width: 85%;
    }

    #noticia-titulo {
        font-size: 35px;
    }
}

@media screen and (max-width: 320px) {
    #logo-navbar {
        width: 230px;
    }

    .img-rede-social {
        width: 40px;
    }
}