@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

:root {
    --font-destaque: 'Poppins';
    --font-padrao: 'Montserrat', sans-serif;

    --cor01: #97d9e9;
    --cor02: #0099BF;
    --cor03: #0177AC;
    --cor04: #23b311;
}

* {
    margin: 20;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: var(--font-padrao);
    font-size: 1.1em;
    font-weight: 500;
    line-height: 2em;
    background-color: var(--cor01);
    margin: 0px;
}

.fundo {
    position: absolute; /*Cria uma espécie de folha, e pode sobrepor ou manter-se atrás*/
    z-index: -1;
    width: 90vw; 
    height: 50vh; 
    overflow: hidden; 
    display: flex;
    background-image: white;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: bold;
    font-size: 25px;
    background-image: linear-gradient(to bottom, var(--cor02), var(--cor03));
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.39);
    padding: 0px 250px;
    height: 150px;
    align-items: center;
    min-width: 800px;
}   

/* .navegacao {
    min-width: 400px;
    max-width: 1000px;
} */

.logo-menu {
    width: 100px;
    height: 100px;
}

.navegacao {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.link-menu {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: var(--font-padrao);
    font-size: .7em;
}

.link-menu:hover {
    color: var(--cor01);
    transition: .5seg;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.397);
}

.titulo {
    justify-content: center;
    display: flex;
    color: var(--cor03);
    font-family: var(--font-destaque);
    font-size: 3em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.185);
}

.subtitulo {
    justify-content: center;
    display: flex;
    color: var(--cor02);
    font-family: var(--font-destaque);;
    font-size: 2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.185);
    font-weight: bold;
}

.form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: var(--font-padrao);
    margin: 100px 0px;
}

.grupo {
    border: none;
    padding-right: 30px;
}

.grupo-pesquisa {
    border: none;
}

.data-inicio-icone {
    border-radius: 10px;
    border: 2px solid var(--cor01);
    color: var(--cor03);
}

.data-fim-icone {
    border-radius: 10px;
    border: 2px solid var(--cor01);
    color: var(--cor03);
}

.botao-pesquisa {
    background-image: url('imagem/lupa.png');
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 50%;
    cursor: pointer;    
}

.imagem-botao {
    width: 20px;
    border-radius: 50%;
}

.grafico {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0px;
}

.container {
    display: flex;
    justify-content:center ;
    color: #000000;
    /*width: 100%;*/
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.192);
    margin: auto;
    border-radius: 10px;
    padding: 15px;
    margin-top: 40px;
    min-width: 800;
    max-width: 1100px;
}


/* .fundo-botao {
    display: flex;
    margin: auto;
    width: 400px;
    height: 60px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.418);

    
    position: fixed;
    right: 35%;
    bottom: 25px;
} */

.botao-enviar {
    width: 140px;
    background-color: var(--cor04);
    color: #ffffff;
    border: none;
    border-radius: 20px;
    height: 30px;
    cursor: pointer;
    transition: 0.3s;
    margin: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.26);

    position: fixed;
    right: 47%;
    bottom: 60px;

    z-index: 9999; /* garante que o botão fique acima de outros elementos */
}

.link-botao-rolagem {
    color: white;
    text-decoration: none;
}

.titulo-container {
    color: #0177AC;
    font-size: 25px;
}

.rodape {
    display: flex;
    flex-direction: column;
    margin: 0px;
    background-color: #222;
    color: rgb(197, 197, 197);
    justify-content: center;
    margin-top: 40px;
    padding: 50px 200px;
    min-width: 600px;
}

.logo-rodape {
    color: white;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.escrita-rodape {
    display: flex;
    flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
}