/* Menu de navegação */

.menu-navegacao {
    position: fixed;
    left: 0;
    right: 0;
    transition: 0.3s ease;
    z-index: 9;
    padding: 20px 0;
}

.menu-navegacao .btn-primary {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.menu-navegacao .nav-link {
    position: relative;
    text-decoration: none;
    padding: 13px 25px;
    transition: linear .2s;
    font-family: var(--font-text-light);
}

.menu-scrolled {
    padding: 10px 0;
    background-color: #191919;
}

.menu-navegacao .navbar-brand img {
    width: 120px;
}

.menu-navegacao .nav-link:hover {
    padding-bottom: 23px;
}

.menu-scrolled .navbar-brand img {
    width: 100px;
}

.menu-navegacao .nav-item a.btn-primary:hover {
    padding-bottom: 13px;
}

.menu-navegacao .nav-item a.nav-link {
    color: #fff;
}

.menu-navegacao .nav-item a.nav-link-destaque {
    border-radius: var(--border-radius);
    color: #fff;
}

.menu-navegacao .nav-item a.nav-link-destaque:hover {
    padding-bottom: 13px;
}

@media (min-width: 992px) {
    .menu-navegacao .nav-item a.nav-link-destaque {
        padding-left: 15px;
        padding-right: 15px;
        background-color: var(--color-alternative);
        transition: linear .2s;
    }

    .menu-navegacao .nav-item a.nav-link-destaque:hover {
        background-color: var(--color-alternative-hover);
    }

    .menu-navegacao .collapse {
        justify-content: end;
    }

    .menu-navegacao ul.navbar-nav {
        gap: 30px;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .menu-navegacao .navbar-toggler {
        border-color: #fff;
        box-shadow: none;
    }

    .menu-navegacao .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .menu-navegacao ul.navbar-nav {
        gap: 10px;
        background-color: #191919;
        padding: 20px 20px 30px 20px;
        border-radius: 8px;
        margin-top: 10px;
        border: 2px solid var(--background-color);
    }

    .menu-navegacao .nav-item a.nav-link-destaque {
        margin-left: 0;
        border: none;
        color: var(--color-alternative);
        font-family: var(--font-text-regular);
    }
}

@media (max-width: 575.98px) {
    .menu-navegacao ul.navbar-nav {
        padding: 30px 20px 40px 20px;
    }
}

/* Banner */

.banner {
    position: relative;
}

.banner img {
    width: 100%;
}

.banner-mobile {
    display: none;
}

.banner-conteudo {
    text-transform: uppercase;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 30%;
}

.banner-conteudo h1 {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 110%;
    font-size: 2.3rem;
    width: 37%;
    margin-bottom: 40px;
    font-family: var(--font-title-semibold);
}

.banner-conteudo h1 span {
    color: var(--color-primary);
    line-height: 110%;
    font-family: var(--font-title-extrabold);
}

.banner-conteudo a {
    text-transform: initial;
}

.banner-ancora {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    height: 110px;
    transition: transform 0.3s ease;
}

.banner-ancora a {
    padding: 0 40px 10px 40px;
}

.banner-ancora a svg {
    height: 70px;
    transition: transform 0.3s ease; /* Ajuste o tempo conforme necessário */
    transform-origin: top; /* Define a origem da transformação para o topo */
}

.banner-ancora a:hover svg {
    transform: scaleY(1.2); /* Expande o SVG apenas para baixo */
}

@media (max-width: 1399.98px) {
    .banner-conteudo h1 {
        font-size: 2rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 1199.98px) {
    .banner-conteudo h1 {
        width: 42%;
    }
}

@media (max-width: 767.98px) {
    .banner-mobile {
        display: block;
    }

    .banner-desktop {
        display: none;
    }

    .banner-conteudo {
        top: 15%;
    }

    .banner-conteudo h1 {
        font-size: 2rem;
        width: 95%;
    }

    .banner-conteudo .btn-group {
        justify-content: space-between;
    }

    .banner-ancora {
        display: none;
    }
}

/* Sobre nós */

.sobre {
    padding: 100px 0;
}

.sobre-conteudo {
    display: flex;
    gap: 150px;
}

.sobre-left {
    width: 55%;
}

.sobre-left img {
    width: 100%;
}

.sobre-right {
    flex: 1;
}

.sobre-left div.sobre-left-conteudo {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.sobre-left h4 {
    text-transform: uppercase;
    font-family: var(--font-title-extrabold);
    color: var(--color-primary);
    font-size: 2.5rem;
}

.sobre-left p {
    text-transform: uppercase;
    font-size: 1.8rem;
    font-family: var(--font-title-bold);
    line-height: 110%;
    padding-right: 20px;
}

.sobre-right h1 {
    font-size: 2rem;
    text-transform: uppercase;
    font-family: var(--font-title-bold);
}

.sobre-right div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    overflow: hidden;
}

.sobre-right div a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    position: relative;
}

.sobre-right div a span {
    position: relative;
}

.sobre-right div a span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.5s ease-out;
}

.garantia {
    padding: 30px 0;
    background-color: var(--color-primary);
}

.garantia p {
    text-align: center;
    color: var(--background-color);
    margin: 0;
    font-family: var(--font-text-light);
}

.sobre2 {
    display: flex;
    justify-content: center;
    padding: 100px 0;
}

.sobre2-container {
    width: 95%;
    max-width: 900px;
    position: relative;
}

.sobre2-container-mobile,
.sobre2-container-desktop {
    width: 100%;
}

.sobre2-container-mobile {
    display: none;
}

.sobre2-conteudo {
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    bottom: 0;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sobre2-conteudo h2 {
    text-align: center;
    margin-bottom: 20px;
    width: 70%;
    text-transform: uppercase;
    font-family: var(--font-title-bold);
}

.sobre2-conteudo p {
    text-align: center;
}

.sobre2-ancora {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    display: flex;
    justify-content: center;
}

.sobre2-ancora a {
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-right-item,
.sobre2-ancora {
    opacity: 0;
}

@media (min-width: 992px) {
    .sobre-right div a:hover span::before {
        width: 100%;
    }
}

@media (max-width: 1399.98px) {
    .sobre-left p {
        padding-right: 0;
    }
}

@media (max-width: 1199.98px) {
    .sobre-conteudo {
        gap: 100px;
    }

    .sobre-left p {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .sobre-left div.sobre-left-conteudo {
        flex-direction: column;
    }

    .sobre-left p {
        font-size: 1.5rem;
    }

    .sobre-conteudo {
        gap: 80px;
    }

    .sobre-right h1 {
        font-size: 1.5rem;
    }

    .sobre2-container-desktop {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .sobre-conteudo {
        flex-direction: column;
    }

    .sobre-left {
        width: 100%;
    }

    .sobre2-container-mobile {
        display: block;
        height: 460px;
    }

    .sobre2-container-desktop {
        display: none;
    }

    .sobre2 {
        padding: 50px 0;
    }

    .sobre2-conteudo {
        left: 20px;
        right: 20px;
    }

    .sobre2-conteudo h2 {
        width: 90%;
    }

    .sobre {
        padding: 50px 0;
    }
}

/* Atuação */

.atuacao {
    padding: 100px 0;
    background-image: url('../images/atuacao-desktop.webp');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 700px;
}

.atuacao h1 {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 110%;
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: var(--font-title-semibold);
    width: 80%;
    text-transform: uppercase;
}

.atuacao p {
    color: #eee;
    font-family: var(--font-text-light);
    line-height: 130%;
    width: 80%;
}

.atuacao p br {
    margin-bottom: 20px;
}

.atuacao h1 span {
    color: var(--color-primary);
    line-height: 110%;
    font-family: var(--font-title-extrabold);
}

.atuacao-conteudo {
    display: flex;
    justify-content: space-between;
}

.atuacao-left {
    width: 53%;
}

.atuacao-right {
    flex: 1;
}

.atuacao-right img {
    width: 100%;
}

@media (max-width: 1399.98px) {
    .atuacao p,
    .atuacao h1 {
        width: 90%;
    }
}

@media (max-width: 1199.98px) {
    .atuacao-left {
        width: 65%;
    }

    .atuacao p {
        color: #eee;
        font-family: var(--font-text-light);
        line-height: 140%;
        width: 80%;
        font-size: 0.9rem;
    }

    .atuacao h1 {
        font-size: 1.7rem;
    }

    .atuacao {
        min-height: 650px;
    }
}

@media (max-width: 991.98px) {
    .atuacao-right {
        display: none;
    }

    .atuacao-left {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .atuacao-right {
        display: contents;
    }
    
    .atuacao-conteudo {
        flex-direction: column;
        gap: 70px 0;
    }

    .atuacao h1,
    .atuacao p {
        width: 100%;
    }

    .atuacao {
        padding: 60px 0;
    }
}

/* Totais */

.totais {
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.totais-conteudo {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.totais-conteudo p {
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 0.95rem !important;
}

.totais-conteudo p strong {
    font-size: 3.9rem !important;
    color: var(--color-primary);
    font-family: var(--font-title-bold);
    text-transform: uppercase;
    margin-bottom: -10px;
}

.totais-conteudo p span {
    line-height: 100%;
}

@media (max-width: 1199.98px) {
    .totais-conteudo p strong {
        font-size: 3rem !important;
    }
}

@media (max-width: 991.98px) {
    .totais {
        padding: 50px;
    }
}

@media (max-width: 767.98px) {
    .totais-conteudo p strong {
        font-size: 3rem !important;
    }
}

@media (max-width: 575.98px) {
    .totais {
        padding: 50px 20px;
    }

    .totais-conteudo {
        flex-wrap: wrap;
    }

    .totais-conteudo p {
        width: 50%;
    }
}

/* Corporativo */

.corporativo-conteudo {
    display: flex;
    justify-content: space-between;
}

.corporativo-card {
    position: relative;
    width: 31%;
    opacity: 0;
    background-color: #fff;
    padding: 40px 50px;
    min-height: 270px;
    transition: linear .2s;
}

.corporativo-card:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.img-bg-corporativo {
    width: 100%;
}

.corporativo-card h3 {
    text-transform: uppercase;
    font-family: var(--font-title-bold);
    margin-bottom: 10px;
}

.corporativo-card p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.cc-top {
    position: absolute;
    top: -1px;
    left: -1px;
}

.cc-bottom {
    position: absolute;
    bottom: -1px;
    right: -1px;
}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {
    
}

@media (max-width: 991.98px) {
    .corporativo-conteudo {
        flex-direction: column;
        gap: 40px;
    }

    .corporativo-card {
        width: 100%;
        min-height: fit-content;
    }
}

@media (max-width: 767.98px) {
    
}

@media (max-width: 575.98px) {
    
}

/* Projetos */

.gallery {
    display: flex;
}
  
.gallery-item {
    width: 28%;
    box-sizing: border-box;
    margin-bottom: 40px;
    margin-right: 60px;
}
  
.gallery-item img {
    width: 100%;
    height: 259px;
    object-fit: cover;
    display: block;
}

.filters-button-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.filters-button-group button {
    background: transparent;
    padding: 13px 20px;
    border: 1px solid transparent;
}

.filters-button-group button.active {
    border-color: var(--color-primary);
}

.projetos {
    padding: 80px 0;
}

.projetos h1 {
    text-transform: uppercase;
    font-family: var(--font-title-bold);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.gallery-tag {
    position: absolute;
    top: 15px;
    background: #222;
    color: var(--background-color);
    padding: 8px 10px;
    border-radius: 2px;
    font-size: 0.7rem;
    font-family: var(--font-text-light);
    left: -15px;
}

.gallery-descricao {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 10px 29px;
    font-size: 0.9rem;
    font-family: var(--font-text-light);
}

.gallery-item-svg-bottom {
    position: absolute;
    bottom: -1px;
    left: -1px;
}

.gallery-item-svg-top {
    position: absolute;
    top: -1px;
    right: -1px;
}

@media (max-width: 1199.98px) {
    .gallery {
        flex-wrap: wrap;
    }

    .gallery-item {
        width: 40%;
    }
}

@media (max-width: 767.98px) {
    .gallery-item {
        width: 100%;
    }

    .filters-button-group {
        flex-wrap: wrap;
        gap: 30px 0;
    }
}

/* Clientes */

section#clientes {
    background: #fff;
    padding: 50px 0;
    position: relative;
}

.clientes-conteudo {
    display: flex;
    justify-content: space-between;
}

.clientes-conteudo-left {
    width: 30%;
}

.clientes-conteudo-left h1 {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 2rem;
    font-family: var(--font-title-bold);
}

.clientes-conteudo-left h1 strong {
    color: var(--color-primary);
    font-family: var(--font-title-extrabold);
    width: 75%;
}

.clientes-conteudo-right {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 50px;
}

.cliente-svg {
    position: absolute;
    top: -1px;
    right: 0;
}

.depoimentos-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.depoimentos-slider2 {
    margin-top: 30px;
}

.cliente-img {
    width: 150px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1199.98px) {
    .clientes-conteudo {
        gap: 40px;
        flex-direction: column;
    }

    .clientes-conteudo-left,
    .clientes-conteudo-right {
        width: 100%;
    }

    .clientes-conteudo-right {
        gap: 30px 50px;
    }
}

@media (max-width: 767.98px) {
    .clientes-conteudo-right {
        gap: 30px;
        justify-content: space-evenly;
    }
}

/* Rodapé / Footer */

footer {
    background-color: #191919;
    padding: 70px 0 50px 0;
}

.footer_assinatura {
    background-color: #191919;
    padding-bottom: 20px;
}

.footer_assinatura .container {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #737373;
}

.footer_assinatura .container p {
    color: var(--background-color);
    font-size: 0.9rem;
}

.form-footer {
    background-color: #000;
    border-radius: 3px;
    padding: 40px;
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
}

.form-footer h6 {
    color: var(--color-primary);
    text-transform: uppercase;
}

.form-footer h3 {
    color: var(--background-color);
    text-transform: uppercase;
    font-family: var(--font-title-bold);
    display: flex;
    flex-direction: column;
    line-height: 130%;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.form-footer h3 strong {
    color: var(--color-primary);
    font-family: var(--font-title-extrabold);
}

.input-form {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: 0;
    color: var(--background-color);
    font-family: var(--font-text-regular);
    letter-spacing: 1px;
    transition: linear .2s;
}

.grup-form.active {
    border-color: var(--background-color);
}

.grup-form.active label {
    color: var(--background-color);
}

.grup-form {
    padding: 7px 15px;
    border: 1px solid #5e5e5e;
    margin-bottom: 15px;
    border-radius: 3px;
}

.grup-form label {
    color: #737373;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 0.7rem;
}

.form-footer .btn-primary {
    padding: 15px 25px;
}

a.assinatura svg path {
    transition: linear .2s;
}

a.assinatura:hover svg path {
    fill: #2192bf;
}

.footer-img-logo {
    width: 100px;
}

footer h4 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 1rem;
    font-family: var(--font-title-bold);
    margin-bottom: 20px;
}

footer a {
    color: var(--background-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-segunda-secao {
    margin-top: 100px;
}

.midias {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.midias div {
    display: flex;
    gap: 10px;
}

.midias div a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border: 1px solid transparent;
    transition: linear .2s;
}

.midias div a:hover {
    background-color: var(--color-primary);
}

.footer-right {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1199.98px) {
    .form-footer-row {
        margin-bottom: 50px;
    }

    .footer-links-segunda-secao {
        margin-top: 80px;
        margin-bottom: 50px;
    }
}

@media (max-width: 991.98px) {
    .footer-img-box {
        display: none;
    }

    .container-mapa svg {
        width: 100% !important;
    }

    #mapa {
        margin-bottom: 80px !important;
    }
}

@media (max-width: 767.98px) {
    .footer_assinatura .container {
        padding-top: 30px;
        flex-direction: column;
        gap: 10px 0;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer-box-escritorio {
        margin-top: 40px;
    }

    .footer-links-segunda-secao {
        margin-top: 40px;
    }

    footer {
        padding: 70px 0 10px 0;
    }

    .midias {
        padding-top: 0;
        padding-bottom: 20px;
        justify-content: space-evenly;
    }

    .footer_assinatura .container p {
        font-size: 0.8rem;
    }
}

/* WhatsApp Flutuante */

@media (max-width: 575.98px) {
    #whatsclub-widget {
        bottom: 20px !important;
    }

    #whatsclub-widget>.wc--button-fab {
        max-width: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
        max-height: 55px !important;
    }

    #whatsclub-widget>.wc--button-fab>.wc--icon>.wc--icon--svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Termo de Consentimento de Cookies */

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    display: none;
    z-index: 1000;
}

.cookie-conteudo {
    text-align: center;
    color: white;
    font-size: 14px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .cookie-conteudo {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-conteudo p {
        font-size: 0.8rem;
    }
}

.cookie-conteudo p {
    margin: 0;
}

#cookieConsent button {
    background-color: #f1c40f;
    border: none;
    padding: 10px 20px;
    color: black;
    font-weight: bold;
    margin-left: 15px;
    cursor: pointer;
}

#cookieConsent a {
    color: #f1c40f;
    text-decoration: underline;
}

/* Vídeo */

.player-container {
    max-width: none;
}

.plyr {
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #F5FEFD;
}

.plyr__poster {
    background-size: cover !important;
}

.plyr__video-wrapper {
    height: auto;
}

.carregamento-video {
    display: none !important;
}

@media (min-width: 768px) {
    .plyr {
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .plyr {
        height: 100%;
    }
}

.list-programa-integridade {
    list-style: none;
}

.container-politica-compliance {
    margin: 50px auto;
    max-width: 800px;
    width: 100%;
    padding: 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #333;
    line-height: 1.6;
}

.contato-rodape {
    color: #bababa;
    padding-left: 20px;
}

.endereco-rodape {
    color: #bababa;
    padding-right: 20px;
    text-align: right;
}

.telefone-rodape {
    display: inline-block;
}

.span-rodape {
    font-size: 12px;
    margin-right: 10px;
}

.rodape-politica-compliance {
    background-color: #040404;
    padding: 30px 0 30px 0px;
}

.rodape-politica-compliance p {
    margin-bottom: 0px;
}

.logo-compliance {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    width: 200px;
}

.rodape-politica-compliance a {
    font-size: unset;
    display: block;
}

#secao-form-denuncia {
    padding-top: 50px;
    padding-bottom: 50px;
}

#descricao {
    min-height: 200px;
}

.btn-denuncia {
    margin-top: 20px;
    background-color: #191919;
}

.titulo-denuncia {
    margin-bottom: 20px;    
}

.recgaptcha-form-denuncia {
    margin-top: 15px;
}

#modal-form-denuncia {
    background-color: rgba(0, 0, 0, 0.7);
}

#modal-form-denuncia .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px 20px 30px 20px;
    width: 70%;
    height: auto;
    border-radius: 10px;
}

#modal-form-denuncia .close {
    cursor: pointer;
    display: flex;
    background-color: red;
    border-radius: 15px;
    width: 30px;
    position: absolute;
    right: 14px;
    justify-content: center;
    color: white;
    font-size: 19.5px;
}

@media (max-width: 768px) {
    #modal-form-denuncia .modal-content {
        width: 95%;
        padding: 20px;
    }
}

@media (min-width: 1500px) {
    #modal-form-denuncia .modal-content {
        width: 50%;
    }
}

.gallery-item.industrial {
    height: 340px;
}

.container-mapa svg {
    width: 50%;
}

.container.container-mapa { 
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.titulo-mapa h1 {
    font-size: 2rem;
    text-transform: uppercase;
    font-family: var(--font-title-bold);
}

#mapa {
    margin-bottom: 100px;
}

.container-mapa path {
    fill: #A6A6A6;
}

.mapa-legenda {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.mapa-legenda span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.mapa-legenda .ativo {
    background: #0c4f32;
}

.container-mapa path#BA,
.container-mapa path#SE,
.container-mapa path#PB,
.container-mapa path#PI,
.container-mapa path#PA,
.container-mapa path#GO,
.container-mapa path#MG,
.container-mapa path#ES,
.container-mapa path#RJ,
.container-mapa path#SP,
.container-mapa path#AL {
    fill: #0c4f32;
}

.container-mapa path#BA:hover,
.container-mapa path#SE:hover,
.container-mapa path#PB:hover,
.container-mapa path#PI:hover,
.container-mapa path#PA:hover,
.container-mapa path#GO:hover,
.container-mapa path#MG:hover,
.container-mapa path#ES:hover,
.container-mapa path#RJ:hover,
.container-mapa path#SP:hover,
.container-mapa path#AL:hover {
    fill: #117147 !important;
}

.container-mapa path:hover {
    fill: #979797;
}