#mapa-brasil path:hover {
     fill: #E30613;
     cursor: pointer;
}

#mapa-brasil path {
     fill: #d6d6da;
     stroke: #fff;
     cursor: pointer;
     transition: 0.3s;
}

.conter-info-lojas {
     width: 100%;
     display: flex;
     align-items: center;
     flex-direction: column;
     gap: 20px;
}

.linha-loja {
     color: black;
     width: 100%;
     max-width: 1400px;
     display: grid;
     grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
     align-items: center;
     justify-content: space-between;
     padding-bottom: 30px 0px;
     gap: 10px;

     div {
          display: flex;
          justify-content: start;
          text-align: start;
     }
}

.nome-loja {
     font-weight: bold;
     color: #E30613;
     text-transform: uppercase;
}

#estado-click {
     font-size: 32px;
     font-weight: bold;
     text-transform: uppercase;
     text-align: center;
     width: 100%;
}

#lojas {
     text-align: center;
}

.divisor-lojas {
     height: 2px;
     width: 100%;
     background-color: #D9D9D9;
}

#info {
     padding: 40px 0px;
}

#sec-mapa {
     margin: 90px 0px;
     width: 100%;
     display: flex;
     justify-content: center;
}

#mapa-brasil {
     width: 40%;
}

.filtro-mapa {
     padding: 10px 40px;
     background-color: #EBEBEB;
     border-radius: 16px;
     width: 400px;
}

.filtro-mapa select,
.filtro-mapa option {
     background-color: #EBEBEB;
     color: black;
     border: none;
     width: 100%;
     outline-color: transparent !important;
     outline-width: 0px !important;

}
.filtro-mapa option:active, .filtro-mapa option:focus{
    border: none ;
}
#sec-filtro-mapa {
     display: flex;
     flex-wrap: wrap;
     width: 100%;
     justify-content: center;
     gap: 80px;

}

@media screen and (max-width:768px) {
     #mapa-brasil {
          width: 97%;
     }

     #sec-filtro-mapa {
          padding: 0px 30px;
          gap: 20px;
     }

     .filtro-mapa {
          width: 100%;
     }

     .linha-loja {
          grid-template-columns: 1fr 1fr;
          padding: 0px 30px;
     }
}