/* =========================================================================
   EXODO - CAMADA DE REFINAMENTO VISUAL
   Carregada DEPOIS de style.css. So sobrescreve acabamento:
   tipografia, ritmo de espacamento, profundidade, cor e micro-interacoes.
   Nenhuma regra aqui muda o layout/estrutura das paginas.
   ========================================================================= */

:root {
    --exo-red: #F12D46;
    --exo-red-deep: #c8172c;
    --exo-red-soft: rgba(241, 45, 70, .10);
    --exo-graphite: #262A31;
    --exo-graphite-deep: #1a1d23;
    --exo-ink: #22262d;
    --exo-body: #59626f;
    --exo-muted: #8c95a3;
    --exo-line: #e4eaf2;
    --exo-surface: #ffffff;
    --exo-surface-soft: #f6f8fb;

    --exo-sh-sm: 0 1px 2px rgba(38, 42, 49, .04), 0 4px 12px -6px rgba(38, 42, 49, .10);
    --exo-sh-md: 0 2px 4px rgba(38, 42, 49, .04), 0 14px 32px -14px rgba(38, 42, 49, .22);
    --exo-sh-lg: 0 4px 8px rgba(38, 42, 49, .05), 0 28px 56px -22px rgba(38, 42, 49, .34);
    --exo-sh-red: 0 10px 26px -10px rgba(241, 45, 70, .55);

    --exo-ease: cubic-bezier(.22, .61, .36, 1);
    --exo-radius: 10px;
}

/* ---------- 1. Base tipografica ------------------------------------------ */

body {
    color: var(--exo-body);
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

p {
    color: var(--exo-body);
    line-height: 1.72;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--exo-ink);
    letter-spacing: .002em;
}

h1, h2 {
    text-wrap: balance;
}

/* Destaques em negrito no texto corrido ganham o peso da marca */
p b, p strong {
    color: var(--exo-ink);
    font-weight: 700;
}

/* Medida de leitura confortavel nos blocos institucionais */
.about-caption p {
    max-width: 62ch;
}

::selection {
    background: var(--exo-red);
    color: #fff;
}

/* Foco visivel e consistente em todo o site (acessibilidade) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--exo-red);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ---------- 2. Titulos de secao ------------------------------------------ */

.section-tittle span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--exo-red);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Filete vermelho como assinatura da marca antes do olho da secao */
.section-tittle span::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--exo-red);
    display: inline-block;
    flex: 0 0 28px;
}

.section-tittle.text-center span {
    justify-content: center;
}

.section-tittle h2 {
    font-size: 46px;
    line-height: 1.16;
    letter-spacing: -.005em;
    color: var(--exo-ink);
}

@media (max-width: 767px) {
    .section-tittle h2 { font-size: 34px; }
}

/* ---------- 3. Cabecalho -------------------------------------------------- */

.header-area .header-top {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.header-social li a {
    color: rgba(255, 255, 255, .55);
    transition: color .25s var(--exo-ease), transform .25s var(--exo-ease);
    display: inline-block;
}

.header-social li a:hover {
    color: var(--exo-red);
    transform: translateY(-2px);
}

.header-sticky.sticky-bar.sticky {
    background: rgba(26, 29, 35, .92);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    backdrop-filter: saturate(160%) blur(10px);
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.logo img.logo-header {
    transition: transform .3s var(--exo-ease), opacity .3s var(--exo-ease);
}

.logo a:hover img.logo-header {
    transform: scale(1.04);
}

/* Sublinhado que cresce do centro no menu principal */
.main-menu ul li > a {
    position: relative;
    letter-spacing: .06em;
    transition: color .25s var(--exo-ease);
}

.main-menu ul li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 22px;
    height: 2px;
    background: var(--exo-red);
    transition: left .3s var(--exo-ease), right .3s var(--exo-ease);
}

.main-menu ul li > a:hover::after,
.main-menu ul li.active > a::after {
    left: 20px;
    right: 20px;
}

.main-menu ul li .submenu li > a::after {
    display: none;
}

/* ---------- 4. Botoes ----------------------------------------------------- */

.btn,
.submit-btn,
.boxed-btn {
    border-radius: 6px;
    letter-spacing: .1em;
    font-weight: 700;
    box-shadow: var(--exo-sh-red);
    transition: transform .28s var(--exo-ease), box-shadow .28s var(--exo-ease), background-color .28s var(--exo-ease);
    will-change: transform;
}

.btn {
    padding: 21px 40px;
}

.header-btn {
    padding: 18px 32px;
    font-size: 13px;
}

.btn:hover,
.submit-btn:hover,
.boxed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -12px rgba(241, 45, 70, .62);
    background-color: var(--exo-red-deep);
}

.btn:active,
.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -10px rgba(241, 45, 70, .6);
}

/* O ::before herdado do template so causava um flash da mesma cor */
.btn::before {
    display: none;
}

/* Botoes do acordeao: sem sombra e sem elevacao (ficam empilhados dentro do
   card), mas com o MESMO raio dos demais botoes do site. */
.btn.btn-link {
    box-shadow: none;
    border-radius: 6px;
}

.btn.btn-link:hover {
    transform: none;
    box-shadow: none;
    background-color: var(--exo-red-deep);
}

/* ---------- 5. Hero da home ---------------------------------------------- */

.slider-height {
    position: relative;
    min-height: 660px;
}

/* Veu em degrade: da legibilidade ao texto e ancora a imagem na marca */
.slider-area .single-slider.slider-height::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(20, 23, 28, .86) 0%, rgba(20, 23, 28, .55) 42%, rgba(20, 23, 28, .12) 72%, rgba(20, 23, 28, 0) 100%),
        linear-gradient(to top, rgba(20, 23, 28, .55) 0%, rgba(20, 23, 28, 0) 45%);
    pointer-events: none;
}

.slider-area .single-slider.slider-height .container {
    position: relative;
    z-index: 2;
}

.exo-hero-cap {
    max-width: 660px;
    padding: 40px 0;
}

.exo-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0;
    animation: exoRise .8s var(--exo-ease) .15s forwards;
}

.exo-hero-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--exo-red);
    flex: 0 0 34px;
}

.exo-hero-cap h1 {
    font-size: 76px;
    line-height: .98;
    color: #fff;
    margin: 0 0 22px;
    letter-spacing: -.01em;
    opacity: 0;
    animation: exoRise .8s var(--exo-ease) .28s forwards;
}

.exo-hero-cap h1 span {
    color: var(--exo-red);
}

.exo-hero-cap p {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
    max-width: 33em;
    margin: 0 0 36px;
    opacity: 0;
    animation: exoRise .8s var(--exo-ease) .4s forwards;
}

.exo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 32px;
    opacity: 0;
    animation: exoRise .8s var(--exo-ease) .52s forwards;
}

.exo-hero-link {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(255, 255, 255, .3);
    transition: border-color .3s var(--exo-ease), color .3s var(--exo-ease);
}

.exo-hero-link:hover {
    color: #fff;
    border-bottom-color: var(--exo-red);
}

@keyframes exoRise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .exo-hero-cap h1 { font-size: 54px; }
    .exo-hero-cap p  { font-size: 17px; }
}

@media (max-width: 575px) {
    .exo-hero-cap h1 { font-size: 40px; }
    .exo-hero-cap    { padding: 24px 0; }
}

/* ---------- 6. Hero interno (paginas com breadcrumb) --------------------- */

.slider-height2 {
    min-height: 400px;
    position: relative;
}

/* Substitui o veu cinza chapado por um degrade com peso na base */
.hero-overly::before {
    background: linear-gradient(180deg, rgba(20, 23, 28, .58) 0%, rgba(20, 23, 28, .42) 45%, rgba(20, 23, 28, .82) 100%) !important;
}

.hero-cap .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    align-items: center;
}

.hero-cap .breadcrumb-item,
.hero-cap .breadcrumb-item a {
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
    transition: color .25s var(--exo-ease);
}

.hero-cap .breadcrumb-item a:hover {
    color: #fff;
}

.hero-cap .breadcrumb-item:last-child a {
    color: #fff;
}

.hero-cap .breadcrumb-item + .breadcrumb-item::before {
    color: var(--exo-red);
    content: "/";
    font-weight: 700;
}

/* ---------- 7. Bloco institucional da home ------------------------------- */

/* O padding-bottom deste bloco deixava um vazio branco enorme antes do rodape */
.about-low-area.padding-bottom {
    padding-bottom: 0;
}

.about-low-area {
    padding-top: 110px;
}

@media (max-width: 767px) {
    .about-low-area { padding-top: 70px; }
}

/* Primeiro paragrafo como lead: entrada mais editorial no texto */
.about-caption .section-tittle + p {
    font-size: 19px;
    line-height: 1.65;
    color: var(--exo-ink);
}

.about-media-frame {
    border-radius: var(--exo-radius);
    box-shadow: var(--exo-sh-lg);
    transition: transform .5s var(--exo-ease), box-shadow .5s var(--exo-ease);
}

.about-media-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 70px -28px rgba(38, 42, 49, .42);
}

.about-media-frame video,
.about-media-frame img {
    border-radius: 6px;
}

.about-img .about-font-img:not(.about-media-frame) > img {
    border-radius: var(--exo-radius);
    box-shadow: var(--exo-sh-md);
}

/* Espaco morto entre o texto institucional e a secao seguinte (pagina Sobre) */
.about-low-area.section-padding30 {
    padding-bottom: 30px;
}

.categories-area:not(.section-padding30) {
    padding-bottom: 90px;
}

/* Faixa do slogan: mais presenca, com filete vermelho no topo */
.about-tagline-band {
    background: linear-gradient(135deg, var(--exo-graphite) 0%, var(--exo-graphite-deep) 100%);
    padding: 52px 20px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.about-tagline-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--exo-red) 0%, var(--exo-red) 22%, rgba(241, 45, 70, 0) 100%);
}

/* Marca d agua geometrica: textura sutil no lugar de fundo chapado */
.about-tagline-band::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -70px;
    width: 320px;
    height: 320px;
    border: 46px solid rgba(255, 255, 255, .022);
    border-radius: 50%;
    pointer-events: none;
}

.about-tagline-band strong {
    letter-spacing: .1em;
}

.about-tagline-band span {
    display: block;
    margin-top: 10px;
}

/* ---------- 8. Cards (servicos / missao-visao-valores) ------------------- */

.flip-card {
    height: 272px;
    margin-bottom: 30px;
}

.flip-card-front,
.flip-card-back {
    border-radius: var(--exo-radius);
    padding: 34px 26px;
}

.flip-card-front {
    border: 1px solid var(--exo-line);
    box-shadow: var(--exo-sh-sm);
    transition: box-shadow .4s var(--exo-ease), border-color .3s var(--exo-ease);
}

.flip-card-inner {
    transition: transform .7s var(--exo-ease), box-shadow .4s var(--exo-ease);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
    box-shadow: var(--exo-sh-lg);
    border-radius: var(--exo-radius);
}

/* Icone assentado numa placa vermelha suave em vez de flutuar solto */
.flip-card-front .cat-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--exo-red-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background-color .35s var(--exo-ease), transform .35s var(--exo-ease);
}

.flip-card:hover .flip-card-front .cat-icon {
    background: rgba(241, 45, 70, .16);
    transform: scale(1.06);
}

.flip-card-front .cat-icon span,
.flip-card-front .cat-icon i {
    font-size: 40px;
    margin-bottom: 0;
}

.flip-card-front .cat-icon svg {
    height: 42px;
    margin: 0;
}

.flip-card:hover .flip-card-front .cat-icon span,
.flip-card:hover .flip-card-front .cat-icon i,
.flip-card:hover .flip-card-front .cat-icon svg {
    transform: none;
}

.flip-card-front h5 {
    font-size: 22px;
    line-height: 1.24;
    letter-spacing: .005em;
}

/* A dica fica sempre visivel (discreta): o card deixa de parecer vazio */
.flip-card-hint {
    opacity: .55;
    transform: translateY(0);
    color: var(--exo-muted);
    font-size: 10px;
    letter-spacing: .18em;
}

.flip-card:hover .flip-card-hint {
    opacity: 1;
    color: var(--exo-red);
}

.flip-card-back {
    background: linear-gradient(150deg, #2f353f 0%, #1c1f25 100%);
}

/* Respiro entre o titulo da secao e a grade de cards */
.categories-area.section-padding30 {
    padding-top: 100px;
    padding-bottom: 90px;
}

@media (max-width: 767px) {
    .categories-area.section-padding30 {
        padding-top: 60px;
        padding-bottom: 50px;
    }
}

/* ---------- 8b. Cards de navegacao (pagina Utilidades) ------------------- */

/* Estes cards vinham com 85px de padding e um icone vazio: muito vao morto */
.categories-area .single-cat {
    padding: 54px 26px;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--exo-radius);
    border-color: var(--exo-line);
    box-shadow: var(--exo-sh-sm);
    background: var(--exo-surface);
    transition: transform .4s var(--exo-ease), box-shadow .4s var(--exo-ease), border-color .3s var(--exo-ease);
}

.categories-area .single-cat:hover {
    transform: translateY(-6px);
    box-shadow: var(--exo-sh-lg);
    border-color: transparent;
}

.categories-area .single-cat::before {
    border-radius: var(--exo-radius);
}

/* Placeholders de icone que nunca receberam glifo */
.categories-area .single-cat .cat-icon span:empty,
.categories-area .single-cat .cat-icon i:empty {
    display: none;
}

.categories-area .single-cat .cat-icon:empty {
    display: none;
}

/* Titulo no mesmo Teko dos demais cards do site, em vez de Barlow 36px */
.categories-area .single-cat .cat-cap h5 > a {
    font-family: "Teko", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: .01em;
    color: var(--exo-ink);
    margin-bottom: 0;
}

.categories-area .single-cat:hover .cat-cap h5 > a {
    color: #fff;
}

/* Seta discreta ocupando o lugar do icone ausente */
.categories-area .single-cat .cat-cap h5 > a::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    background: var(--exo-red);
    margin: 18px auto 0;
    transform: scaleX(.5);
    transition: transform .35s var(--exo-ease), background-color .35s var(--exo-ease);
}

.categories-area .single-cat:hover .cat-cap h5 > a::after {
    transform: scaleX(1);
    background: #fff;
}

/* ---------- 9. Acordeoes / listas de utilidades -------------------------- */

.accordion .card {
    border-radius: 8px !important;
    border: 1px solid var(--exo-line);
    box-shadow: var(--exo-sh-sm);
    overflow: hidden;
    margin-bottom: 12px;
    transition: box-shadow .3s var(--exo-ease);
}

.accordion .card:hover {
    box-shadow: var(--exo-sh-md);
}

/* Nesta base o acordeao usa .btn.btn-link, que ja vem com fundo vermelho:
   o texto tem de continuar branco em TODOS os estados. Recolorir de vermelho
   fazia o titulo do container sumir assim que o item era aberto. */
.btn.btn-link,
.btn.btn-link:hover,
.btn.btn-link:focus,
.btn.btn-link:active,
.btn.btn-link:not(.collapsed) {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.btn.btn-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

/* ---------- 10. Rodape --------------------------------------------------- */

.footer-area.footer-bg {
    background: linear-gradient(180deg, var(--exo-graphite) 0%, var(--exo-graphite-deep) 100%);
    position: relative;
}

.footer-area.footer-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--exo-red) 0%, rgba(241, 45, 70, 0) 55%);
}

.footer-bottom {
    padding: 64px 0 48px;
}

/* A .row do rodape e a unica do site sem .container em volta. Sem o padding
   de 15px que o container daria, as margens negativas do Bootstrap jogavam a
   linha para x=-15px: o inicio do texto era cortado e sobrava overflow de
   15px a direita, revelando o branco ao lado do fundo escuro no celular. */
.footer-bottom > .row {
    margin-right: 0;
    margin-left: 0;
}

.footer-copy-right p {
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    letter-spacing: .01em;
}

.footer-copy-right a {
    color: var(--exo-red);
    transition: color .25s var(--exo-ease);
}

.footer-copy-right a:hover {
    color: #fff;
}

/* Endereco, telefone e e-mail viram itens proprios. Antes era um texto
   corrido com "|" no meio, entao a linha quebrava em qualquer espaco e os
   rotulos "Tel:" e "E-mail:" ficavam orfaos no fim da linha, longe do
   valor. Agora a quebra so acontece entre os itens. */
.footer-contato {
    font-weight: 700;
}

.footer-contato .sep {
    margin: 0 10px;
    opacity: .45;
}

/* Precisa desta especificidade para vencer a regra do style.css linha 4209,
   `.footer-area .footer-bottom .footer-copy-right p a`, que pinta de vermelho
   todo link dentro de um <p> do rodape. O vermelho e desejado no credito, mas
   nao no telefone e no e-mail, que devem seguir a cor do texto ao redor. */
.footer-area .footer-bottom .footer-copy-right .footer-contato a {
    color: inherit;
}

.footer-area .footer-bottom .footer-copy-right .footer-contato a:hover {
    color: var(--exo-red);
}

@media (max-width: 767px) {
    .footer-contato .sep {
        display: none;
    }

    .footer-contato .item {
        display: block;
    }
}

.footer-logo img {
    opacity: .95;
    transition: opacity .3s var(--exo-ease), transform .3s var(--exo-ease);
}

.footer-logo a:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .7);
    margin: 0 5px;
    transition: background-color .28s var(--exo-ease), border-color .28s var(--exo-ease), color .28s var(--exo-ease), transform .28s var(--exo-ease), box-shadow .28s var(--exo-ease);
}

.footer-social a:hover {
    background: var(--exo-red);
    border-color: var(--exo-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--exo-sh-red);
}

/* ---------- 11. Elementos flutuantes ------------------------------------- */

/* Balao do WhatsApp: mesmo raio e sombra do resto do site */
.whatswidget-conversation-message-outer {
    border-radius: 12px !important;
    box-shadow: 0 18px 38px -16px rgba(38, 42, 49, .45) !important;
    border: 1px solid rgba(38, 42, 49, .06) !important;
}

.whatswidget-text-header-outer {
    color: var(--exo-ink) !important;
}

/* O botao "voltar ao topo" e o proprio #back-top (circulo vermelho ja arredondado);
   o <a> interno so carrega o icone, entao nao ha raio a aplicar nele. */
#back-top {
    box-shadow: var(--exo-sh-md);
    transition: transform .28s var(--exo-ease), box-shadow .28s var(--exo-ease);
}

#back-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -12px rgba(38, 42, 49, .45);
}

/* ---------- 12. Formularios gerais --------------------------------------- */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    border-radius: 6px !important;
    transition: border-color .25s var(--exo-ease), box-shadow .25s var(--exo-ease);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: var(--exo-red) !important;
    box-shadow: 0 0 0 3px var(--exo-red-soft);
}

/* ---------- 13. Movimento reduzido --------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .exo-hero-eyebrow,
    .exo-hero-cap h1,
    .exo-hero-cap p,
    .exo-hero-actions {
        opacity: 1;
    }
}

/* ---------- 14. Missao/Visao/Valores com os textos novos ----------------- *
 * Os tres textos cresceram (Valores virou lista de 5 itens), e o verso do
 * card tinha 272px com `max-height: 175px` no <p>: caberia, mas rolando.
 * Escopo em .mvv-cards para nao mexer nos cards de servicos, que continuam
 * com o texto curto e a altura original.                                    */
.mvv-cards .flip-card {
    height: 344px;
}

.mvv-cards .flip-card-back p {
    max-height: 244px;
    font-size: 14px;
}

/* Valores: lista, nao paragrafo. Alinhada a esquerda porque o verso do card
   centraliza tudo por padrao e cinco itens centralizados ficam ilegiveis.   */
.valores-lista {
    width: 100%;
    max-height: 244px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    text-align: left;
    font-family: "Barlow", sans-serif;
    font-size: 13.5px;
    line-height: 1.45;
    color: #cfd4da;
}

.valores-lista b {
    color: #fff;
    font-weight: 600;
}

.valores-lista::-webkit-scrollbar {
    width: 4px;
}

.valores-lista::-webkit-scrollbar-thumb {
    background: var(--exo-red, #F12D46);
    border-radius: 2px;
}

@media (max-width: 767px) {
    .mvv-cards .flip-card {
        height: 400px;
    }

    .mvv-cards .flip-card-back p,
    .valores-lista {
        max-height: 300px;
    }
}

/* .slider-height2 aponta para img/hero/hero2.jpg, que nao existe no repositorio.
   Toda pagina que usa a classe define o fundo real via data-background, entao a
   regra do style.css so gera um 404 por carregamento. Cancela o pedido sem
   alterar o style.css do template. */
.slider-height2 {
  background-image: none;
}
