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

.estilo_site {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(0, 97, 52);
}

.estilo_container_cabecalho {
    display: flex;
    align-items: center;
    border-radius: 45px;
    border: 2px solid rgba(251, 210, 69);
    height: 80px;
    margin-top: 1%;
    margin-left: 1%;
    margin-right: 1%;
}

.estilo_texto_titulo {
    text-align: left;
    margin-left: 2%;
    color: rgb(255, 255, 255); /* Cor anterior rgba(251, 210, 69)*/
    font-weight: bold;
    font-size: 300%;
}

.estilo_texto_nome_usuario {
    font-family: sans-serif;
    text-align: center;
    margin-left: 1%;
    margin-right: 1%;
    color: rgb(255, 249, 164); /* Cor anterior rgba(251, 210, 69)*/
    -webkit-text-stroke: 2px black;
    font-size: 250%;
    width: 45%;
}

.estilo_texto_titulo_relatorio {
    text-align: center;
    margin-left: 2%;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 250%;
}

.estilo_imagem_logo_site {
    margin-left: auto;
    height: calc(100% - 10px);
    width: 250px;
    margin-right: 2%;
    background-color: rgb(255, 255, 255, 0.75);
    border-radius: 45px;
}

.estilo_botao_voltar {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    background-color: rgb(255, 255, 255, 0.75);
    height: calc(100% - 20px);
    width: 220px;
    margin-left: 2%;
    border-radius: 45px;
    cursor: pointer;
}
.estilo_botao_voltar:hover {
    background-color: rgb(157, 157, 157);
}

.estilo_botao_voltar img {
    width: 50%;
    height: 100%;
}
.estilo_texto_voltar {
    font-size: 200%;
    font-weight: bold;
    margin-right: 1%;
}

.estilo_container_botoes {
    display: flex;
    align-content: flex-start;
    justify-content: left;
    flex-wrap: wrap;
    width: calc(100% - 20px);
    height: 100%;
    padding-left: 20px;
    padding-top: 20px;
    gap: 20px;
}

.estilo_container_relatorio {
    height: 100%;
    width: calc(100% - 40px);
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
}

.estilo_relatorio {
    height: 100%;
    width: 100%;
}

.estilo_botao_relatorio {
    display: flex;
    align-items: center;
    width: calc(33.33% - 20px);
    height: 200px;
    box-sizing: border-box;
    padding: 0;
    border: none;
    border-radius: 45px;
    background-color: #e8e8e8;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.estilo_botao_relatorio:hover {
    background-color: rgb(157, 157, 157);
}

.estilo_texto_botao_relatorio {
    width: 65%;
    font-size: 250%;
    padding-left: 3%;
    color: rgb(0, 0, 0);
    text-align: left;
    font-weight: bold;
    z-index: 2;
}

.estilo_imagem_botao_relatorio {
    width: 35%;
    height: 100%;
    background-color: rgba(251, 210, 69, 0.5);
}

.estilo_imagem_botao_relatorio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Para Tablets (2 botões por linha) */
@media (max-width: 1200px) {
    .estilo_botao_relatorio {
        width: calc(50% - 20px); 
    }
    .estilo_texto_titulo {
        font-size: 250%;
    }
    .estilo_texto_nome_usuario{
        font-size: 200%;
    }
    .estilo_texto_botao_relatorio {
        font-size: 200%;
    }
}

/* Para Celulares (1 botão por linha) */
@media (max-width: 990px) {
    .estilo_botao_relatorio {
        width: calc(50% - 20px); 
        height: 120px;
    }
    .estilo_texto_titulo {
        font-size: 200%;
    }
    .estilo_texto_nome_usuario{
        font-size: 150%;
    }
    .estilo_texto_botao_relatorio {
        font-size: 150%;
    }
}

@media (max-width: 800px) {
.estilo_botao_relatorio {
        width: calc(100% - 20px);
        height: 80px;
    }
    .estilo_texto_titulo {
        font-size: 150%;
    }
    .estilo_texto_nome_usuario{
        font-size: 100%;
        -webkit-text-stroke: 1px black;
    }
    .estilo_texto_botao_relatorio {
        font-size: 100%;
    }
}