/*
 * Utilitários ----------------------------------------------
 */

:root {
    --color-pink: #DD2E73;
    --color-pink-light: #E24B87;
    --color-purple: #9313ce;
    --color-purple-2: #6b3394;
    --color-blue: #53c9ed;
    --color-blue-2: #7a5fc2;
    --color-blue-dark: #0c4c96;
    --color-yellow: #fed675;
    --color-yellow-dark: #ffae00;
    --color-green: #19b885;
    --color-gray-dark: #5d5d5d;
    --color-gray-light: #d5d5d5;
    --color-red-dark: #e84f23;
    --title-font-size: 2rem;
    --ellipsis-columns: 1;
}

html {
    position: relative;
    min-height: 100%;
    overflow-x: hidden !important;
}

body {
    font-size: 18px;
    font-family: 'Maven Pro', sans-serif;
    background-color: #eeeeee;
    height: 100vh;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--ellipsis-columns);
    -webkit-box-orient: vertical;
    line-clamp: var(--ellipsis-columns);
}

.radius-top-x {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

@media (min-width: 768px) {
    .radius-top-x {
        border-top-left-radius: 3rem;
        border-top-right-radius: 3rem;
    }
}
/*
 * ----------------------------------------------------------
 */

.btn-pink {
    background-color: var(--color-pink);
    border-color: var(--color-pink);

    width: fit-content;
    font-weight: 400;
}

.btn-pink a {
    color: #fff;
    text-decoration: none;
}

.btn-pink:hover {
    background-color: var(--color-pink-light);
    border-color: var(--color-pink-light);
}

.card-empresa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 3rem 0;
}

@media screen and (min-width: 768px) {
    .card-empresa {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (min-width: 992px) {
    .card-empresa {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.card-empresa__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: var(--color-yellow);

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-empresa__title {
    max-width: 230px;
    overflow: hidden;

    white-space: nowrap;
    font-size: 1rem;
    font-weight: 700;
    text-overflow: ellipsis
}

.card-empresa__subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
}

.card-empresa__image-container {
    height: auto;
    width: 250px;
    aspect-ratio: 1.25;
    border-radius: 0.5rem;

    overflow: hidden;

}

@media screen and (min-width: 1200px) {
    .card-empresa__image-container {
        height: auto;
        width: 300px;
        aspect-ratio: 1.25;
    }
}

.card-empresa__image-container img {
    height: 100%;
    width: 100%;

    transition: transform 0.3s;
}

.card-empresa__container:hover img {
    transform: scale(1.05);
}

.resultado-pesquisa__titulo {
    font-size: var(--title-font-size);
    font-weight: 700;
    color: var(--color-blue)
}

.resultado-pesquisa__subtitulo {
    font-size: 1rem;
    color: var(--color-blue)
}

.resultado-pesquisa__conteudo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 4rem 0 8rem;
}

.resultado-pesquisa__conteudo form, .resultado-pesquisa__conteudo a{
    display: flex;
}

.resultado-pesquisa__button {
    all: unset;
    display: block;
    width: 100%;
    padding: 1.5rem 4rem;

    text-align: left;
    color: #343434;

    background-color: #f3f3f3;
    outline: none;

    border-left-color: var(--color-blue);
    border-left-width: 20px;
    border-left-style: solid;
}

.resultado-pesquisa__pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    margin-top: 2rem;

    text-align: center;
}

@media (min-width: 768px) {
    .resultado-pesquisa__pagination {
        align-items: flex-end;
        text-align: left;
    }
}

.box-segmentos-home {
    border-left-color: #fbae2a;
    border-left-width: 20px;
    border-left-style: solid;
    background-size: cover;
    width: 100%;
    background-color: #f3f3f3;
    height: auto;
    text-align: center;
    color: #343434;
    font-size: 15pt;
    margin-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.container {
    max-width: 1200px;
}

.row-no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row-no-gutters [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.w-max-100 {
    max-width: 100%;
}

.rodape {
    height: auto;
    background-color: #0e549e;
    background-size: cover;
    width: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-top: 8%;
}

.rodape-mobile {
    height: auto;
    background-color: #0e549e;
    background-size: cover;
    width: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.texto-rodape {
    font-size: 20pt;
    color: #FFFFFF;
    margin-left: 1%;
    margin-top: -1%;
    float: left;
}

.texto-rodape-mobile {
    font-size: 15pt;
    color: #FFFFFF;
}

.texto-assinatura-masterix {
    font-size: 12pt;
    color: #258fd9;
}

.hr-assinatura {
    border: 2px solid #FBA51C;
}

@keyframes AnimationNormal {
	0% { background-size: 400% 400%; }
	25% { background-size: 300% 300%; }
	50% { background-size: 200% 200%; }
	75% { background-size: 150% 150%; }
	100% { background-size: 100% 100%; }
}
.fundo-gradiente-animado-500 {
	background: linear-gradient(-10deg, #4ac1ec 10%, #4ac1ec 20%, #4ac1ec 30%, #6b3394 95%);
    -webkit-animation: AnimationNormal 4s ease 1;
    -moz-animation: AnimationNormal 4s ease 1;
    animation: AnimationNormal 4s ease 1;
}

.fundo-animado-cores-nl {
    background: linear-gradient(90deg, #e75122 10%, #bb308b 20%, #7559a4 30%, #4eb9eb 75%, #61b66f 95%);
    -webkit-animation: AnimationNormal 4s ease 1;
    -moz-animation: AnimationNormal 4s ease 1;
    animation: AnimationNormal 4s ease 1;
}

.fundo-branco {
    background-color: #fff;
}

.fundo-topo {
    width: 100%;
    height: auto;
    padding-bottom: 3%;
    padding-top: 3%;
}

.fundo-topo-mobile {
    width: 100%;
    background-size: cover;
    height: auto;
    padding-bottom: 5%;
    padding-top: 5%;
}

.fundo-menu {
    height: auto;
    padding-bottom: 0.1%;
    padding-top: 0.1%;
    background-color: #4197db;
    width: 100%;
    background-size: cover;
}

.fundo-home-mobile {
    background-color: #4197db;
    height: auto;
    width: 100%;
    background-size: cover;
}

.secao-borda {
    height: .7rem;
}

.secao-borda-dupla {
    height: 1.4rem;
}

.separador-branco {
    opacity: .8;
    color: #fff;
}

a {
    text-decoration: none;
}

.pesquisa__searchbox {
    border-radius:24px;
    border: 2px solid var(--color-pink);
    padding: 3px;
}
.pesquisa__input {
    width: 100%;
    background-color: #fff;
    outline: none;
    border: 1px solid var(--color-gray-light);
    border-right: 0;
    border-radius: 20px;
    padding-bottom: 2.5%;
    padding-top: 2.5%;
    padding-left: 8%;
    font-size: 14px;
    height: 40px;
}

.pesquisa__input-icon {
    border-radius: 0 24px 24px 0;
    border: 1px var(--color-gray-light) solid;
    padding-right: 7px;
    padding-top: 3px;
}

.pesquisa-mobile input {
    width: 100%;
    background-color: #FFFFFF;
    outline: none;
    color: #acacac;
    border: 1px solid var(--color-pink);
    border-radius: 6px;
    padding: 4px;
}

.pesquisa-acima-rodape input {
    width: 100%;
    /*max-width: 350px;    */
    background: url("layout/lupa.png") no-repeat 97% center;
    background-size: auto 16px;
    background-color: #FFFFFF;
    outline: none;
    color: #acacac;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    padding-bottom: 2.5%;
    padding-top: 2.5%;
    font-size: 14px;
    height: 40px;
    /*margin-top: 5% !important;*/
}

.links-topo {
    color: #FFFFFF;
    font-size: 15pt;
    float: left;
    margin-top: 10%;
    margin-left: 3%;
}

.links-topo-mobile {
    color: #FFFFFF;
    font-size: 11pt;
}

.alinhamento-imagens-link-topo {
    float: left;
    margin-top: 10%;
}

/*MENU - INÍCIO*/

/*VISUALIZAÇÃO DESKTOP - INÍCIO*/
@media(min-width: 769px) {
    .navbar-nav>li>a {
        color: var(--color-gray-dark) !important;
        /*font-size: 15pt;        */
        height: auto;
    }

    .nav>li>a {
        position: relative !important;
        display: block !important;
        padding: 0px 0px !important;
    }

    .dropdown-menu {
        background-color: #fbae2a;
        font-size: 12pt;
        color: #FFFFFF;
        width: 250%;
    }

    .dropdown-menu>li>a:hover,
    .dropdown-menu>li>a:focus {
        text-decoration: none;
        color: #FFFFFF !important;
        background-color: #19a3aa !important;
        font-size: 12pt;
        font-weight: bold;
        /*width: 120%;*/
    }
}

/*VISUALIZAÇÃO DESKTOP - FIM*/

.nav>li>a:hover,
.nav>li>a:focus {
    text-decoration: none;
    background-color: transparent !important;
    color: #FFFFFF !important;
    height: auto;
    /*font-size: 15pt;*/
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-menu>li:hover {
    font-size: 18pt;
    color: #FFFFFF;
}

/*VISUALIZAÇÃO DE CELULARES E TABLETS - INÍCIO*/
@media (min-width: 0px) and (max-width: 768px) {
    .navbar-nav>li>a {
        color: #FFFFFF !important;
        font-size: 16px !important;
        font-weight: bold;
    }

    .dropdown-menu {
        background-color: transparent !important;
        font-size: 13px !important;
        color: #FFF112 !important;
        height: 200px !important;
        margin-bottom: 5% !important;
    }

    .dropdown-menu>li>a:hover,
    .dropdown-menu>li>a:focus {
        text-decoration: none !important;
        color: #FFF112 !important;
        font-size: 13px !important;
        height: 200px !important;
        background-color: transparent !important;
    }
}

/*VISUALIZAÇÃO DE CELULARES E TABLETS - FIM*/

/*MENU - FIM*/

.fundo-publicidade-home-1 {
    background-color: #f8be2f;
    width: 100%;
    background-size: cover;
    height: 250px;
    color: #FFFFFF;
    font-size: 40px;
    padding-bottom: 5%;
    padding-top: 5%;
}

.fundo-publicidade-home-1-mobile {
    background-color: #f8be2f;
    width: 100%;
    background-size: cover;
    height: 610px;
    color: #FFFFFF;
    font-size: 40px;
    padding-bottom: 5%;
    padding-top: 5%;
}

.fundo-publicidade-home-meio {
    background-color: #dac488;
    width: 100%;
    background-size: cover;
    height: 250px;
    color: #FFFFFF;
    font-size: 40px;
    padding-bottom: 5%;
    padding-top: 5%;
}

.fundo-publicidade-home-acima-rodape {
    background-color: #fbb458;
    width: 100%;
    background-size: cover;
    height: 250px;
    color: #FFFFFF;
    font-size: 40px;
    padding-bottom: 5%;
    padding-top: 5%;
}

.fundo-publicidade-internas {
    background-color: #19a3aa;
    width: 100%;
    background-size: cover;
    height: 250px;
    color: #FFFFFF;
    font-size: 40px;
    padding-bottom: 5%;
    padding-top: 5%;
}

.fundo-noticias-home {
    background-color: #FFFFFF;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-top: 2%;
}

.fundo-sugestao-noticias-home {
    background-color: #efefef;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-bottom: 1%;
    padding-top: 1%;
}

.titulo-categoria-noticia {
    text-transform: uppercase;
    color: #5c5c5c;
    font-size: 11pt;
    font-weight: bold;
}

.titulo-noticia {
    color: #000000;
    font-size: 25px;
    line-height: 24px;
    font-weight: 700;
}

.titulo-sugestao-noticia {
    color: #5c5c5c;
    font-size: 14pt;
}

.conteudo-noticia {
    color: #5c5c5c;
    font-size: 23px;
}

.conteudo-sugestao-noticia {
    color: #5c5c5c;
    font-size: 11pt;
}

.titulos-produtos-lojas-destaque {
    font-size: 17pt;
    color: #19a3aa;
    font-weight: bold;
}

.hr-titulos-produtos-lojas-destaque {
    border: 1px solid #19a3aa;
}

.hr-sugestao-noticias {
    border: 1px solid #5c5c5c;
}

.fundo-produtos-lojas-destaques {
    background-color: #F5F5F5;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-bottom: 1.5%;
    padding-top: 1.5%;
}

.nome-loja {
    color: #19a3aa;
    font-size: 13pt;
    font-weight: bold;
    text-align: center;
    margin-top: 3%;
}

.nome-loja-dourado {
    color: #FBA51C;
    font-size: 13pt;
    font-weight: bold;
    text-align: center;
    margin-top: 3%;
}

.nome-loja-produtos-destaque {
    color: #000000;
    font-size: 13pt;
    font-weight: bold;
    /*float:left;*/
    text-align: center;
    margin-bottom: 3%;
}

.nome-produto-destaque {
    font-size: 16px;
    color: #484848;
    font-weight: bold;
    margin-top: 3%;
    text-align: center;
}

.nome-produto-destaque-mobile {
    font-size: 15px;
    color: #484848;
    font-weight: bold;
    margin-top: 3%;
    text-align: center;
}

.preco-produto-destaque {
    font-size: 25px;
    color: #1E945B;
    font-weight: bold;
    margin-top: 3%;
    text-align: center;
}

.preco-produto-destaque-mobile {
    font-size: 18px;
    color: #1E945B;
    font-weight: bold;
    margin-top: 3%;
    text-align: center;
}

.logo-lojas-destaque {
    border-radius: 100%;
    border: 12px solid #669999;
    width: 170px;
    height: 170px;
}

.nome-loja-mobile {
    color: #19a3aa;
    font-size: 13pt;
    font-weight: bold;
}

.categoria-loja {
    color: #19a3aa;
    font-size: 13pt;
    text-align: center;
}

.nome-segmento {
    color: #19a3aa;
    font-size: 16pt;
    text-transform: uppercase;
}

.nome-exibicao-produto {
    color: #666666;
    font-size: 18pt;
    font-weight: bold;
}

.botao-entre-contato-loja {
    border-radius: 10px;
    border-color: #e9bd40;
    background-color: #e9bd40;
    padding-bottom: 2%;
    padding-top: 2%;
    text-align: center;
    margin-top: 10%;
    color: #FFFFFF;
}

.botao-segmentos {
    border-radius: 10px;
    border-color: var(--color-pink);
    background-color: var(--color-pink);
    padding-bottom: 6%;
    padding-top: 6%;
    text-align: center;
    height: auto;
    color: #FFFFFF;
    background-size: cover;
    width: 100%;
}

.botao-avalie-loja {
    border-radius: 10px;
    border-color: #e9bd40;
    background-color: #19A3AA;
    padding-bottom: 6%;
    padding-top: 6%;
    text-align: center;
    height: auto;
    color: #FFFFFF;
    background-size: cover;
    width: 100%;
}

.botao-entre-contato-loja-mobile {
    border-radius: 10px;
    border-color: #e9bd40;
    background-color: #e9bd40;
    padding-bottom: 2%;
    padding-top: 2%;
    text-align: center;
    width: 100%;
    margin-top: 10%;
    color: #666666;
}

.botao-ver-lojas-segmentos {
    border-radius: 10px;
    border-color: #e9bd40;
    background-color: #45bde1;
    padding-bottom: 0.5%;
    padding-top: 0.5%;
    text-align: center;
    width: 100%;
    margin-top: 2%;
    color: #FFFFFF;
}

.botao-ver-lojas-segmentos-mobile {
    border-radius: 10px;
    border-color: #e9bd40;
    background-color: #45bde1;
    padding-bottom: 0.5%;
    padding-top: 0.5%;
    text-align: center;
    width: 100%;
    margin-top: 5%;
    color: #FFFFFF;
    text-transform: uppercase;
}

.descricao-exibicao-produto {
    color: #666666;
    font-size: 16pt;
}

.nome-loja-exibicao-produto {
    color: #669999;
    font-size: 16pt;
    font-weight: bold;
}

.preco-exibicao-produto {
    color: #669999;
    font-size: 25pt;
    font-weight: bold;
    margin-top: 5%;
}

.categoria-loja-mobile {
    color: #5c5c5c;
    font-size: 13pt;
}

.nome-entidade-mini-site {
    color: #19a3aa;
    font-size: 16pt;
    font-weight: bold;
}

.descricao-entidade-mini-site {
    color: #acacac;
    font-size: 12pt;
}

.telefone-entidade-mini-site {
    color: #acacac;
    font-size: 16pt;
}

.entre-em-contato-mini-site {
    color: #acacac;
    font-size: 18px;
}

.redes-sociais-mini-site {
    float: left;
    margin-right: 3%;
}

.barrinha-busca-acima-rodape {
    background-color: #f8be2f;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-bottom: 1.5%;
    padding-top: 1.5%;
}

.fundo-rodape {
    background-color: #7d7d7d;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-bottom: 1.5%;
    padding-top: 1.5%;
}

.menu-rodape {
    color: #acacac;
    font-size: 16pt;
}

.parceiros-sou-mais {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #646464;
}

.links-redes-sociais-rodape {
    color: #19a3aa;
    font-size: 18pt;
    font-weight: bold;
    float: left;
    margin-top: -2%;
}

.links-redes-sociais-rodape-mobile {
    color: #19a3aa;
    font-size: 14pt;
    font-weight: bold;
    float: left;
}

.hr-rodape {
    border: 1px solid #bababa;
}

.conteudo-paginas {
    color: #232323;
    font-size: 16pt;
    font-weight: 400;
}

.link-pagina-inicial {
    font-size: 12pt;
    color: #6f6f6f;
    font-weight: bold;
}

.area-restrita-texto {
    color: #2CC0D6;
    font-size: 18pt;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-primary {
    color: #FFFFFF;
    background-color: #19A3AA;
    border-color: #19A3AA;
    width: 100%;
    font-weight: bold;
}

.btn-form-2023 {
    color: #FFFFFF;
    background-color: #45bde1;
    border-color: #45bde1;
    width: 100%;
    font-weight: bold;
}

.link-area-restrita {
    color: #acacac;
    font-size: 12pt;
    text-align: center;
}

.link-area-restrita :hover {
    color: #f8be2f;
    font-size: 12pt;
}

.fundo-banner-loja-virtual {
    width: 100%;
    background-size: cover;
    height: 250px;
    background: url("layout/banner_loja_virtual.png");
    margin-top: 3%;
    margin-bottom: 3%;
}

.pagina-banner__container {
	  font-size: 3rem;
	  font-weight: 800;
	  padding-top: 3.2rem;
	  padding-bottom: 3.2rem;
}

.nome-empresa-similar {
    color: #5c5c5c;
    font-weight: bold;
    font-size: 13pt;
}

.endereco-empresa-similar {
    color: #5c5c5c;
    font-size: 13pt;
}

.valores-empresa-em-numeros {
    color: #5c5c5c;
    font-size: 74pt;
}

.titulo-empresa-em-numeros {
    color: #5c5c5c;
    font-size: 20pt;
}

.itens-empresa-em-numeros {
    float: left;
}

.texto-informacoes-entidade {
    color: #5c5c5c;
    font-size: 15pt;
    margin-left: 2%;
}

.texto-informacoes-entidade-mobile {
    color: #5c5c5c;
    font-size: 15pt;
}

.numeros-indicadores-entidade {
    color: #5c5c5c;
    font-weight: bold;
    font-size: 60pt;
}

.textos-indicadores-entidade {
    color: #5c5c5c;
    font-size: 15pt;
    text-transform: uppercase;
    float: left;
}

/*MOBILE - INÍCIO*/
.navbar-default {
    background-color: #f8f8f8;
    border: none !important;
}

.navbar-default .navbar-toggle {
    border: none !important;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 4px !important;
    border-radius: 3px;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border: none !important;
}

/*MOBILE - FIM*/

.numero_pagina {
    color: #aeaeae;
    font-size: 19pt;
    float: left;
    margin-right: 5px;
}

.numero_pagina_atual {
    color: #aeaeae;
    font-size: 25pt;
    font-weight: bold;
    float: left;
    margin-right: 5px;
}

.nomes_segmentos {
    color: #666666;
    font-size: 13pt;
    font-weight: bold;
    float: left;
    text-transform: uppercase;
    margin-bottom: 3%;
}

.topo-fixo {
    position: fixed;
    z-index: 6000;
    /*overflow: hidden;*/
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.titulo-resultado-geral-busca {
    font-size: 15pt;
    color: #F8BE2F;
    float: left;
    text-transform: uppercase;
    margin-right: 3%;
}

.card-shadow {
    box-shadow: 5px 5px #ccc;
}

.swiper-scrollbar-drag {
    border-radius: 1rem;
    background-color: #ccc;
}

.swiper-scrollbar {
    display: flex;
    flex-direction: row;
    height: 0.25rem;
}

.swiper-button-next-comentarios {
    background-image: url("layout/proximo.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.swiper-button-prev-comentarios {
    background-image: url("layout/anterior.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.swiper-button-next-empresa-fotos {
    background-image: url("layout/proximo.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
    margin-right: auto;
}

.swiper-button-prev-empresa-fotos {
    background-image: url("layout/anterior.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
    margin-left: auto;
}

.swiper-button-empresas-destaque-mobile-next {
    background-image: url("layout/proximo.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.swiper-button-empresas-destaque-mobile-prev {
    background-image: url("layout/anterior.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.slide-hover {
    --s: 0.1em;
    /* largura da linha */
    --c: #1095c1;
    /* cor da linha */

    color: #0000;
    padding-bottom: var(--s);
    background:
        linear-gradient(90deg, var(--c) 50%, #000 0) calc(100% - var(--_p, 0%))/200% 100%,
        linear-gradient(var(--c) 0 0) 0% 100%/var(--_p, 0%) var(--s) no-repeat;
    -webkit-background-clip: text, padding-box;
    background-clip: text, padding-box;
    transition: 0.5s;
}

.slide-hover:hover {
    --_p: 100%
}

.segmentos {
    color: #A85B00;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.titulo-paginas {
    color: var(--color-blue-dark);
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
}

.titulo-secoes-internas {
    color: #F8BE2F;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
}

.titulo-paginas-mobile {
    color: #A85B00;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
}

.segmentos-mobile {
    color: #A85B00;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.hr {
    border: 1px solid #D9D9D9;
    margin-top: 1%;
}

.hr-titulo-paginas {
    border: 1px solid #D9D9D9;
    margin-top: 4%;
}

.hr-mobile {
    border: 1px solid #D9D9D9;
}

.nome-segmento-home {
    color: #6A6A6A;
    font-size: 11pt;
    font-style: normal;
    font-weight: 400;
}

.alinhamento_vertical {
    align-items: center;
    justify-content: center;
}

.leia_mais_desktop {
    background-color: #FBAE2A;
    background-size: cover;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding-bottom: 2%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    width: 33%;
    text-align: center;
}

.fundo_lojas_populares {
    background: linear-gradient(180deg, rgba(181, 74, 74, 0) 0%, rgba(255, 199, 0, 0.11) 100%);
    background-size: cover;
    width: 100%;
    padding-bottom: 1%;
    padding-top: 1%;
}

.box_lojas_populares {
    box-sizing: border-box;
    height: auto;
    background: #FFFFFF;
    border: 0.5px solid #E4E4E4;
    border-radius: 8px;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 3%;
    padding-right: 3%;
}

.box_lojas_populares_mobile {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    background: #FFFFFF;
    border: 0.5px solid #E4E4E4;
    border-radius: 8px;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 3%;
    padding-right: 3%;
}

.dvPai {
    position: absolute;
}

.divPai.divFilho {
    position: relative;
}

.fotos_noticias {
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 360px;
    transition: 0.3s ease;
    border-radius: 5px;
}

.fotos_noticias_mobile {
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 200px;
    transition: 0.3s ease;
}

.titulo_noticia_div_filho {
    position: absolute;
    width: 90%;
    height: 360px;
    background: linear-gradient(180.01deg, rgba(255, 255, 255, 0) 30%, #77BFD6 70%);
    border: 1px solid #E4E4E4;
    z-index: 2000;
    border-radius: 5px;
}

.titulo_noticia_div_filho_mobile {
    position: absolute;
    width: 90%;
    height: 200px;
    background: linear-gradient(180.01deg, rgba(255, 255, 255, 0) 30%, #77BFD6 70%);
    border: 1px solid #E4E4E4;
    z-index: 2000;
    border-radius: 5px;
}

.titulo_noticia_novo {
    position: absolute;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #FFFFFF;
    top: 55%;
    text-align: center;
}

.titulo_noticia_novo_mobile {
    position: absolute;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    top: 55%;
    text-align: center;
}

.conteudo_noticia_novo {
    position: absolute;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 15px;
    text-align: center;
    color: #000000;
    top: 75%;
}

.conteudo_noticia_novo_mobile {
    position: absolute;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    color: #000000;
    top: 75%;
}

.nome_entidade_lojas_populares {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #000000;
}

.categoria_entidade_lojas_populares {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #6A6A6A;
}

.central_atendimento_rodape_novo {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    color: #646464;
    text-transform: uppercase;
}

.linha-vertical {
    height: 220px;
    /*Altura da linha*/
    border-left: 2px solid #D9D9D9;
    /* Adiciona borda esquerda na div como ser fosse uma linha.*/
}

.redes-sociais-rodape-novas {
    width: 30px;
    height: 30px;
    float: left;
}

.dv-redes-sociais-rodape-novas {
    margin-top: 1.5%;
    margin-bottom: 1.5%;
}


.assinatura-masterix-nova {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #646464;
    margin-top: 5%;
}

.icones_redes_sociais_novas {
    margin-right: 1.5%;
}

.icones_redes_sociais_novas:hover {
    position: relative;
}

.tamanho_icone_redes_sociais_novas {
    width: 30px;
    height: 30px;
}

.titulo_empresa_nova {
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 42px;
    color: #000000;
}

.titulo_empresa_nova_mobile {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 42px;
    color: #000000;
}

.aberto-agora {
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    color: #3CB371;
    margin-top: 2%;
}

.aberto-agora-mobile {
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    font-size: 10px;
    color: #3CB371;
}

.fechado-agora {
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    color: #FF6347;
    margin-top: 2%;
}

.fechado-agora-mobile {
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    font-size: 10px;
    color: #FF6347;
}

.horario-funcionamento-nao-informado {
    text-transform: uppercase;
    font-style: bold;
    font-weight: 300;
    font-size: 15px;
    color: #FFA500;
    margin-top: 2%;
}

.horario-funcionamento-nao-informado-mobile {
    font-style: normal;
    font-weight: bold;
    font-size: 10px;
    color: #FFA500;
    text-transform: uppercase;
}

.avalie {
    background: #19A3AA;
    border-radius: 22px;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 4%;
    padding-top: 4%;
}

.avalie-mobile {
    background: #19A3AA;
    border-radius: 22px;
    text-transform: uppercase;
    text-align: center;
    padding-left: 1%;
    padding-right: 1%;
    vertical-align: middle;
    padding-top: 1%;
    width: 100%;
    height: auto;
    padding-bottom: 5%;
    padding-top: 5%;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
}

.site {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 15px;
    color: #1C72A2;
    float: right;
}

.site-mobile {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #1C72A2;
    float: left;
}

.endereco {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #6A6A6A;
}

.endereco-mobile {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #6A6A6A;
    float: left;
}

.whatsapp {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #6A6A6A;
    float: right;
}

.facebook {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #6A6A6A;
    float: right;
}

.facebook-mobile {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #6A6A6A;
    float: left;
}

.whatsapp-mobile {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #6A6A6A;
    float: left;
    margin-top: 4%;
}

.sobre-a-empresa-minisite {
    background: #FFE5C6;
    border-radius: 22px;
    text-transform: uppercase;
    text-align: center;
    color: #6A6A6A;

}

.sobre-a-empresa-minisite-mobile {
    background: #FFE5C6;
    border-radius: 22px;
    text-transform: uppercase;
    text-align: center;
    color: #6A6A6A;
    font-size: 16px;
    width: 100%;
    height: auto;
    padding-bottom: 5%;
    padding-top: 5%;
}

.denucie-minisite {
    background: #EFEFEF;
    border-radius: 22px;
    text-transform: uppercase;
    text-align: center;
    color: #6A6A6A;
}

.denucie-minisite-mobile {
    background: #EFEFEF;
    border-radius: 22px;
    text-transform: uppercase;
    text-align: center;
    color: #6A6A6A;
    font-size: 16px;
    width: 100%;
    height: auto;
    padding-bottom: 5%;
    padding-top: 5%;
}

.thumbnail {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 5px;
    height: 350px;
}

.thumbnail_produto_destaque {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 5px;
    height: auto;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 5%;
    margin-top: 3%;
}

.thumbnail-produto-destaque-mobile {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 5px;
    height: auto;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    margin-bottom: 5%;
}

.thumbnail-mobile {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 5px;
}

.thumbnail-description {
    min-height: 40px;
}

.thumbnail:hover {
    cursor: pointer;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.thumbnail_produto_destaque:hover {
    cursor: pointer;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.fundo-produtos-lojas-destaques-minisite {
    background-color: #FFFFFF;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-bottom: 1.5%;
    padding-top: 1.5%;
}

.box-sobre-a-empresa-novo {
    width: 100%;
    height: auto;
    background-size: cover;
    background: rgba(228, 228, 228, 0.38);
    border: 0.5px solid #6A6A6A;
    border-radius: 8px;
    font-size: 16px;
    color: #000000;
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 5%;
    padding-right: 5%;
}

.fundo-produtos-lojas-destaques-novo-minisite {
    background-color: #FFFFFF;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-bottom: 1.5%;
    padding-top: 1.5%;
}

.nome-selo-novo-minisite {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #000000;
}

.box-selos-minisite {
    width: 150px;
    height: auto;
}

.outras-informacoes-minisite-novo-negrito {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    float: left;
}

.outras-informacoes-minisite-novo-negrito-mobile {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    margin-top: 3%;
}

.outras-informacoes-minisite-novo-normal {
    font-style: normal;
    font-size: 16px;
    color: #000000;
    float: left;
}

.outras-informacoes-minisite-novo-normal-mobile {
    font-style: normal;
    font-size: 16px;
    color: #000000;
}

.fundo-fotos-empresa {
    /*background: linear-gradient(180deg, rgba(181, 74, 74, 0) 0%, rgba(255, 199, 0, 0.11) 100%);*/
    background-color: #FFFFFF;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-bottom: 1.5%;
    padding-top: 1.5%;
}

.retangulo_gradiente_mobile {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD748 14.58%, #FFED4F 45.32%, #ADF9D5 79.44%);
}

.barra_abaixo_menu_degrade {
    background: linear-gradient(90deg, #A2A5FF 14.58%, #FF2CEA 37.55%, #F6EB3E 57.49%, #ADF9D5 79.44%);
    height: 6px;
    width: 100%;
}

/*RETIRAR SOMBREAMENTO LATERAL CARROUSEL - INÍCIO*/
.carousel-control.left {
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%)) !important;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%) !important;
    background-repeat: repeat-x !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1) !important;
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%)) !important;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%) !important;
    background-repeat: repeat-x !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1) !important;
}

/*RETIRAR SOMBREAMENTO LATERAL CARROUSEL - FIM*/

#em-breve-desktop {
    height: 100%;
    background-image: url('/uploads/sou_mais_mariana_2021/layout/em_breve.png');
    background-size: cover;
    width: 100%;
}

#em-breve-mobile {
    height: 100%;
    background: url('/uploads/sou_mais_mariana_2021/layout/em_breve_mobile.png') no-repeat;
    background-size: cover;
    width: 100%;
}

.topo-folha-rosto {
    background-color: #fba51c;
    background-size: cover;
    width: 100%;
    padding-bottom: 1%;
    padding-top: 1%;
    height: auto;
}

.botao-projeto-folha-rosto {
    background-color: #fba51c;
    color: #FFFFFF;
    width: 100%;
    padding-bottom: 1%;
    padding-top: 1%;
    height: auto;
    font-size: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.card-projeto-folha-rosto {
    background-color: #19a3aa;
    color: #FFFFFF;
    width: 100%;
    padding-bottom: 8%;
    padding-top: 8%;
    padding-left: 8%;
    padding-right: 8%;
    height: auto;
    font-size: 20px;
    border-radius: 20px;
    text-transform: uppercase;
}

.botao-titulo-itens-rodape-folha-rosto {
    background-color: #fb8401;
    color: #FFFFFF;
    width: 70%;
    padding-bottom: 1%;
    padding-top: 1%;
    padding-left: 2%;
    padding-right: 2%;
    height: auto;
    font-size: 16px;
    text-align: center;
    border-radius: 20px;
    font-weight: bold;
}

.botao-titulo-itens-rodape-demo {
    background-color: #959595;
    color: #FFFFFF;
    width: 70%;
    padding-bottom: 1%;
    padding-top: 1%;
    padding-left: 2%;
    padding-right: 2%;
    height: auto;
    font-size: 16px;
    text-align: center;
    border-radius: 20px;
    font-weight: bold;
}

.cards-dashboard {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 4%;
    padding-top: 4%;
    padding-left: 4%;
    padding-right: 4%;
    width: 100%;
    height: 250px;
    border: 1px solid #7D7D7D;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border-radius: 8px;
    font-size: 20px;
}

.cards-dashboard-2 {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6%;
    padding-top: 6%;
    padding-left: 4%;
    padding-right: 4%;
    width: 100%;
    height: 222px;
    border: 1px solid #35BDCF;
    background-color: #35BDCF;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border-radius: 8px;
}

.cards-dashboard-3 {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6%;
    padding-top: 6%;
    padding-left: 4%;
    padding-right: 4%;
    width: 100%;
    height: 222px;
    border: 1px solid #D0DAE4;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border-radius: 8px;
}

.cards-dashboard-4 {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6%;
    padding-top: 6%;
    padding-left: 4%;
    padding-right: 4%;
    width: 100%;
    height: auto;
    border: 1px solid #D0DAE4;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border-radius: 8px;
}

.cards-dashboard-5 {
    box-sizing: border-box;
    padding-bottom: 1%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    width: 100%;
    height: 450px;
    /* height: 100%; */
    border: 1px solid #D0DAE4;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border-radius: 8px;
}

.cards-dashboard-6 {
    box-sizing: border-box;
    padding-bottom: 2%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    width: 100%;
    height: 100%;
    border: 1px solid #D0DAE4;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border-radius: 8px;
}

.cards-dashboard-grafico-segmentos {
    box-sizing: border-box;
    width: auto;
    height: 100%;
    border: 1px solid #D0DAE4;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border-radius: 8px;
}

.cards-dashboard-grafico-aciam {
    box-sizing: border-box;
    width: 100%;
    height: 465px;
    border: 1px solid #D0DAE4;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border-radius: 8px;
    padding-top: 3%;
}

.titulos-dashboard-2 {
    color: #FFFFFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.15px;
    margin-top: 10%;
}

.titulos-dashboard-3 {
    color: #000000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.15px;
    margin-top: 10%;
}

.titulos-dashboard-4 {
    color: #000000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.15px;
}

.titulos-dashboard-5 {
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18.8px;
}

.indicadores-dashboard-2 {
    color: #FFFFFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56.4px;
}

.indicadores-dashboard-3 {
    color: #000000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56.4px;
}

.titulos-dashboard {
    color: #A85B00;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
}

.numeros-dashboard {
    color: #258fd9;
    font-size: 80px;
    font-weight: bold;
}

.retangulo-abaixo-banner-home-2023 {
    width: 100%;
    background-color: #6664ad;
    border-radius: 50px;
    margin-top: -4%;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
}


.botao-visite-loja-2023 {
    background-color: #cb1d70;
    background-size: cover;
    color: #FFFFFF;
    text-align: center;
}

.thumbnail-2023 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 5px;
}

.nome-loja-produtos-destaque-2023 {
    color: #2b2b2b;
    font-size: 16pt;
    font-weight: bold;
}

.botao-todas-empresas-2023 {
	background-color: #cb1d70;
	width: 100%;
	background-size: cover;
	color: #FFFFFF;
	font-size: 14pt;
	border-radius: 30px;
	padding-top: 1%;
	padding-bottom: 1%;
	font-weight: 500;
}

.botao-todos-produtos-2023 {
	background-color: var(--color-red-dark);
	width: 100%;
	background-size: cover;
	color: #FFFFFF;
	font-size: 14pt;
	border-radius: 30px;
	padding-top: 1%;
	padding-bottom: 1%;
	font-weight: 500;
}

.fundo-lojas-populares-mobile-2023 {
    background-color: #fbae2a;
    width: 100%;
    background-size: cover;
    height: auto;
    border-radius: 30px;
    margin-top: 3%;
    padding-bottom: 0 !important;
}

.fundo-lojas-populares-2023 {
    background-color: #fbae2a;
    width: 100%;
    background-size: cover;
    height: auto;
    border-radius: 30px;
    margin-top: 3%;
}

.box-nome-entidade-lojas-populares-2023 {
    background-color: #f1a729;
    width: 225px;
    background-size: cover;
    margin-top: 2%;
    height: 50px;
    text-align: center;
    padding-top: 4%;
    color: #FFFFFF;
    font-size: 12pt;
    float: left;
}

.box-nome-entidade-lojas-populares-mobile-2023 {
    background-color: #f1a729;
    width: 80%;
    background-size: cover;
    margin-top: 2%;
    height: 50px;
    text-align: center;
    padding-top: 4%;
    color: #FFFFFF;
    font-size: 12pt;
    float: left;
}

.borda-esquerda-nome-entidade-lojas-populares-2023 {
    background-color: #3eb0b6;
    width: 35px;
    background-size: cover;
    height: 50px;
    text-align: center;
    float: left;
    margin-top: 2%;
    padding-top: 4%;
}

.borda-esquerda-nome-entidade-lojas-populares-mobile-2023 {
    background-color: #3eb0b6;
    width: 20%;
    background-size: cover;
    height: 50px;
    text-align: center;
    float: left;
    margin-top: 2%;
    padding-top: 4%;
}

.fundo-rodape-2023 {
    width: 100%;
    height: auto;
    padding-top: 2%;
    padding-bottom: 1%;
    background-color: var(--color-gray-dark);
}

.links-menu-rodape-2023 {
    font-size: 14pt;
    display: block;
}

.links-menu-rodape-2023 :hover {
    font-size: 14pt;
    font-weight: 500;
}

.link-contatos-rodape-2023 {
    float: left;
    color: #19a3aa;
    font-size: 13pt;
    font-weight: bold;
}

.link-redes-sociais-rodape-2023 {
    float: left;
    color: #19a3aa;
    font-size: 13pt;
    font-weight: bold;
    font-style: italic;
}

.assinatura-rodape-2023 {
    color: #bababa;
    font-size: 11pt;
}

.nome-produto-destaque-2023 {
    color: #5c5c5c;
    font-size: 12pt;
    font-weight: bold;
}

.nome-empresa-destaque-2023 {
    color: #19a3aa;
    font-size: 9pt;
    font-weight: bold;
    float: left;
    margin-top: 1%;
}

.nome-empresa-destaque-2023-novo {
    color: #19a3aa;
    font-size: 12pt;
    font-weight: bold;
    margin-top: 2%;
    text-align: center;
}

.texto-internas-2023 {
    color: #222222;
    font-size: 17pt;
}

.pagina-inicial-2023 {
    color: #6f6f6f;
    font-size: 12pt;
}

.titulo-empresa-nova-2023 {
    color: #19a3aa;
    font-size: 16pt;
}

.titulo-empresa-nova-2023-mobile {
    color: #19a3aa;
    font-size: 13pt;
    font-weight: 700;
    text-align: center;
}

.descricao-empresa-nova-2023 {
    color: #5c5c5c;
    font-size: 14pt;
	padding-top: .5rem !important;
	padding-bottom: .5rem !important;
}

.card-mini-site-2023 {
    background-color: #19a3aa;
    width: 100%;
    background-size: cover;
    height: 200px;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 13pt;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 10%;
    padding-bottom: 10%;
    text-align: center;
}

.card-mini-site-2023-mobile {
    background-color: #19a3aa;
    width: 100%;
    background-size: cover;
    min-height: 244px;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 13pt;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 10%;
    padding-bottom: 10%;
    text-align: center;
}

.fundo-comentarios-mini-site-2023 {
    background-color: #fbae2a;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-top: 2%;
    padding-bottom: 1%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.fundo-comentario-usuario-mini-site-2023 {
    background-color: #fdce7f;
    width: 100%;
    background-size: cover;
    height: 500px;
    padding-top: 4%;
    padding-bottom: 4%;
    padding-left: 4%;
    padding-right: 4%;
    border-radius: 40px;
    color: #2c2c2c;
    font-size: 13pt;
    position: relative;
}

.fundo-comentario-usuario-mini-site-2023-mobile {
    background-color: #fdce7f;
    width: 100%;
    background-size: cover;
    height: auto;
    padding-top: 4%;
    padding-bottom: 4%;
    padding-left: 4%;
    padding-right: 4%;
    border-radius: 40px;
    color: #2c2c2c;
    font-size: 13pt;
    /*position:relative;*/
}

.fundo-empresas-2023 {
    background-color: #fbae2a;
    width: 100%;
    background-size: cover;
    height: 330px;
    border-radius: 30px;
    margin-top: 1%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.box-resultado-pesquisa {
    border-left-color: #fbae2a;
    border-left-width: 20px;
    border-left-style: solid;
    background-size: cover;
    width: 300px;
    background-color: #f3f3f3;
    height: auto;
    text-align: center;
    color: #343434;
    font-size: 15pt;
    margin-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
}

/* Estilos para nuvem de tags */
.conteudo-nuvem-tags {
    background-color: #f7f7f7;
    padding-top: 3%;
    padding-bottom: 3%;
    margin-top: 3%;
}

.nuvem-tags {
    padding: 4% 20%;
    overflow: hidden;
}

ul.nuvem-tag {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    line-height: 2.5rem;
}

/* Nuvem de tags - Mobile */
ul.nuvem-tag span {
    --color: #fbae2a;
    color: var(--color);
    display: block;
    --size: 4;
    /* Fórmula menor para mobile */
    font-size: calc(var(--size) * 0.15rem + 0.9rem);
    padding: 0.125rem 0.25rem;
    position: relative;
}

/* Nuvem de tags - Tablets */
@media (min-width: 768px) {
    ul.nuvem-tag span {
        font-size: calc(var(--size) * 0.2rem + 1.2rem);
    }
}

/* Nuvem de tags - Desktop */
@media (min-width: 1024px) {
    ul.nuvem-tag span {
        font-size: calc(var(--size) * 0.25rem + 1.5rem);
    }
}

.nuvem-tag-titulo {
    display: flex;
    justify-content: center;
}

.nuvem-tag-titulo h3 {
    color: #19a3aa;
    font-size: 18pt;
    font-weight: 800;
    padding-bottom: 2%;
}

.swiper-button-next-produtos-destaque-home-mobile {
    background-image: url("layout/proximo.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.swiper-button-prev-produtos-destaque-home-mobile {
    background-image: url("layout/anterior.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.swiper-button-next-comentarios-mobile {
    background-image: url("layout/proximo.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.swiper-button-prev-comentarios-mobile {
    background-image: url("layout/anterior.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.swiper-button-next-produtos-destaque-home-desktop {
    background-image: url("layout/proximo.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.swiper-button-prev-produtos-destaque-home-desktop {
    background-image: url("layout/anterior.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36px;
    height: 44px;
}

.avaliacao-pie-chart {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hr-dashboard {
    border: 1px solid #EFEFEF;
}

.titulo-empresa-dashboard {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.001em;
    padding-top: 1%;
    padding-bottom: 1%;
}

.logos-dashboard {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 2%;
    margin-top: -3%;
}
