:root {
    --laranja: #EE8922;
    --vermelho: #6D0C1D;
    --branco: white;
    --texto: #707070;
}

:focus-visible {
    outline: none;
}

::selection {
    background: var(--vermelho);
    color: var(--branco);
}

@font-face {
    font-family: 'STD-Light';
    src: url(../fonts/FuturaStd-Light.otf);
}

@font-face {
    font-family: 'STD-Bold';
    src: url(../fonts/FuturaStd-Bold.otf);
}
@font-face {
    font-family: 'STD-Book';
    src: url(../fonts/FuturaStd-Book.otf);
}
@font-face {
    font-family: 'STD-Medium';
    src: url(../fonts/FuturaStd-Medium.otf);
}
@font-face {
    font-family: 'cursiva';
    src: url(../fonts/BrittanySignature.ttf);
}

.flutuante {
    transition: all 0.3s ease-out;
}
html{
    scroll-behavior: smooth;
    scroll-margin-top: 200px;
}
a{
    cursor: pointer;
}
.conteudo-flexivel{
    padding-top: 150px;
}
body.home .conteudo-flexivel{
    padding-top: 0;
}
body.single-post .conteudo-flexivel{
    padding-top: 0;
}
/* FOOTER */

.whatsapp{
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: fit-content;
    transition: all 0.3s ease-out;
}
footer .rodape{
    background-color: var(--vermelho);
    padding: 20px 0;
}
footer .rodape a{
    color: var(--laranja);
    font-family: 'STD-Book';
    margin: 0;
    font-size: 18px;
}
footer .baixo{
    padding: 20px 0;
}
footer .baixo p{
    color: var(--vermelho);
    text-align: center;
    font-family: 'STD-Book';
    margin: 0;
    font-size: 18px;
}
footer .baixo p a{
    color: var(--laranja);
}
footer .redes-sociais{
    justify-content: flex-end;
    gap: 40px;
    align-items: center;
}

/* MENU */
body.home header{
    background: linear-gradient(
    to bottom,                
    #56171f 0%,                
    rgba(85, 22, 30, 0.953) 28%,  
    rgba(55, 6, 15, 0) 100%    
  );
}
body.home header a{
    color: var(--branco);
}
header {
    padding: 40px 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    transition: top 1s ease-out;
}
header.fixo{
    position: fixed;
    top: -200px;
    background-color: white;
    background: var(--branco)!important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.10);
    z-index: 999;
    padding: 20px 0;

}

header.fixo .coluna-20{
    width: 15%;
}
body.home header.fixo a{
    color: var(--vermelho);
}

header ul {
    list-style: none;
}

header a {
    /* font-family: 'STD-Light'; */
    font-family: 'STD-Book';
    font-size: 16px;
    cursor: pointer;
    color: var(--vermelho);
    position: relative;
    transition: all 0.6s ease-in-out;
}
header a:hover{
    color: var(--laranja);
}


body.single-post header a{
    color: white;
}
body.single-post header.fixo a{
    color: var(--vermelho);
}
header.menuAberto{
    background-color: var(--branco);
}
header.menuAberto a{
    color: var(--vermelho);
}
body.home header a:hover{
    color: var(--laranja);
}


/* MEGA MENU */

.header-espelhado{
    padding: 40px 0;

}
#megaMenu {
    background-color: white;
    /* display: none; */
    position: fixed;
    z-index: 2;
    top: -100%;
    left: 0;
    transition: all 0.7s ease-out;
    width: 100%;
    box-shadow: rgb(0 0 0 / 27%) 0px 10px 174px 21px;
    z-index: 999999;
}
#megaMenu .bloco-menu{
    border-top: 2px solid var(--laranja);
    padding: 50px 0;
    display: none;
    z-index: 9999;
    position: relative;

}
#megaMenu.ativo {
    display: block;
}

#megaMenu h2 {
    font-family: 'STD-Bold';
    color: var(--vermelho);
    font-size: 28px;
    text-transform: uppercase;
}

#megaMenu h2 span {
    color: var(--laranja);
}

#megaMenu  ul {
    list-style: none;
}

#megaMenu .bloco-menu p {
    font-family: 'STD-Light';
    font-size: 16px;
    color: var(--texto);
    margin-top: 20px;
}

#megaMenu .bloco-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#megaMenu .bloco-menu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#megaMenu a {
    font-family: 'STD-Light';
    font-size: 16px;
    color: var(--vermelho);
    transition: all 0.6s ease-in-out;
}
#megaMenu a:hover{
    color: var(--laranja);
}
.fechar {
    padding-bottom: 40px;
    width: 100%;
    display: block;
    text-align-last: right;
}

.fechar img {
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}
.fechar img:hover {
    transform: rotate(180deg) scale(1.4);
}
li a.ativo {
    color: var(--laranja)!important;
    position: relative;
}

li a.ativo::before {
    content: '';
    position: absolute;
    bottom: -73px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    border-left: 2px solid var(--laranja);
    border-top: 2px solid var(--laranja);
    background: white;
    z-index: 99999;
}
.conteudo-interno-menu img{
    transition: all 0.6s ease-in-out;
}
.conteudo-interno-menu img:hover{
    transform: scale(1.04);
}
.links-internos-menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
/* HOME */




/* MODELOS */

/* BANNER HOME */
.banner-principal{
    margin-bottom: 100px;
    overflow-x: clip;
}
.banner-principal .slick-list{
    overflow: visible;
}
.banner-principal .bg-banner {
    width: 100%;
    height: 68vh;
    object-fit: cover;
    object-position: bottom;
}

.flutuante-banner{
    position: absolute;
    bottom: 5%;
    height: 80vh;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
}
.banner-principal .flex{
    align-items: center;
    justify-content: center;
    height: 100%;
}
.banner-principal h1{
    font-family: 'STD-Bold';
    color: white;
    font-size: 120px;
    text-align: center;
    text-transform: uppercase;
    line-height: 0.9;
}
.banner-principal h1 span{
    font-family: 'cursiva';
    font-weight: 100;
    text-transform: lowercase;
}

/* BANNER PADRÃO */
.banner-padrao{
    padding-bottom: 100px;
    background-image: url(../imgs/fundo-banner-padrao.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.banner-Laranja{
    background-image: url(../imgs/banner-laranja.svg);
}
.banner-Azul{
    background-image: url(../imgs/banner-azul.svg);
}
.banner-Ciano{
    background-image: url(../imgs/banner-ciano.svg);
}

/* TITULO E TEXTO */
.titulo-texto{
    padding:100px 0;
}
.titulo-texto h2{
    font-family: 'STD-Bold';
    font-size: 30px;
    color: var(--laranja);
    text-transform: uppercase;
}
.titulo-texto h3{
    font-family: 'STD-Book';
    font-size: 22px;
    color: var(--vermelho);
}
.titulo-texto h2 span{
    color: var(--vermelho);
}
.titulo-texto p{
    font-family: 'STD-Book';
    color: var(--texto);
    font-size: 18px;
    /* margin-top: 20px; */
}
.conteudo-wp{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.conteudo-wp strong{
    color: var(--vermelho);
}


/* DEPOIMENTOS SINGLE */

.depoimentos-single{
    padding: 50px 0;
    background-color: #6d0c1e18;
    text-align: center;
}
.depoimentos-single h2{
    font-family: 'STD-Medium';
    color: var(--vermelho);
    font-size: 23px;
    margin-top: 20px;
}
.depoimentos-single p{
    font-family: 'STD-Bold';
    color: var(--laranja);
    font-size: 24px;
}

/* IMAGEM E TEXTO */

.imagem-texto{
    padding: 100px 0;
}
.imagem-texto h2{
    font-family: 'STD-Bold';
    color: var(--vermelho);
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.imagem-texto img{
    display: block;
    margin: 0 auto;
}
.imagem-texto h2 span{
    color: var(--laranja);
}
.imagem-texto p,
.imagem-texto ul{
    font-family: 'STD-Book';
    color: var(--texto);
    margin-top: 20px;
    font-size: 18px;
}
.imagem-texto a{
    color: var(--vermelho);
}

.sticky{
    position: sticky;
}
.flutuante-imagem{
    position: absolute;
    bottom: -20%;
    left: -40%;
}
.imagem-texto.grande{
    padding: 50px 0 100px;
}
.imagem-texto.grande h2{
    margin: 40px 0 20px 0;
}
.imagem-texto.grande p strong{
    color: var(--laranja);
}

/* IMAGEM E TEXTO COM CONTADOR */

.com-contador h2{
    text-transform: uppercase;
}
.com-contador .com-contadores{
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 3px 10px 30px rgba(109, 12, 29, 0.22);
    background-color: var(--branco);
}
.com-contadores h3{
    font-family: 'STD-Bold';
    font-size: 60px;
    color: var(--laranja);
    text-align: center;
}
.com-contadores span{
    font-size: 16px;
    color: var(--vermelho);
    display: block;
    width: 100%;
}
.com-contador .coluna-1{
    background-color: var(--vermelho);
    height: 90px;
    width: 1px;
}
.com-contador{
    background-image: url(../imgs/laranja-direita.svg);
    background-position: 130% center;
    padding-top: 0;
    background-size: contain;
    background-repeat: no-repeat;
}
.numero{
    transition: all 0.3s ease-out;
}
/* 2 IMAGENS + TEXTO */

.imagem-texto-2{
    background-image: url(../imgs/laranja-titulo-maior.svg);
    background-position: -400px center;
    background-size: contain;
    background-repeat: no-repeat;
}


.imagem-texto-2 h2{
    text-transform: uppercase;
}

/* CONTADORES */

.contadores{
    padding: 100px 0;
}
.card-contador{
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 3px 10px 30px rgba(109, 12, 29, 0.22);
}
.card-contador h3{
    font-family: 'STD-Bold';
    color: var(--vermelho);
    font-size: 18px;
    text-transform: uppercase;
    /* margin-bottom: 20px; */
}
.card-contador p{
    font-family: 'STD-Bold';
    font-size: 60px;
    color: var(--laranja);
}
.card-contador p.sub{
    font-size: 18px;
    text-transform: uppercase;
    color: var(--vermelho);
}
.grao-laranja{
    position: absolute;
    bottom: 50%;
    left: -10%;
    transform:translateY(50%);
}
.grao-vermelho{
    position: absolute;
    bottom: 50%;
    right: -10%;
    transform:translateY(50%);
}

/* LINHA DO TEMPO */

.linhatempo{
    padding:  0 0px 100px 0px;
}
.linhatempo .flex{
    justify-content: center;
    gap: 60px;
}
.linhatempo .anolinha{
    background-color: rgba(109, 12, 29, 0.05);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.10);
}
.card-linha{
    padding: 25px;
    border-radius: 20px;
    background-color: rgba(109, 12, 29, 0.05);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.10);
    margin-top: 20px;
}
.card-linhatempo{
    transition: all 0.3s ease-in-out;
}
.card-linhatempo:hover{
    transform: scale(1.04);
}
.card-linhatempo:not(:nth-child(3)):not(:nth-child(6)):not(:nth-child(8))::before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(../imgs/seta-linha.svg);
    background-size: contain;
    transform: translateX(-50%);
    top: 50%;
    right: -60px;
    background-repeat: no-repeat;
}
.card-linhatempo:nth-child(2) .anolinha p,
.card-linhatempo:nth-child(5) .anolinha p,
.card-linhatempo:nth-child(7) .anolinha p, /* Adicionado o 7 aqui */
.card-linhatempo:nth-child(2) h3,
.card-linhatempo:nth-child(5) h3,
.card-linhatempo:nth-child(7) h3 { /* Adicionado o 7 aqui */
    color: var(--laranja);
}

.card-linhatempo:nth-child(2) .anolinha,
.card-linhatempo:nth-child(5) .anolinha,
.card-linhatempo:nth-child(7) .anolinha, /* Adicionado o 7 aqui */
.card-linhatempo:nth-child(2) .card-linha,
.card-linhatempo:nth-child(5) .card-linha,
.card-linhatempo:nth-child(7) .card-linha { /* Adicionado o 7 aqui */
    background-color: #FEF8F2;
}

.linhatempo .anolinha p{
    color: var(--vermelho);
    font-family: 'STD-Bold';
    font-size: 28px;
    margin: 0 auto;
    text-align: center;
}
.linhatempo h3{
    color: var(--vermelho);
    font-family: 'STD-Medium';
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

.linhatempo p{
    color: var(--texto);
    font-family: 'STD-Book';
    text-align: center;
    margin: 20px 0;
}
.linhatempo img{
    width: 100%;
}

/* TESTEMUNHO */

.testemunho{
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 10%, rgba(109, 12, 29, 0.05) 10%, rgba(109, 12, 29, 0.05) 90%, rgba(255, 255, 255, 1) 74%);
}
.testemunho p{
    font-family: 'STD-Book';
    color: var(--laranja);
    font-size: 20px;
}

.testemunho h2{
    font-family: 'STD-Book';
    color: var(--vermelho);
    margin-top: 30px;
    font-size: 18px;
}
.slick-prev,
.slick-next {
    width: 42px!important;
    height: 42px!important;  
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: transparent;
    border: none;
    z-index: 10;
}

.slick-prev {
    background-image: url(../imgs/slider-esquerda.svg)!important;
    left: -60px!important; /* ajuste conforme necessário */
}

.slick-next {
    background-image: url(../imgs/slider-direita.svg)!important;
    right: -60px!important; /* ajuste conforme necessário */
}

.slick-prev::before,
.slick-next::before {
    display: none; /* isso oculta as setas padrão */
}

/* FORM */

.form{
    padding: 0 0 100px;
}
.form  h2{
    font-family: 'STD-Bold';
    font-size: 30px;
    color: var(--laranja);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 100px;
}
.form h2 span{
    color: var(--vermelho);
}
.form form{
    display: flex;
    margin-top: 50px;
    flex-direction: column;
    gap: 20px;
}
.form label{
    font-family: 'STD-Bold';
    font-size: 16px;
    color: var(--vermelho);
}
.form input,
.form textarea{
    border: 0;
    border-bottom: 1px solid var(--laranja);
    padding: 0px 0 20px;
    font-family: 'STD-Book';
    font-size: 16px;
}
form button{
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: 40px;
    background-color: var(--laranja);
    padding: 20px;
    font-family: 'STD-Bold';
    font-size: 16px;
    color: var(--branco);
    border: none;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}
form button:hover{
    background-color: var(--vermelho);
}

/* CARDS */
.cards-padrao-slide .slick-track {
    display: flex;
    align-items: stretch; /* Garante que os itens (slides) se estiquem para a altura máxima */
}
.cards-modelo{
    padding: 50px 0;
    margin-bottom: 100px;
}
.cards-padrao{
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--branco);
    /* margin: 0 10px; */
    transition: all 0.6s ease-in-out;
}
.cards-padrao:hover{
    transform: scale(1.04);
}
.cards-modelo .flex{
    gap: 30px 3%;
    justify-content: center;
    align-items: center;;
}
.cards-padrao .img-cards-padrao{
    border-radius: 50%;
    text-align: center;
    padding: 20px;
    width: fit-content;
    margin: 0 auto;
    display: block;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cards-padrao .img-cards-padrao img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.cards-gestao img{
    width: 68px;
    height:68px;
    object-fit: contain;
}
.cards-padrao h3{
    color: var(--vermelho);
    font-family: 'STD-Bold';
    font-size: 23px;
    margin: 20px auto;
    text-transform: uppercase;
    text-align: center;
}
.cards-padrao h4{
    color: var(--vermelho);
    font-family: 'STD-Medium';
    font-size: 16px;
    margin: 0 0 20px;
    text-align: center;
    text-transform: uppercase;
}
.cards-padrao p{
    color: var(--texto);
    font-family: 'STD-Book';
    text-align: center;
}
.cards-modelo .grao-laranja{
    top: -100px;
    left: -5%;
    transform: none;
}
.cards-modelo .grao-vermelho{
    bottom: -100px;
    right: -10%;
    transform: none;
}

/* INSTAGRAM */

.instagram{
    background-color: rgba(109, 12, 29, 0.05);
    padding: 100px 0;
}
.instagram h2{
    font-family: 'STD-Bold';
    color: var(--vermelho);
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}
.instagram h2 span{
    color: var(--laranja);
}
.instagram-top{
    margin: 0 auto;
    gap: 15px;
    font-family: 'STD-Bold';
    color: var(--vermelho);
    font-size: 20px;
    text-align: center;
    width: fit-content;
    margin-bottom: 40px;
}
.instagram a img{
    transition: all 0.6s ease-in-out;
    width: fit-content;
    border-radius: 20px;
}
.instagram a img.icone-insta{
    border-radius: 0;
}
.instagram a img:hover{
    transform: scale(1.1);
}

/* SEGMENTOS */

.segmentos{
    padding: 100px 0;
    background-color: white;
}
.segmentos h2{
    font-family: 'STD-Bold';
    font-size: 30px;
    color: var(--vermelho);
    text-transform: uppercase;
    text-align: center;
}
.segmentos h2 span{
    color: var(--laranja);
}    
.sementos-img{
    margin-top: 40px;
    justify-content: center;
    gap: 40px
}
.card-segmentos img{
    height: 94px;
    object-fit: contain;
}
.segmentos .card-segmentos{
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--branco);
    transition: all 0.6s ease-in-out;
}
.segmentos .card-segmentos:hover{
    transform: scale(1.08);
}

/* LPS AJUSTES DE CORES */

.slug-ordem-azul-facilities .cards-modelo .grao-vermelho{
    filter: brightness(0) saturate(100%) invert(30%) sepia(70%) saturate(700%) hue-rotate(200deg);
}
.slug-ordem-azul-facilities .cards-padrao h3,
.slug-ordem-azul-facilities .cards-padrao h4,
.slug-ordem-azul-facilities .imagem-texto h2{
    color: #2651AB;
}
.slug-ordem-azul-facilities .imagem-texto-2 {
    background-image: url(../imgs/azul-maior.svg);
}
.slug-ordem-azul-facilities .segmentos{
    background-color: #F4F6FB;
}

.slug-servicos-hospitalares .cards-modelo .grao-vermelho {
    filter: brightness(0) saturate(100%) invert(40%) sepia(70%) saturate(600%) hue-rotate(145deg);
}

.slug-servicos-hospitalares .cards-padrao h3,
.slug-servicos-hospitalares .cards-padrao h4,
.slug-servicos-hospitalares .imagem-texto h2 {
    color: #2BA9AA;
}

.slug-servicos-hospitalares .imagem-texto-2 {
    background-image: url(../imgs/verde-maior.svg);
}

.slug-servicos-hospitalares .segmentos {
    background-color: #F4F6FB;
}
.slug-casa-cafe .segmentos{
    background-color: rgba(109, 12, 29, 0.05);
}

/* AJUSTE PA'GINA PORQUE */

.slug-por-que-contratar-a-casa .cards-padrao h4{
    color: var(--laranja);
}

/* IMAGEM NO TOPO */

.imagem-topo{
    padding: 0 0 50px;
}
.imagem-topo img{
    display: block;
    margin: 0 auto 100px;

}
.imagem-topo.titulo-texto h2{
    text-align: center;
    margin-bottom: 50px;
}

.imagem-topo.titulo-texto p{
    text-align: center;
}

/* CARD SIMPLES */

.card-simples .cards-padrao{
    padding: 20px;
}
.card-simples p{
    text-align: left;
    font-size: 18px;
    text-transform: initial !important;
}

/* LOGOS GRID */

.logos-grid h2{
    font-family: 'STD-Bold';
    font-size: 30px;
    color: var(--laranja);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 100px;
}
.logos-grid h2 span{
    color: var(--vermelho);
}
.logos-grid{
    padding: 100px 0;
}
.logos-grid .flex{
    gap: 50px 0;
    justify-content: start;
}
.cards-logo img{
    margin: 0 auto;
    display: block;
    transition: all 0.6s ease-in-out;
}
.cards-logo img:hover{
    transform: scale(1.1);
}


/* SLIDER MODELO */
.slider-modelo{
    margin-bottom: 100px;
}
.slider-modelo .slide-slider img{
    border-radius: 20px;
}
.slider-modelo .slick-prev{
    left: 20px!important;
    filter: brightness(0) invert(1);
}
.slider-modelo .slick-next{
    right: 20px!important;
    filter: brightness(0) invert(1);
}
.slider-modelo .slick-dots li button,
.slick-dots li,
.slick-dots li button:before{
    width: 40px!important;
    height: 40px!important;
    align-content: center;
}
.slider-modelo .slick-dots{
    bottom: 47%;
    right: -100px;
    width: fit-content;
    transform: rotate(90deg);
    background-color: rgba(238, 137, 34, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.slider-modelo .slick-dots li button:before{
    color: rgba(109, 12, 29, 0.22)!important;
    font-size: 20px;
}
.slider-modelo .slick-dots li.slick-active button:before{
    color: var(--vermelho)!important;
}

/* LOGOS SOLTOS */

.logos-soltos{
    padding: 50px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.10);
    margin-bottom: 100px;
}

/* TEXTO IMAGEM ICONES */
.texto-imagem-icones h2{
    font-family: 'STD-Bold';
    color: var(--laranja);
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.texto-imagem-icones  p{
    font-family: 'STD-Book';
    color: var(--texto);
    font-size: 18px;
    text-align: left;
}
.texto-imagem-icones ul{
    font-family: 'STD-Book';
    color: var(--texto);
    margin-top: 20px;
    font-size: 18px;
}
.texto-imagem-icones .coluna-65 img{
    margin-top: 50px;
}
.texto-imagem-icones h2 span{
    color: var(--vermelho);
}

.texto-imagem-icones{
    padding: 100px 0;
}
.texto-imagem-icones .cards-padrao{
    padding: 20px;
}
.card-gestao .flex,
.cards-rabanete .flex,
.cards-padrao .flex{
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}
.cards-ao-lado{
    flex-direction: row;
    gap: 20px;
}
.img-gestao-card{
    width: fit-content;
}
/* BLOG */

.blog-home .card-blog img{
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.blog-home .segmentos-img{
    margin-top: 100px;
}
.blog-home .info-blog{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.blog-home .categoria-blog{
    font-family: 'STD-Bold';
    font-size: 18px;
    color: var(--laranja);
    text-transform: uppercase;
}
.blog-home .titulo-blog a{
    font-family: 'STD-Bold';
    font-size: 20px;
    color: var(--vermelho);
    text-transform: uppercase;
}
.blog-home .data-blog{
    font-family: 'STD-Book';
    font-size: 16px;
    color: var(--texto);
}
.banner-blog{
    height: 60vh;
    background-image: var(--background);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
        align-items: center;
        justify-content: center;
}
.banner-blog h3{
    font-family: 'STD-Bold';
    color: white;
    font-size: 30px;
    text-transform: uppercase;
}
.banner-blog h3 b{
    color: var(--laranja);
}

.post{
    padding: 100px 0;
}

.post p{
    font-family: 'STD-Book';
    font-size: 16px;
    color: var(--texto);
}
.post h2{
    font-family: 'STD-Bold';
    color: var(--vermelho);
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
}
.post strong{
    color: var(--laranja);
}
.post .conteudo-wordpress img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}
.post .conteudo-wordpress{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.post .categoria-caminho{
    color: var(--vermelho);
}
.post h3{
    font-family: 'STD-Bold';
    color: var(--laranja);
    margin: 20px 0;
    font-size: 24px;
}
.post h1{
    font-family: 'STD-Bold';
    color: var(--vermelho);
    font-size: 30px;
    text-transform: uppercase;
    margin: 20px 0;
}
.post .data-blog{
    font-family: 'STD-Book';
    font-size: 14px;
    color: var(--laranja);
    margin-bottom: 40px;
    display: block;
}

.side-bar h3{
    font-family: 'STD-Book';
    font-size: 26px;
    color: var(--vermelho);
    margin-bottom: 40px;
    display: block;
}
.side-bar h4{
    font-family: 'STD-Book';
    font-size: 22px;
    margin: 0 auto;
    color: var(--vermelho);
}
.side-bar a{
    font-family: 'STD-Book';
    font-size: 14px;
    margin-top: 10px;
    display: block;
    color: var(--laranja);
}
.flex-times{
    gap: 40px;
}
.card-times img{
    width: 100%;
    height: 90px;
    object-fit: cover;
    object-position: center;
}
.separacao{
    height: 1px;
    width: 100%;
    background-color: var(--laranja);
}
.separacao-principal{
    height: 1px;
    width: 100%;
    background-color: var(--laranja);
    margin-top: 100px;
}
.side-bar h5{
    font-family: 'STD-Book';
    font-size: 22px;
    margin: 0;
    text-align: left;
    color: var(--vermelho);
    width: 100%;
}
.side-bar .redes-sociais{
    width: fit-content;
    gap: 20px;
    margin-top: -10px;
}
.side-bar .redes-sociais img{
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.relacionados-blog{
    padding-top: 0;
}
/* IMAGEM BOTAO TEXTO */
#no-conforto-da-sua-empresa{
    margin-top: 100px;
    background-color: rgba(109, 12, 29, 0.05);
}
.imagem-botao-texto{
    background-color: rgba(109, 12, 29, 0.05);
    margin-bottom: 100px;
}
.imagem-botao-texto a{
    display: block;
    width: fit-content;
    margin-top: 40px;
    background-color: var(--laranja);
    padding: 15px 40px;
    font-family: 'STD-Bold';
    font-size: 16px;
    color: var(--branco);
    border: none;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}
.imagem-botao-texto a:hover{
    background-color: var(--vermelho);
}


/* MODELO RABANETE */

.rabanete{
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
.texto-rabanete{
    padding: 100px 0;
}
.rabanete img.rabanete-img{
    position: absolute;
    height: 114%;
    top: -14%;
}
.rabanete h2{
    font-family: 'STD-Bold';
    color: #B3D5F0;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rabanete p{
    font-family: 'STD-Book';
    font-size: 18px;
    color: var(--branco);
}
.cards-rabanete{
    margin-top: 60px;
}
.card-rabenete{
    padding: 20px;
    border-radius: 20px;
    background-color: #3C75A4;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.cards-rabanete img{
    width: 68px;
    height:68px;
    object-fit: contain;
}
.grid-rabanete{
    gap: 50px;
}

/* GESTAO */

.gestao{

    background-image: url(../imgs/laranja-titulo-maior.svg);
    background-position: -500px center;
    background-size: contain;
    background-repeat: no-repeat;
}
.texto-gestao{
    padding: 100px 0;
}

.gestao h2{
    font-family: 'STD-Bold';
    color: var(--laranja);
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.gestao h2 span{
    color: var(--vermelho);
}
.flex-gestao{
    align-items: flex-end;
}
.gestao p{
    font-family: 'STD-Book';
    font-size: 18px;
    color: var(--texto);
}
.cards-gestao{
    margin-top: 60px;
}
.card-gestao{
    padding: 20px;
    border-radius: 20px;
    background-color: var(--branco);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.card-gestao img{
    display: block;
    margin: 0 auto;
}
.grid-gestao{
    gap: 50px;
}
.gestao-img{
    margin-bottom: -5px;
    position: relative;
    z-index: -1;
}


/* CALENDARIO */

.eventos-quebra-rotina {
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    text-align: center;
  }
  
  .eventos-quebra-rotina h2 {
    font-size: 30px;
    color: #4a002f;
    font-family: 'STD-Bold';
  }
  
  .eventos-quebra-rotina h2 span {
    font-weight: bold;
    text-transform: uppercase;
    color: #4a002f;
  }
  
  .eventos-quebra-rotina h2 strong {
    color: var(--laranja);
    text-transform: uppercase;
    font-family: 'STD-Bold';
  }
  
  .meses {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(238, 137, 34, 0.05);
    padding: 20px;
    border-radius: 20px;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 40px auto;
  }
  
  .meses button {
    background-color: rgba(238, 137, 34, 0.5);
    border: none;
    border-radius: 20px;
    padding: 14px 20px;
    font-family: 'STD-Bold';
    color: var(--branco);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.6s ease-in-out;
  }
  .meses button:hover,
  .meses button.ativo {
    background: var(--laranja);
    color: white;
  }
  
  .evento-carrossel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
  }
  
  .evento-carrossel img {
    max-width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
  }
  
  .nav {
    background: transparent;
    border: 2px solid #4a002f;
    color: #4a002f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
  }
  .coluna-img-evento{
    width: 100%;
  }
  .evento-detalhes {
    width: 100%;
    text-align: left;
    background: #fff7f0;
    padding: 50px;
    border-radius: 0 0 20px 20px;
  }
  
  .evento-detalhes .mes {
    color: var(--laranja);
    font-size: 18px;
    font-family: 'STD-Medium';
  }
  
  .evento-detalhes .titulo {
    color: #4a002f;
    font-family: 'STD-Bold';
    font-size: 22px;
    margin: 10px 0;
    text-transform: uppercase;
  }
  
  .evento-detalhes .descricao {
    color: var(--texto);
    font-family: 'STD-Book';
    font-size: 18px;
  }
  .slick-eventos {
    border-radius: 10px;
    margin: 1rem 0;
  }
  
  .slick-eventos .evento-slide {
    align-items: center;
    justify-content: center;
  }
  
  .slick-eventos .evento-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  .slick-prev, .slick-next {
    background: #fff;
    border: 2px solid #4a002f;
    color: #4a002f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 10;
  }
  
  .slick-prev::before, .slick-next::before {
    font-size: 20px;
    color: #4a002f;
  }
  
  .slick-prev {
    left: -50px;
  }
  .slick-next {
    right: -50px;
  }
    .botao-opcional{
        display: block;
        width: fit-content;
        margin-top: 40px;
        background-color: var(--laranja);
        padding: 15px 40px;
        font-family: 'STD-Bold';
        font-size: 16px;
        color: var(--branco)!important;
        border: none;
        cursor: pointer;
        border-radius: 20px;
        transition: all 0.4s ease-in-out;
    }
    .botao-opcional:hover{
        background-color: var(--vermelho);
    }