*{
    font-family: Calibri;
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
    color: #fff;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    display: none;
}

html{
    font-size: 100%;
    background-image: url(../img/index/teste2.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: cover; */
}
/* INICIO PLANO DE FUNDO - AZUL*/
body{
    background: rgba(31, 70, 156, 0.315);
    height: 100vh;
}
/* INICIO HEADER - PLANO AZUL*/
header{
    position: relative;
	padding: 0.8rem 10%;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	background: #ff0000da;
	justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.822);
}
/* LOGO */
header img{
    height: 8vh;
}
/* CONTATO - LGPD */
header .navbar a{
    font-size: 1.1rem;
    margin: 1rem;
    text-transform: uppercase;
}
/* ICONES DO CONTATO - LGDP */
header .navbar i{
    display: contents;
}

/* HOVER DO CONTATO - LGDP */

/* FIM DO HEADER */
.main{
    display: flex;
    text-align: center;
}
/* QUADRADO BRANCO */
.main .container{
    background: rgba(255, 255, 255, 0.795);
    border: 1px solid #004e8dda; /* PLANO BRANCO - BORDA */
    margin: 5rem; /* PLANO BRANCO - DIAGONAL LADOS */
    border-radius: 3px; /* PLANO BRANCO - OVAL OU QUADRADO */
    width: 75%; /* PLANO BRANCO - TAMANHO HORIZONTAL */
    position: relative;
    left: 5%;  
}
/* ESCOLHA SEU ESTADO */
.main .container h1{
    margin-top: 25px; /* PLANO BRANCO - TAMANHO VERTICAL */
    color: #0F277E;}

.main .estados{
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 20px;
    display: grid;
    grid-gap: 2px;
	grid-row-gap: 30px;
    grid-template-columns: repeat(4, 1fr); /*PARA MOSTRAR APENAS A QUANTIDADE DOS MAPAS*/
  	/* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
}
.main .container .estados h3{
    color: #0F277E;
}

.main .container .estados h3:hover{
    color: #4e21a0;
    transition: 1s;
}
/* TAMANDO DOS ESTADOS */
.main .estados img{
    margin: 0 auto;
	width: 100px;
	height: 100px;
}
/* LADO DO AVATAR */
.main img.mascote{
    position: absolute;
    right: 40px;
    bottom:1px;
    transform: matrix(1, 0, 0, 1, 0, 0);
}
/* TAMANHO DO AVATAR */
@media /*(min-width: 1400px) and*/ (min-height:730px)
{.main img.mascote{height: 35%;}
 .main .container{flex-wrap: wrap;}}
@media  (max-width:600px){
    *{
        overflow: scroll;
    }
    .header{
        align-items: center;
        justify-content: center;
    }
    .header .navbar a{
        display: none;
    }
    .header img{
        height: 3vh; 
    }
    .main img.mascote{
        display: none;
    }
    .main .estados{
        grid-template-columns: repeat(1, 1fr);
    }
    .main{
        justify-content: center;
    }
    .main .container{
        left: 0;
        width: 50%;
    }
    .main .container h1{
        font-size: 30px;
    }
}
@media (min-width:800px) and (max-width:1024px){
    .main img.mascote{
        display: none;
    }
    .main .container{
        width: 52%;
        left: 5%;
    }
}