/*
Theme Name: Ematex Workwear
Theme URI: https://incdigital.com.br/
Author: Inc Digital
Author URI: https://incdigital.com.br/
Description: 
Version: 2026
Text Domain: incdigital
*/

/* FONTES
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

/* LOADER
================================================== */
#site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #051D4B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.loader-logo {
    animation: loader-breathe 2s ease-in-out infinite;
}

.loader-logo svg {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(195, 11, 39, 0.35));
}


.loader-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C30B27, #ff3d5a);
    border-radius: 99px;
    animation: loader-fill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 0 10px rgba(195, 11, 39, 0.6);
}

@keyframes loader-breathe {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(0.97);
    }
}

@keyframes loader-fill {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    85% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}

/* GERAL
================================================== */
:root {
    --azul_200: #0D3B94;
    --azul_400: #051D4B;
    --vinho: #C30B27;
    --cinza_100: #F2F2F2;
    --cinza_400: #3E3E3E;
}

body {
    position: relative;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

* {
    font-family: "Libre Franklin", sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    color: var(--cinza_400);
}

a,
.btn,
path {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

p,
a,
li {
    font-size: 16px;
    line-height: 24px;
}

h1,
.banner_interna h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

h2,
.pilar_item h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    --btn-fg: #fff;
    --btn-bg: transparent;
    --btn-icon-fg: var(--vinho);
    --btn-icon-bg: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    border: 1px solid var(--btn-fg);
    width: fit-content;
    transition: border-color 300ms ease;
}

.btn_texto {
    color: var(--btn-fg);
    font-size: 16px;
    font-weight: 700;
    padding: 8px 24px;
    background: var(--btn-bg);
    transition: color 300ms ease, background 300ms ease;
}

.btn_arrow,
.banner_btn_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-icon-bg);
    color: var(--btn-icon-fg);
    width: auto;
    height: 40px;
    aspect-ratio: 1/1;
    font-size: 20px;
    flex-shrink: 0;
    border-radius: 0 3px 3px 0;
    transition: color 300ms ease, background 300ms ease;
}

.btn:hover .btn_texto {
    color: var(--btn-icon-fg);
    background: var(--btn-icon-bg);
    /* height: 60px; */
    border-radius: 4px 0 0 4px;
    /* line-height: 40px; */
}

.btn:hover .btn_texto_marcas {
    line-height: 24px;
}
    

.btn:hover .btn_arrow,
.btn:hover .banner_btn_arrow {
    color: var(--btn-fg);
    background: var(--btn-bg);
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.align_items_end {
    align-items: flex-end;
}

.relative {
    position: relative;
}

.z_1 {
    z-index: 1;
}

.mb_15 {
    margin-bottom: 15px;
}

.py_80 {
    padding: 80px 0;
}

.py_100 {
    padding: 100px 0;
}

.py_110 {
    padding: 110px 0;
}

.representante_fixo {
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 99;
    background: url(images/botao-fixo/fixo-fundo.svg);
    background-size: cover;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

@media (max-width: 980px) {
    .representante_fixo {
        display: none;
    }
}

.btn_fixo {
    position: absolute;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    bottom: 35px;
    left: 15px;
}

.btn_fixo:hover path {
    fill: var(--azul_200);
}

.btn_fixo svg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/* CTA MOBILE REPRESENTANTE
================================================== */
.cta_mobile_rep {
    display: none;
}

@media (max-width: 980px) {
    .cta_mobile_rep {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        background-color: #051D4B;
        padding: 16px 24px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        z-index: 10;
        min-height: 75px;
    }

    .cta_mobile_rep::after {
        content: '';
        position: absolute;
        right: -10px;
        top: 0;
        bottom: 0;
        width: 130px;
        background: url(images/forma-after.svg) right center / contain no-repeat;
        pointer-events: none;
    }

    .cta_mobile_rep__texto {
        font-family: 'Libre Franklin', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        line-height: 1.5;
        position: relative;
        z-index: 1;
    }

    .cta_mobile_rep__arrow {
        font-family: 'Libre Franklin', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        position: relative;
        z-index: 1;
    }

    .cta_mobile_rep.is-sticky {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
    }
}

/* HEADER
================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

header .container {
    background: url(images/menu/fundo-menu.svg);
    background-size: cover;
    background-position: bottom right;
    padding-right: clamp(65px, 5vw, 100px);
    align-items: stretch;
}

header .logo_site {
    width: fit-content;
    pointer-events: auto;
}

header .logo_site::before {
    content: '';
    display: block;
    background: url(images/menu/fundo-logo.svg);
    background-size: cover;
    background-position: bottom right;
    width: 1040px;
    height: 114px;
    position: absolute;
    top: 0;
    right: clamp(-125px, 5vw, -150px);
    z-index: -1;
    pointer-events: none;
}

header .menu_container .menu-item {
    padding: 28px 0;
}

header .menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

header .menu a {
    color: #fff;
    padding: 3px 0;
    font-size: 16px;
}

header .menu .menu-item-has-children {
    position: relative;
}

header .menu .menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .menu .menu-item-has-children>a::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: url(images/icones/chevron-down.svg) center / contain no-repeat;
    filter: brightness(0) invert(1);
    transition: transform 300ms ease;
}

header .menu .menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

header .menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: -20px;
    z-index: 100;
}

header .menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

header .menu .sub-menu li {
    border-bottom: 1px solid var(--vinho);
    padding: 0;
}

header .menu .sub-menu li:last-child {
    border-bottom: none;
}

header .menu .sub-menu a {
    background: #A50420;
    display: block;
    padding: 15px 30px;
    border-bottom: none;
    transition: background 300ms ease, padding-left 300ms ease;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: start;
    width: 160px;
}

header .menu .sub-menu a:hover {
    font-weight: 700;
    background: #92021B;
}

header .menu .sub-menu li:nth-child(even) a {
    background: #A50420;
}

header .menu .sub-menu li a:hover {
    background: #92021B;
}

/* BANNER
================================================== */
#banner {
    height: 760px;
    background-size: cover !important;
    background-position: center !important;
}

#banner::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 29, 75, 0.8) 0%, #051d4b 100%);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .6;
    pointer-events: none;
}

#banner::after {
    content: '';
    display: block;
    background: url(images/banner-mascara.svg);
    background-size: cover;
    background-position: center;
    width: 456px;
    height: 288px;
    position: absolute;
    bottom: 0;
    right: 0;
}

#banner .container {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 980px;
    overflow: hidden;
}

.banner-home .container {
    padding-top: 50px;
}

.banner_content {
    max-width: 510px;
}

@media screen and (max-width: 980px) {
    .banner_content h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.banner_content p {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}

.container_btn {
    position: absolute;
    bottom: 0;
    width: 160%;
    left: 0;
    background: url(images/banner-fundo-container-btn.svg);
    background-size: cover;
    padding: 50px 0 50px 200px;
}

.banner_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.banner_cta_btn span:first-child {
    background: #fff;
    color: #C30B27;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    padding: 8px 24px;
    border-radius: 4px 0 0 4px;
    transition: background 0.2s;
}

.banner_cta_btn:hover span:first-child {
    background: #f5f5f5;
}

.banner_cta_arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #C30B27;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 0 4px 4px 0;
    font-size: 18px;
    transition: background 0.2s;
}

.banner_cta_btn:hover .banner_cta_arrow {
    background: #a50922;
}

#banner.banner_interna .container {
    justify-content: flex-end;
    padding-bottom: 110px;
}

.banner_interna .banner_content {
    max-width: 595px;
}

.banner_marcas .banner_content {
    max-width: 650px;
}

.banner_interna h1 {
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    font-weight: 400;
    width: 292px;
    height: 45px;
    margin-bottom: 15px;
    background: url(images/fundo-nome-pagina.svg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MARCAS
================================================== */
#marcas {
    overflow-x: hidden;
}

@supports (overflow: clip) {
    #marcas {
        overflow-x: clip;
        overflow-y: visible;
    }
}

.marcas_mobile {
    display: none;
}

#marcas h3 {
    color: var(--vinho);
    text-align: center;
    margin-bottom: 5px;
}

#marcas h2 {
    color: var(--azul_400);
    text-align: center;
    margin-bottom: 10px;
}

#marcas .container {
    max-width: 790px;
}

#marcas .container_marcas {
    max-width: 1270px;
    margin-top: 150px;
}

.marca_card {
    display: flex;
    align-items: stretch;
    border-radius: 6px;
    margin-bottom: 130px;
    min-height: 210px;
}

.marca_card:last-child {
    margin-bottom: 0;
}

.marca_card:nth-child(even) {
    flex-direction: row-reverse;
}

.marca_imagem {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 50%;
    padding: 60px;
    z-index: 1;
    min-height: 262px;
}

.marca_card:nth-child(even) .marca_imagem {
    justify-content: flex-end;
}

.marca_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    z-index: -1;
}

.marca_card:nth-child(even) .marca_bg {
    left: unset;
    right: 0;
}

.marca_logo_img {
    width: 380px;
}

.marca_svg_mobile {
    display: none;
}

.marca_conteudo {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    position: relative;
    z-index: 1;
    width: 50%;
    padding-left: 250px;
    padding-bottom: 25px;
}

.marca_card:nth-child(even) .marca_conteudo {
    padding-left: 0;
    padding-right: 250px;
}

.marca_svg {
    position: absolute;
    width: auto;
    height: 380px;
    z-index: -1;
    left: 0;
    bottom: 0;
}

.marca_card:nth-child(even) .marca_svg {
    transform: scaleX(-1);
    left: unset;
    right: 0;
}

@media (max-width: 1399px) and (min-width: 981px) {
    .marca_conteudo {
        padding-left: 100px;
    }
    .marca_conteudo .marca_svg {
        left: -150px;
    }
    
    .marca_card:nth-child(even) .marca_conteudo {
        padding-right: 100px;
    }
    .marca_card:nth-child(even) .marca_svg {
        right: -150px;
        left: unset;
    }
}

.marca_conteudo p,
li {
    color: #fff;
}

.marca_conteudo ul {
    display: flex;
    flex-direction: column;
    list-style: disc;
    list-style-position: inside;
}

.marca_conteudo ul li {
    font-weight: 700;
}

/* CONSULTORIA
================================================== */
#consultoria {
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: url(images/fundo-consultoria.svg);
    background-size: cover;
    background-position: top center;
    margin-top: 70px;
}

.consultoria_inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.consultoria_conteudo {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultoria_texto strong {
    color: white;
}

#consultoria h2,
#consultoria h3,
#consultoria p {
    color: #fff;
}

.consultoria_btn {
    margin-top: 45px;
}

.consultoria_imagem_wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
    width: 65%;
}

.consultoria_img {
    width: auto;
    display: block;
}

/* QUALIDADE
================================================== */
#qualidade {
    background: url(images/fundo-certificacoes.svg);
    background-size: cover;
    background-position: bottom center;
    padding: 100px 0;
}

.qualidade_inner {
    align-items: center;
}

.qualidade_card {
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    width: 40%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.20);
}

.qualidade_card_imagem_wrap img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.qualidade_card h2 {
    color: var(--vinho) !important;
}

.qualidade_selo {
    background: var(--vinho);
    color: #fff;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 5px;
}

.qualidade_conteudo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 48%;
}

#qualidade h2,
#qualidade h3 {
    color: #fff;
}

.qualidade_texto,
.qualidade_texto p,
.qualidade_texto li,
.qualidade_texto strong {
    color: #fff;
}

.qualidade_texto ul {
    display: flex;
    flex-direction: column;
    list-style: disc;
    gap: 5px;
    list-style-position: inside;
}

.qualidade_conteudo .btn {
    margin-top: 45px;
    --btn-icon-fg: var(--azul_400);
}

/* NOTÍCIAS
================================================== */
#noticias {
    padding-top: 130px;
    padding-bottom: 80px;
}

.noticias_header {
    text-align: center;
    margin-bottom: 60px;
}

#noticias h3 {
    color: var(--vinho);
    margin-bottom: 8px;
}

#noticias h2 {
    color: var(--azul_400);
}

.noticias_slider_wrap {
    overflow: visible;
    max-width: 1300px;
}

.noticias_swiper {
    overflow: visible;
    padding-bottom: 50px;
}

.noticia_card {
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 15px;
    margin-bottom: 50px;
}

.noticia_card-relacionadas {
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 15px;
    margin-bottom: 50px;
}

.noticia_card-relacionadas::after {
    content: "";
    position: absolute;
    background: url(images/forma-noticias.svg) no-repeat;
    bottom: -240px;
    right: -170px;
    width: 100%;
    height: 100%;
}

.noticia_imagem {
    width: 50%;
    flex-shrink: 0;
    border-radius: 25px;
    overflow: hidden;
}

.noticia_imagem img {
    width: 100%;
    height: 425px;
    object-fit: cover;
    display: block;
}

.noticia_conteudo {
    background: var(--cinza_100);
    border-radius: 25px;
    padding: 40px 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 49%;
}

.noticia_conteudo h3 {
    color: var(--vinho);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: none;
}

.noticia_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vinho);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    font-size: 18px;
    flex-shrink: 0;
    align-self: flex-end;
    transition: background 300ms ease;
}

.noticia_btn:hover {
    background: var(--azul_400);
}

.noticia_card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 45px;
    right: 0;
    width: 300px;
    height: 223px;
    background: url(images/forma-noticias.svg);
    background-size: cover;
    z-index: 0;
    display: block;
    margin: auto;
}

.noticias_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.noticias_prev,
.noticias_next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--vinho) !important;
    background: var(--vinho) !important;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 300ms ease, color 300ms ease;
}

.noticias_prev:hover,
.noticias_next:hover {
    background: var(--azul_400) !important;
    border-color: var(--azul_400) !important;
    color: #fff !important;
}

.noticias_nav .swiper-button-disabled {
    background: none !important;
    color: var(--vinho) !important;
    border-color: var(--vinho) !important;
}

.noticias_pagination {
    position: static !important;
    width: fit-content !important;
    display: flex;
    align-items: center;
    gap: 25px;
}

.noticias_pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--vinho);
    line-height: 1;
    cursor: pointer;
    transition: color 300ms ease;
    margin: 0 !important;
}

.noticias_pagination .swiper-pagination-bullet:hover {
    color: var(--azul_400);
}

.noticias_pagination .swiper-pagination-bullet-active {
    background: transparent;
    font-weight: 700;
}

.noticias_footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.noticias_footer .btn {
    --btn-fg: var(--azul_400);
    --btn-icon-bg: var(--azul_400);
    --btn-icon-fg: #fff;
}

/* BLOG
================================================== */
#blog {
    position: relative;
    overflow: hidden;
    display: none;
}

#single_post {
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

#single_post img {
    min-height: 500px;
}

#single_post .sn_conteudo {
    max-width: 820px;
    margin: 0 auto;
    gap: 40px;
}

.blog_inner {
    padding: 60px 0 75px;
}

.blog_inner::before {
    content: '';
    display: block;
    width: calc(100% - 50px);
    background: var(--cinza_100);
    border-radius: 25px;
    left: -80px;
    position: absolute;
    top: 0;
    height: calc(100% - 75px);
    z-index: -1;
}

.blog_inner::after {
    content: '';
    display: block;
    width: 1108px;
    height: 475px;
    position: absolute;
    z-index: -1;
    background: url(images/blog/blog-efeito.svg);
    right: -185px;
    bottom: 0;
}

.blog_header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog_header h2 {
    color: var(--azul_400);
}

#blog .btn {
    --btn-fg: var(--azul_400);
    --btn-icon-bg: var(--azul_400);
    --btn-icon-fg: #fff;
}

.blog_cards_wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 66%;
}

.blog_card {
    width: calc(50% - 12.5px);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.blog_card_imagem {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 15px;
}

.blog_card_imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.blog_card_conteudo {
    background: #fff;
    padding: 50px 30px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: -30px;
}

.blog_card_conteudo h3 {
    color: var(--vinho);
    font-size: 24px;
    line-height: 32px;
    text-transform: none;
    font-weight: 700;
}

/* SUSTENTABILIDADE
================================================== */
#sustentabilidade {
    background: url(images/pilares/fundo-pilares.svg);
    background-size: cover;
    background-position: center bottom;
    padding: 130px 0 180px;
}

#sustentabilidade * {
    color: #fff;
}

.sustentabilidade_inner {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
}

.sustentabilidade_conteudo {
    width: 53%;
    display: flex;
    flex-direction: column;
}

.sustentabilidade_conteudo h3,
.sustentabilidade_conteudo h2 {
    margin-bottom: 25px;
}

.sustentabilidade_desc {
    max-width: 365px;
}

.sustentabilidade_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.sustentabilidade_item {
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 60px 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sustentabilidade_icone {
    background: url(images/pilares/fundo-icone-pilares.svg);
    background-size: cover;
    background-position: center;
    width: 134px;
    height: 86px;
    display: flex;
    align-items: center;
    position: absolute;
    left: -1px;
    top: -30px;
    padding-left: 25px;
    padding-bottom: 10px;
}

.sustentabilidade_item h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.sustentabilidade_item p {
    font-weight: 700;
}

.sustentabilidade_media {
    position: relative;
    width: calc(47% - 40px);
}

.sustentabilidade_media>img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.sustentabilidade_stat {
    position: absolute;
    bottom: -80px;
    right: 0;
    left: 0;
    background: #fff;
    border-radius: 15px;
    padding: 60px 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 330px;
    margin: auto;
}

.sustentabilidade_stat_icone {
    position: absolute !important;
    top: -30px !important;
    left: 0px !important;
    background: url(images/sustentabilidade/fundo-icone-sustentabilidade.svg);
    background-size: cover;
    background-position: center;
}

.sustentabilidade_stat_icone img {
    filter: brightness(0) invert(1);
}

.sustentabilidade_stat_numero {
    color: var(--vinho) !important;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.sustentabilidade_stat_label {
    color: var(--vinho) !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

/* COMPROMISSO
================================================== */
#compromisso {
    overflow-x: hidden;
    padding: 130px 0;
}

.compromisso_inner {
    display: flex;
    align-items: stretch;
    position: relative;
    justify-content: flex-end;
    max-width: 980px;
}

.compromisso_imagem {
    position: relative;
    width: 49%;
    z-index: 2;
}

.compromisso_imagem img {
    height: 615px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    aspect-ratio: 803/615;
    width: auto;
    margin: auto;
    object-fit: cover;
    max-width: unset;
}

.compromisso_conteudo {
    width: 51%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 100px 0;
    position: relative;
}

.compromisso_conteudo::before {
    content: '';
    display: block;
    width: auto;
    height: 100%;
    background: url(images/praticas/bg-compromisso.svg) left center / cover no-repeat;
    position: absolute;
    right: -100%;
    top: 0;
    z-index: -1;
    aspect-ratio: 1678/389;
}

.compromisso_conteudo h2,
.compromisso_texto p,
.compromisso_texto strong {
    color: #fff;
}



.compromisso_texto ul,
.compromisso_texto ol {
    color: #fff;
    padding-left: 20px;
}

.compromisso_texto ul {
    list-style: disc;
}

.compromisso_texto ol {
    list-style: decimal;
}

.compromisso_texto li {
    color: #fff;
}

/* PRÁTICAS SUSTENTÁVEIS
================================================== */
#praticas_sustentaveis {
    overflow: hidden;
}

.praticas_header {
    margin-bottom: 50px;
    max-width: 980px;
}

.praticas_header h3 {
    color: var(--vinho);
    margin-bottom: 25px;
}

.praticas_header h2 {
    color: var(--azul_400);
}

.praticas_swiper {
    overflow: visible;
}

.praticas_swiper .swiper-wrapper {
    padding: 20px 0;
}

.praticas_card {
    background: url(images/praticas/praticas-itens-borda.svg);
    background-size: cover;
    background-position: bottom;
    position: relative;
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    height: 316px !important;
	justify-content: center;
    padding: 30px 15px 0;
}

.praticas_card_icone {
    width: 64px;
    height: 64px;
    position: absolute;
    top: -10px;
    left: 5px;
}

.praticas_card_icone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.praticas_card_corpo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.praticas_card h4 {
    color: var(--vinho);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.praticas_card p {
    color: var(--cinza_400);
    font-size: 15px;
}

.praticas_pagination {
    margin-top: 35px;
    position: static !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.praticas_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--cinza_400);
    opacity: 0.3;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 300ms ease, background 300ms ease;
}

.praticas_pagination .swiper-pagination-bullet-active {
    background: var(--vinho);
    opacity: 1;
}

.page-template-page-praticas #qualidade {
    margin-bottom: 280px;
}

/* FOOTER
================================================== */
footer {
    background: var(--vinho);
    margin-top: 100px;
}

footer::before {
    content: '';
    display: block;
    background: url(images/menu/fundo-menu.svg);
    background-size: cover;
    background-position: right;
    width: 40%;
    height: 100px;
    position: absolute;
    top: -100px;
    left: 0;
    transform: scaley(-1);
}

.footer_main {
    padding: 0 0 50px;
}

.footer_inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer_brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 23%;
    margin-right: 90px;
}

.footer_logo,
.footer_social_link {
    padding: 0 !important;
    border: none !important;
}

.footer_logo img {
    width: 100%;
}

.footer_brand p {
    color: #fff;
}

.footer_social {
    display: flex;
    gap: 12px;
}

.footer_social_link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: border-color 300ms ease;
}

.footer_social_link:hover {
    border-color: #fff;
}

.footer_social_link svg {
    width: 40px;
    height: 40px;
}

.footer_social_link:hover svg path {
    fill: var(--azul_200);
}

.footer_nav_col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 16%;
    margin-top: 60px;
}

.footer_nav_vendas {
    width: 22%;
}

.footer_nav_col h3 {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
}

.footer_nav_col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_main a:not(.btn) {
    color: #fff;
    transition: color 300ms ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}

.footer_main a:not(.btn):hover {
    border-color: var(--azul_200);
}

.footer_contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
    width: 24%;
}

.footer_contato h3 {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
}

.footer_contato .btn {
    margin-top: 30px;
}

.footer_contato_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.footer_contato_item svg {
    flex-shrink: 0;
}

.footer_contato_item p {
    color: #fff;
}

.footer_bottom {
    background: var(--azul_400);
    padding: 18px 0;
}

.footer_bottom_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_bottom_inner ul {
    display: flex;
    align-items: center;
    gap: 200px;
}

.footer_bottom_inner a,
.footer_bottom_inner p {
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: color 300ms ease;
}

.footer_bottom_inner a:hover {
    border-color: var(--vinho);
}

/* INSTITUCIONAL
================================================== */
#historia {
    padding: 110px 0 180px;
    overflow: hidden;
}

.historia_inner {
    align-items: flex-start;
}

.historia_conteudo {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 40%;
    padding-top: 100px;
}

#historia h3 {
    color: var(--vinho);
}

#historia h2 {
    color: var(--azul_400);
}

.historia_imagem {
    width: calc(60% - 15px);
}

.historia_imagem img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: unset;
    border-radius: 25px;
}

#pilares {
    background: url(images/pilares/fundo-pilares.svg);
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 45% center;
}

#pilares * {
    color: #fff;
}

#pilares h3 {
    margin-bottom: 25px;
}

.pilares_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 80px;
}

.pilar_item {
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.pilar_icone {
    background: url(images/pilares/fundo-icone-pilares.svg);
    background-size: cover;
    background-position: center;
    width: 134px;
    height: 86px;
    display: flex;
    align-items: center;
    position: absolute;
    left: -1px;
    top: -30px;
    padding-left: 25px;
    padding-bottom: 10px;
}

.pilar_item p {
    font-size: 16px;
    line-height: 28px;
}

#equipe {
    padding: 100px 0 140px;
}

.equipe_inner {
    align-items: stretch;
}

.equipe_conteudo {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 40%;
    padding: 70px 0;
}

#equipe h3 {
    color: var(--vinho);
}

#equipe h2 {
    color: var(--azul_400);
}

.equipe_conteudo .btn {
    --btn-fg: var(--vinho);
    --btn-icon-fg: #fff;
    --btn-icon-bg: var(--vinho);
    border-color: var(--vinho);
}

.equipe_imagem_container {
    width: calc(60% - 30px);
}

.equipe_imagem {
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    height: 88%;
    width: 130%;
    border-radius: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.equipe_imagem img {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    bottom: 0;
    right: 0;
}

.page-template-page-institucional::after {
    content: '';
    display: block;
    width: 68%;
    height: auto;
    aspect-ratio: 1313/861;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(images/efeito-logo-cinza-100.svg);
    background-size: cover;
    z-index: -1;
}

/* MARCA INTERNA
================================================== */
#marcas_lista {
    overflow-x: hidden;
}

.marca_svg_elizabeth {
    left: unset !important;
    right: -150px !important;
    bottom: -60px !important;
}

.marca_interna_inner {
    align-items: flex-start;
    gap: 40px;
    max-width: 1310px;
}

.marca_interna_imagem {
    width: 55%;
    border-radius: 30px;
    z-index: -1;
}

.marca_interna_imagem img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.marca_interna_legenda {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    width: 71%;
    background: rgba(30, 30, 30, 0.75);
    padding: 20px 25px;
    margin: auto;
    border-radius: 15px;
}

.marca_interna_legenda p {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
}

.marca_interna_conteudo {
    display: flex;
    flex-direction: column;
    width: calc(45% - 40px);
}

.marca_interna_logo img {
    max-height: 135px;
    width: auto;
    margin-bottom: 70px;
}

.marca_interna_subtitulo {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--azul_400);
    margin-bottom: 25px;
}

.marca_interna_caracteristicas {
    padding-top: 200px;
    padding-left: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin-top: auto;
}

.marca_interna_caracteristicas ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
}

.marca_interna_caracteristicas li {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    padding-left: 14px;
    position: relative;
}

.marca_interna_caracteristicas li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
}

.marca_interna_botoes {
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-left: 50px;
}

.marca_bloco:nth-of-type(even) .marca_interna_inner {
    flex-direction: row-reverse;
}

.marca_bloco:nth-of-type(even) .marca_interna_logo,
.marca_bloco:nth-of-type(even) .marca_interna_subtitulo,
.marca_bloco:nth-of-type(even) .marca_interna_texto {
    padding-left: 0;
    padding-right: 50px;
}

.marca_bloco:nth-of-type(even) .marca_svg {
    transform: scaleX(-1);
    left: unset;
    right: -150px;
}

.marca_bloco:nth-of-type(even) .marca_interna_caracteristicas {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 50px;
}

.marca_bloco:nth-of-type(even) .marca_interna_botoes {
    padding-left: 0;
    padding-right: 50px;
}

.marca_interna_conteudo svg {
    bottom: -60px;
    left: -150px;
}

.marca_interna_logo,
.marca_interna_subtitulo,
.marca_interna_texto {
    padding-left: 50px;
}

/* BANNER REDUZIDO
================================================== */
.banner_reduzido {
    background: url(images/banner-reduzido.svg);
    background-size: cover;
    background-position: center right;
    height: 277px;
    padding-bottom: 40px;
    display: flex;
    align-items: flex-end;
}

.banner_reduzido .container {
    max-width: 996px;
}

/* 404
================================================== */
#erro_404 {
    background: #fff;
}

.banner_404 {
    height: 320px;
    overflow: hidden;
}

.banner_404 .container {
    height: 100%;
    display: flex;
    align-items: flex-end;
    max-width: 996px;
    overflow: visible;
}

.banner_404 .banner_content {
    padding-bottom: 45px;
    max-width: none;
}

.banner_404 h1 {
    white-space: nowrap;
}

.erro_404_numero {
    position: absolute;
    right: 0;
    bottom: -100px;
    color: transparent;
    font-size: 310px;
    font-weight: 800;
    line-height: .78;
    letter-spacing: 0;
    opacity: .36;
    -webkit-text-stroke: 1px #77a2f5;
    pointer-events: none;
    z-index: 0;
}

.erro_404_conteudo {
    padding: 58px 0 0;
    min-height: 270px;
}

.erro_404_conteudo .container {
    max-width: 996px;
}

.erro_404_conteudo p {
    color: #4A4A4A;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 34px;
}

.erro_404_btn {
    --btn-fg: var(--azul_400);
    --btn-icon-bg: var(--azul_400);
    --btn-icon-fg: #fff;
}

/* FANCYBOX
================================================== */
body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-active {
    height: auto
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: 0;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    box-sizing: border-box
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide:before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-slide--html {
    padding: 6px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-container [data-selectable=true] {
    cursor: text
}

.fancybox-image,
.fancybox-spaceball {
    background: 0 0;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,
.fancybox-video {
    background: 0 0;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: 0
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: 0
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:nth-child(1),
.fancybox-button--pause svg:nth-child(1),
.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    background: 0 0;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.fancybox-navigation .fancybox-button div {
    padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0
}

.fancybox-caption {
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 25px 44px;
    right: 0;
    text-align: center;
    z-index: 99996
}

.fancybox-caption:before {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAD6CAQAAADKSeXYAAAAYklEQVQoz42RwQ3AMAgDjfcfup8WoRykfBAK5mQHKSz5rbXJPis1hjiV3CIqgG0hLZPkVkA4p4x5oR1bVeDrdCLrW2Q0D5bcwY3TGMHbdw3mPRuOtaspYP1w//G1OIcW148H0DMCqI/3mMMAAAAASUVORK5CYII=);
    background-repeat: repeat-x;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -44px;
    z-index: -1
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.fancybox-loading {
    -webkit-animation: a 1s linear infinite;
    animation: a 1s linear infinite;
    background: 0 0;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(.5, .5, .5);
    transform: scale3d(.5, .5, .5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1)
}

@media (max-height:576px) {
    .fancybox-caption {
        padding: 12px
    }

    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px
    }

    .fancybox-slide--image {
        padding: 6px 0
    }

    .fancybox-close-small {
        right: -6px
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
    color: #fff
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0;
    outline: 0;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    width: 212px;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a:before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus:before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
    opacity: 1
}

@media (max-width:576px) {
    .fancybox-thumbs {
        width: 110px
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px)
    }
}

body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-active {
    height: auto
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: 0;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    box-sizing: border-box
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide:before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-slide--html {
    padding: 6px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-container [data-selectable=true] {
    cursor: text
}

.fancybox-image,
.fancybox-spaceball {
    background: 0 0;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,
.fancybox-video {
    background: 0 0;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: 0
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: 0
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:nth-child(1),
.fancybox-button--pause svg:nth-child(1),
.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    background: 0 0;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.fancybox-navigation .fancybox-button div {
    padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0
}

.fancybox-caption {
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 25px 44px;
    right: 0;
    text-align: center;
    z-index: 99996
}

.fancybox-caption:before {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAD6CAQAAADKSeXYAAAAYklEQVQoz42RwQ3AMAgDjfcfup8WoRykfBAK5mQHKSz5rbXJPis1hjiV3CIqgG0hLZPkVkA4p4x5oR1bVeDrdCLrW2Q0D5bcwY3TGMHbdw3mPRuOtaspYP1w//G1OIcW148H0DMCqI/3mMMAAAAASUVORK5CYII=);
    background-repeat: repeat-x;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -44px;
    z-index: -1
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.fancybox-loading {
    -webkit-animation: a 1s linear infinite;
    animation: a 1s linear infinite;
    background: 0 0;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(.5, .5, .5);
    transform: scale3d(.5, .5, .5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1)
}

@media (max-height:576px) {
    .fancybox-caption {
        padding: 12px
    }

    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px
    }

    .fancybox-slide--image {
        padding: 6px 0
    }

    .fancybox-close-small {
        right: -6px
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
    color: #fff
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0;
    outline: 0;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    width: 212px;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a:before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus:before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
    opacity: 1
}

.fancybox-container {
    z-index: 9999992
}

.fancybox-caption__body {
    font-size: 13px;
    color: #fff;
}

/* CONTACT FORM 7
================================================== */
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    height: 38px;
    margin-bottom: 10px;

    outline: 0;
}

input[type="submit"] {
    background: #54ba49;
    border-bottom: 6px solid #39992f;
    padding: 20px;

    display: block;
    width: 100%;
    margin-top: 20px;

    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Pluto Sans Bold';

    cursor: pointer;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    display: inline-block;
    position: absolute;
    top: -9px;
    right: 0;
    background: #de3e45;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    padding: 5px;
    border-radius: 6px;
}

div.wpcf7-response-output {
    width: 100%;
    margin: 5px !important;
    padding: 20px !important;
    border-radius: 10px;
    border: none !important;
    color: #fff;
    background: #f5c003;
    display: block;
    text-align: center;
}

form.sent div.wpcf7-response-output {
    background: #43a345 !important
}


/* BREADCRUMB
================================================== */
.breadcrumb {
    padding: 20px 0;
}

.breadcrumb_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb_link {
    font-size: 14px;
    font-weight: 400;
    color: var(--cinza_400);
    text-transform: uppercase;
    letter-spacing: 5%;
    transition: color 300ms ease;
}

.breadcrumb_link:hover {
    color: var(--azul_200);
}

.breadcrumb_sep {
    display: block;
    width: 24px;
    height: 24px;
    background: url(images/icones/chevron-right.svg) center / contain no-repeat;
}

.breadcrumb_current {
    font-size: 14px;
    font-weight: 700;
    color: var(--azul_400);
    text-transform: uppercase;
    letter-spacing: 5%;
}

/* NOTÍCIAS — DESTAQUE
================================================== */
.ndestaque_card {
    margin-bottom: 60px;
    padding-bottom: 50px;
    gap: 25px;
}

.ndestaque_card::after {
    left: 175px;
}

.ndestaque_card .noticia_imagem {
    width: 57%;
}

.ndestaque_card .noticia_conteudo {
    width: calc(43% - 25px);
    gap: 25px;
    padding: 70px 50px 20px;
}

.ndestaque_card .noticia_conteudo h2 {
    color: var(--vinho);
    transition: color 300ms ease;
}

.ndestaque_card .noticia_conteudo h2:hover {
    color: var(--azul_400);
}

.ndestaque_card .nlista_btn {
    margin-left: auto;
}

/* NOTÍCIAS — LISTA
================================================== */
#noticias_lista {
    padding: 60px 0 130px;
}

#noticias_lista .noticias_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
}

.nlista_card {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
}

.nlista_img {
    width:45%;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.nlista_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nlista_conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 50%;
}

.nlista_data {
    font-size: 12px;
    color: var(--vinho);
    border: 1px solid var(--vinho);
    border-radius: 20px;
    padding: 8px 16px;
    display: inline-block;
    line-height: 14px;
}

.nlista_titulo a {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: var(--azul_400);
    margin: 0;
}

.nlista_titulo a {
    color: var(--azul_400);
    transition: color 300ms ease;
}

.nlista_titulo a:hover {
    color: var(--azul_200);
}

.nlista_excerpt {
    font-size: 14px;
    line-height: 22px;
    color: var(--cinza_400);
    flex: 1;
}

.nlista_excerpt p {
    margin: 0;
}

/* Botão exclusivo da listagem de notícias */
.nlista_btn {
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--vinho);
    width: fit-content;
    transition: border-color 300ms ease;
    text-decoration: none;
}

.nlista_btn_texto {
    font-size: 16px;
    font-weight: 700;
    color: var(--vinho);
    background: transparent;
    padding: 8px 24px;
    transition: background 300ms ease, color 300ms ease;
}

.nlista_btn_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vinho);
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 300ms ease, color 300ms ease;
}

.nlista_btn:hover .nlista_btn_texto {
    background: var(--vinho);
    color: #fff;
}

.nlista_btn:hover .nlista_btn_arrow {
    background: transparent;
    color: var(--vinho);
}

/* Paginação */
.noticias_paginacao {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.noticias_paginacao ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.noticias_paginacao .page-numbers {
    font-size: 16px;
    font-weight: 500;
    color: var(--vinho);
    background: transparent;
    text-decoration: none;
    transition: color 300ms ease;
    line-height: 1;
}

.noticias_paginacao .page-numbers:hover {
    color: var(--azul_400);
}

.noticias_paginacao .page-numbers.current {
    font-weight: 700;
    color: var(--vinho);
}

.noticias_paginacao .page-numbers.prev,
.noticias_paginacao .page-numbers.next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--vinho);
    border: 1px solid var(--vinho);
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    transition: background 300ms ease, border-color 300ms ease;
}

.noticias_paginacao .page-numbers.prev:hover,
.noticias_paginacao .page-numbers.next:hover {
    background: var(--azul_400);
    border-color: var(--azul_400);
    color: #fff;
}

.noticias_paginacao .page-numbers.disabled {
    background: transparent;
    border-color: var(--vinho);
    color: var(--vinho);
    cursor: default;
    pointer-events: none;
}

.noticias_vazio {
    text-align: center;
    color: var(--cinza_400);
    padding: 40px 0;
}

/* REPRESENTANTES
================================================== */
#banner.banner_representantes {
    background-image: url(images/banner-representantes.svg) !important;
}

/* .banner_representantes .container {
    padding-bottom: 210px !important;
} */

@media (max-width: 1024px) {
	.banner_representantes {
		background-position: center !important;
	}
}

.banner_representantes {
	height: 350px;
}

.banner_representantes h1 {
    font-size: 32px;
}

.banner_representantes p {
    font-size: 16px;
}

/* Exportação */

#representantes_exportacao {
    margin-left: 10%;
    margin-bottom: 200px;
}

.representantes_exportacao_inner {
    background: url(images/bg-exportacao.svg) no-repeat;
    display: flex;
    align-items: stretch;
    max-width: 1920px;
    margin: 0 auto;
}

.representantes_exportacao_imagem {
    background: url(images/container.png) no-repeat;
    background-size: contain;
    width: 769px;
    height: 518px;
    margin-left: -80px;
}

.representantes_exportacao_conteudo {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.representantes_exportacao_conteudo h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    margin: 0;
}

.representantes_exportacao_conteudo p {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    margin: 0;
    max-width: 486px;
}

.representantes_exportacao_contato {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.representantes_exportacao_contato svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.representantes_exportacao_contato span {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

@media (max-width: 1024px) {
    #representantes_exportacao {
        margin-left: unset;
        margin-bottom: 50px;
        overflow-x: hidden;
    }

    .representantes_exportacao_inner {
        width: 100%;
        max-width: 100%;
        background-position: center right;
        background-size: cover;
    }


}


/* Form Representantes */
#representantes_form {
    margin-top: 100px;
    padding: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 145px;
}

.representantes_form_card {
    display: flex;
    max-width: 1341px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    position: relative;
}

.representantes_form_card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(images/forma-after.svg) no-repeat center bottom;
    z-index: -1;
    bottom: -85px;
    right: 100px;
}

.representantes_form_image {
    background: url(images/image-representantes.svg) center center / cover no-repeat;
    width: 50%;
    max-height: 405px;
    height: 405px;
    border-radius: 24px;
    margin-right: -55px;
    z-index: 1;
}

.representantes_form_lado {
    flex: 1;
    padding: 80px 80px 80px 132px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    background-color: #fff;
}

.representantes_form_titulo {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--vinho);
    margin: 0 0 4px;
}

.representantes_form_lista {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.representantes_form_lista--single {
    display: flex;
    align-items: center;
    gap: 8px;
}

.representantes_form_desc {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6b7280;
    margin: 0 0 24px;
}

.representantes_busca_form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.representantes_form_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.representantes_form_field label {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #051D4B;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.representantes_select_wrap {
    position: relative;
    width: 40%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--vinho);
}

.representantes_select_wrap svg {
    margin-right: 20px;
}

.representantes_select_wrap select {
    width: 100%;
    padding: 15px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--vinho);
    background: #fff;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
    outline: none;
}

.representantes_select_wrap select:focus {
    border-color: #051D4B;
}

.container__form--button {
    display: flex;
    gap: 0;
    align-items: center;
}

.container__form--button_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 4px 4px 0px;
    border: 1px solid var(--vinho);
    border-left: none;
    padding: 8px 10px;
    min-height: 35px;
}

.representantes_select_arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6b7280;
    pointer-events: none;
}

.representantes_form_submit {
    background-color: var(--vinho);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 4px 0px 0 4px;
    border: 1px solid var(--btn-fg);
    width: fit-content;
    transition: border-color 300ms ease;
    padding: 8px 24px;
    min-height: 35px;
    cursor: pointer;
}

.representantes_form_submit span {
    color: #fff;
}

.representantes_form_submit:hover {
    background: #a50922;
}

.representantes_form_submit svg {
    width: 20px;
    height: 20px;
}

.representante_card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.representante_card:hover {
    box-shadow: 0 8px 32px rgba(5, 29, 75, 0.12);
    transform: translateY(-4px);
}

.representante_foto {
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

.representante_foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.representante_card:hover .representante_foto img {
    transform: scale(1.04);
}

.representante_foto_placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.representante_foto_placeholder svg {
    width: 64px;
    height: 64px;
}

.representante_info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.representante_nome {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #051D4B;
    margin: 0 0 4px;
    line-height: 1.3;
}

.representante_segmento,
.representante_estado {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 20px;
    margin-right: 6px;
}

.representante_segmento {
    background: rgba(5, 29, 75, 0.08);
    color: #051D4B;
}

.representante_estado {
    color: #0C3481;
}

.representante_contato {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.representante_contato:hover {
    color: #C30B27;
}

.representante_contato svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #C30B27;
}

.representante_whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 8px;
    align-self: flex-start;
    transition: background 0.2s;
}

.representante_whatsapp:hover {
    background: #1ebe5d;
}

.representante_whatsapp svg {
    width: 18px;
    height: 18px;
}

.representantes_vazio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #6b7280;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
}

/* BLOG — CARD DESTAQUE
================================================== */
.bdestaque_card {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
    gap: 0;
}

.bdestaque_img {
    display: block;
    width: 57%;
    flex-shrink: 0;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
}

.bdestaque_img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}

.bdestaque_card:hover .bdestaque_img img {
    transform: scale(1.03);
}

.bdestaque_conteudo {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 8px 40px rgba(5, 29, 75, 0.12);
    padding: 50px 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-left: -60px;
    width: calc(43% + 60px);
}

.bdestaque_titulo {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
}

.bdestaque_titulo a {
    color: var(--vinho);
    transition: color 300ms ease;
    font-size: 32px;
}

.bdestaque_titulo a:hover {
    color: var(--azul_400);
}

.bdestaque_excerpt {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: var(--azul_400);
}

.bdestaque_conteudo .nlista_btn {
    margin-left: auto;
}

/* BLOG LISTA
================================================== */
#blog_lista {
    padding: 60px 0 130px;
    position: relative;
}

.blog_lista_grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
}

.blog_lista_grid::before {
    content: "";
    position: absolute;
    background: url(images/gradiente-blog.svg) no-repeat;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    bottom: -350px;
    z-index: -1;
    pointer-events: none;
}

.blista_card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(5, 29, 75, 0.08);
    transition: box-shadow 300ms ease;
}

.blista_card:hover {
    box-shadow: 0 8px 36px rgba(5, 29, 75, 0.15);
}

.blista_img {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blista_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}

.blista_card:hover .blista_img img {
    transform: scale(1.04);
}

.blista_conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    flex: 1;
}

.blista_data {
    font-size: 12px;
    color: var(--vinho);
    border: 1px solid var(--vinho);
    border-radius: 20px;
    padding: 6px 14px;
    display: inline-block;
    line-height: 14px;
}

.blista_titulo {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
}

.blista_titulo a {
    color: var(--azul_400);
    transition: color 300ms ease;
}

.blista_titulo a:hover {
    color: var(--vinho);
}

.blista_excerpt {
    font-size: 14px;
    line-height: 22px;
    color: var(--cinza_400);
    flex: 1;
}

.blista_excerpt p {
    margin: 0;
}

.blog_vazio {
    text-align: center;
    color: var(--cinza_400);
    padding: 40px 0;
}

/* SINGLE NOTÍCIA
================================================== */
#single_noticia {
    padding: 60px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#single_noticia::after {
    content: "";
    position: absolute;
    background: url(images/bg-page-noticias.svg) no-repeat;
    inset: 0;
    height: 655px;
    z-index: -1;
    top: 340px;
    background-size: 30%;
}

#single_noticia .container {
    max-width: 820px;
}

.sn_imagem {
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 50px;
    max-width: 1200px;
    width: 100%;
}

.sn_imagem img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.sn_conteudo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sn_titulo {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--azul_400);
}

.sn_data {
    font-size: 12px;
    color: var(--vinho);
    border: 1px solid var(--vinho);
    border-radius: 20px;
    padding: 8px 16px;
    display: inline-block;
    line-height: 14px;
    width: fit-content;
}

.sn_texto {
    margin-top: 10px;
}

.sn_texto p {
    font-size: 16px;
    line-height: 26px;
    color: var(--cinza_400);
    margin-bottom: 20px;
}

.sn_texto p:last-child {
    margin-bottom: 0;
}

.sn_texto h2,
.sn_texto h3,
.sn_texto h4 {
    color: var(--azul_400);
    margin-bottom: 10px;
    margin-top: 15px;
}

.sn_texto h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
}

.sn_texto strong {
    color: var(--azul_400);
    font-weight: 700;
}

.sn_texto a {
    color: var(--vinho);
    text-decoration: underline;
    transition: color 300ms ease;
}

.sn_texto a:hover {
    color: var(--azul_200);
}

.sn_texto ul,
.sn_texto ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.sn_texto ul {
    list-style: disc;
}

.sn_texto ol {
    list-style: decimal;
}

.sn_texto li {
    font-size: 16px;
    line-height: 26px;
    color: var(--cinza_400);
    margin-bottom: 8px;
}

.sn_texto blockquote {
    background: var(--cinza_100);
    border-left: 4px solid var(--vinho);
    padding: 25px 30px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
    font-style: italic;
}

.sn_texto blockquote p {
    font-size: 15px;
    line-height: 24px;
    color: var(--cinza_400);
    margin-bottom: 0;
}

.sn_texto img {
    border-radius: 15px;
    margin: 20px 0;
}

/* Single Notícia — Bloco Marcas */
#sn_marcas {
    padding: 60px 0;
}

.sn_marcas--content {
    max-width: 996px;
	margin: 0 auto;
}

.sn_marcas_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    background: var(--cinza_100);
    border-radius: 15px;
    padding: 40px 30px;
}

.sn_marcas_grid--1 {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
}

.sn_marcas_grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sn_marca_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 3px solid var(--marca-cor, var(--vinho));
    padding-left: 20px;
}

.sn_marca_logo {
    margin-bottom: 5px;
}

.sn_marca_logo img {
    max-height: 40px;
    width: auto;
}

.sn_marca_desc,
.sn_marca_desc p {
    font-size: 14px;
    line-height: 22px;
    color: var(--cinza_400);
}

.sn_marca_desc p {
    margin: 0;
}

/* Single Notícia — Relacionadas */
#sn_relacionadas {
    padding: 80px 0 130px;
}

.sn_relacionadas_content {
	max-width: 1300px;
	margin: 0 auto;
}

.sn_relacionadas_titulo {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--azul_400);
    text-align: center;
    margin-bottom: 50px;
}

.sn_relacionadas_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.sn_relacionadas_grid .noticia_imagem {
    border-radius: 15px;
    min-height: 400px;
}

.sn_relacionadas_grid .noticia_imagem img {
    border-radius: 24px;
}

.sn_relacionadas_grid .noticia_conteudo {
    width: 100%;
    border-radius: 24px;
    padding: 40px 32px 32px;
    z-index: 1;
}

.sn_relacionadas_grid .noticia_conteudo h3 {
    font-size: 20px;
    line-height: 28px;
}

.sn_relacionadas_grid .noticia_conteudo h3 a {
    color: var(--vinho);
    transition: color 300ms ease;
    font-size: 24px;
}

.sn_relacionadas_grid .noticia_conteudo h3 a:hover {
    color: var(--azul_400);
}

.sn_relacionadas_grid .noticia_card::after {
    display: none;
}

/* ACEITAR COOKIES
================================================== */
.aceitar_cookies {
    display: none;
}

.aceitar_cookies_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    width: 100%;
    background: #fff;
    padding: 25px 80px;

    -webkit-box-shadow: 0 24px 81px rgba(0, 0, 0, .4), 0 9px 32px rgba(0, 0, 0, .2) !important;
    box-shadow: 0 24px 81px rgba(0, 0, 0, .4), 0 9px 32px rgba(0, 0, 0, .2) !important;

    position: fixed;
    bottom: 0;
    z-index: 99999999999;
}

.aceitar_cookies p {
    width: calc(100% - 160px);
}

.aceitar_cookies a {
    text-decoration: underline;
    color: var(--verde);
}

.aceitar_cookies_bt {
    padding: 10px 20px;
    color: #fff !important;
    background: #191919;
}

/* MARCA LINHAS
================================================== */

/* ── Tabs ── */
#marca_linhas,
.marca_linhas_bloco {
    background: #fff;
    padding-bottom: 0;
}

.marca_linhas_bloco[hidden] {
    display: none;
}

.ml_section_header {
    padding-top: 60px;
    padding-bottom: 30px;
}

.ml_section_titulo {
    color: #051D4B;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    font-family: 'Libre Franklin', sans-serif;
}

.ml_tabs_wrapper {
    position: relative;
    z-index: 10;
    background: #fff;
    padding-top: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Faixa laranja fica no wrapper, atrás das tabs */
.ml_tabs_wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 53px;
    background: #F16E34;
    z-index: 0;
    width: 90%;
    margin: 0 auto;
}

.ml_tabs {
    display: flex;
    align-items: flex-end;
    overflow: visible;
    scrollbar-width: none;
    gap: 0;
    background: transparent;
    position: relative;
    z-index: 1;
    height: 75px;
}

.ml_tabs::-webkit-scrollbar {
    display: none;
}

.ml_tab {
    flex-shrink: 0;
    padding: 5px 36px 0 36px;
    height: 53px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Libre Franklin', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    line-height: 53px;
    white-space: nowrap;
}

.ml_tab:hover {
    color: #fff;
}

.ml_tab.is_active {
    font-weight: 700;
    color: #fff;
    height: 74px;
    line-height: 74px;
    min-width: 151px;
    padding: 10px 50px 0 20px;
    background: url(images/tab-active2.svg) right bottom / auto 100% no-repeat, linear-gradient(to right, #051D4B 0%, #051D4B calc(100% - 60px), transparent calc(100% - 60px), transparent 100%);
    border-radius: 12px 0 0 0;
    clip-path: none;
    z-index: 2;
}

/* ── Painel ── */
.ml_painel {
    display: none;
    padding-top: 50px;
    padding-bottom: 80px;
    background: linear-gradient(136deg, #051D4B 18%, #0C44B1 100%);
}

.ml_painel.is_active {
    display: block;
}

.ml_linha_header {
    max-width: 800px;
    margin: 0 auto 65px;
    padding-top: 60px;
}

.ml_linha_titulo {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 0 16px;
    font-family: 'Libre Franklin', sans-serif;
}

.ml_descricao,
.ml_descricao p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    margin: 0;
}

.ml_descricao strong,
.ml_descricao p strong {
    color: #fff;
    font-weight: 700;
}

/* ── Grid de cards ── */
.ml_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

/* ── Card ── */
.ml_card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Header — faixa colorida superior */
.ml_card_header {
    position: relative;
    min-height: 173px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ml_card_header_bar {
    position: absolute;
    inset: 0;
    background: var(--card-cor, #C70426);
    transition: background 0.3s;
}

/* Shape diagonal decorativo translúcido no canto inferior direito do header */
.ml_card_header_bar::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -10px;
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.12);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

/* Box branco arredondado com ícones de tecnologia */
.ml_card_tecnologias {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 6px 10px;
    z-index: 2;
}

.ml_card_tecnologias img {
    height: 26px;
    width: auto;
    display: block;
}

.ml_card_tecnologias img+img {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #BEBEBE;
}

/* Etiqueta com código/nome — faixa branca diagonal */
.ml_card_label_wrap {
    position: relative;
    z-index: 1;
    display: flex;
}
.ml_card_adicionais {
    position: relative;
    display: flex;
    align-items: center;
    background: #1C3C6B;
    color: #fff;
    padding: 12px 36px 12px 34px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 100%, 0 100%);
    margin-left: -22px;
    z-index: -1;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    word-break: break-word;
}

.ml_card_label {
    position: relative;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;
    background: #fff;
    color: var(--card-cor, #C70426);
    padding: 12px 36px 12px 24px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 100%, 0 100%);
    transition: color 0.3s;
    min-width: 0;
    flex-shrink: 1;
}

.ml_card_codigo,
.ml_card_nome {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.ml_card_codigo {
    white-space: nowrap;
    flex-shrink: 0;
}

.ml_card_nome {
    min-width: 0;
    word-break: break-word;
}

/* Corpo do card */
.ml_card_body {
    padding: 24px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.ml_card_repelx {
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    align-self: start;
}

.ml_repelx_card_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    gap: 0;
}

.ml_card_repelx .ml_repelx_logo {
    position: relative;
    min-height: 173px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-end;
    background: var(--card-cor, #4b4d3f);
    overflow: hidden;
}

.ml_card_repelx .ml_repelx_logo::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -10px;
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.12);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.ml_card_repelx .ml_repelx_logo img {
    display: block;
    max-width: 190px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 8px;
    padding: 12px 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.ml_repelx_chamada {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    line-height: 1.45;
    color: #3e3e3e;
}

.ml_card_repelx .ml_repelx_chamada {
    padding: 24px 32px 8px;
    font-weight: 700;
}

.ml_repelx_chamada p {
    margin: 0;
}

.ml_repelx_chamada strong,
.ml_repelx_chamada b {
    font-weight: 700;
}

.ml_repelx_chamada em {
    color: #f47d2b;
    font-style: normal;
    font-weight: 700;
}

.ml_repelx_imagem {
    background: #f4f4f4;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ml_card_repelx .ml_repelx_imagem {
    margin: 16px 32px 24px;
}

.ml_repelx_imagem img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
}

.ml_card_repelx .ml_repelx_beneficios {
    padding: 0;
    margin: 0;
    gap: 0;
    background: transparent;
}

.ml_card_repelx .ml_repelx_beneficio {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 32px;
    border-radius: 0;
    background: #f7f7f7;
    border-left: 8px solid var(--repelx-cor, #ff7f2a);
    color: #3e3e3e;
}

.ml_card_repelx .ml_repelx_beneficio + .ml_repelx_beneficio {
    border-top: 1px solid #e5e5e5;
}

.ml_card_repelx .ml_repelx_beneficio_icone {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--repelx-cor, #ff7f2a) 18%, #fff);
    border: 2px solid var(--repelx-cor, #ff7f2a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml_card_repelx .ml_repelx_beneficio_icone img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.ml_card_repelx .ml_repelx_beneficio_textos h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    color: #3e3e3e;
    text-transform: uppercase;
}

.ml_card_repelx .ml_repelx_beneficio_textos,
.ml_card_repelx .ml_repelx_beneficio_textos p {
    font-size: 15px;
    line-height: 1.45;
    color: #3e3e3e;
}

.ml_card_repelx .ml_repelx_beneficio_textos p {
    margin: 0;
}

.ml_card_repelx .ml_repelx_beneficio_textos strong,
.ml_card_repelx .ml_repelx_beneficio_textos b {
    font-weight: 700;
}

.ml_card_repelx .ml_repelx_rodape {
    display: grid;
    grid-template-columns: 1fr 82px;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 24px 32px;
    border-radius: 0;
    background: #fff;
    color: #3e3e3e;
}

.ml_card_repelx .ml_repelx_rodape_texto,
.ml_card_repelx .ml_repelx_rodape_texto p {
    font-size: 15px;
    line-height: 1.5;
    color: #3e3e3e;
}

.ml_card_repelx .ml_repelx_rodape_texto p {
    margin: 0 0 10px;
}

.ml_card_repelx .ml_repelx_rodape_texto p:last-child {
    margin-bottom: 0;
}

.ml_card_repelx .ml_repelx_rodape_texto strong,
.ml_card_repelx .ml_repelx_rodape_texto b {
    font-weight: 700;
}

.ml_card_repelx .ml_repelx_rodape_texto em {
    background: #f47d2b;
    color: inherit;
    font-style: normal;
    font-weight: 700;
    padding: 0 4px;
}

.ml_card_repelx .ml_repelx_certificacao {
    width: 76px;
    max-height: 76px;
    object-fit: contain;
    justify-self: end;
}

/* Specs */
.ml_specs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ml_spec_row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #3E3E3E;
}

.ml_spec_row dt {
    font-weight: 700;
    color: #3E3E3E;
    text-transform: lowercase;
}

.ml_spec_row dt strong {
    font-weight: 700;
    color: #3E3E3E;
    text-transform: uppercase;
}

.ml_spec_row dt em {
    font-style: italic;
    font-weight: 700;
}

.ml_spec_row dd {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    color: #3E3E3E;
}

.ml_sep {
    color: #C30B27;
    font-weight: 700;
}

/* Ícones de instruções de conservação (linha horizontal) */
.ml_card_instrucoes {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ml_card_instrucoes img {
    height: 28px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

/* Bloco "cores" */
.ml_cores_wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ml_cores_label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #3E3E3E;
    text-transform: lowercase;
    line-height: 24px;
    margin: 0;
}

.ml_cores_scroll_hint {
    display: inline-block;
    color: #999;
    animation: scrollHintAnim 1.5s infinite ease-in-out;
}

@keyframes scrollHintAnim {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.ml_swatches_swiper {
    overflow: hidden;
    width: 100%;
    padding: 12px 12px 35px !important;
    margin: -12px -12px -20px !important;
    box-sizing: content-box;
}

.ml_swatches_pagination {
    bottom: 8px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.ml_swatches_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid #C4C4C4;
    opacity: 1;
    margin: 0 !important;
}

.ml_swatches_pagination .swiper-pagination-bullet-active {
    background: #C4C4C4;
}

.ml_swatches {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.ml_swatch_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    width: auto !important;
    flex-shrink: 0;
}


.ml_swatch {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    padding: 0;
    opacity: 0.35;
	margin-left: 5px;
}


.ml_swatch:hover {
    transform: scale(1.15);
    transform-origin: bottom center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
}

.ml_swatch.is_active {
    transform: scale(1.15);
    transform-origin: bottom center;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #3E3E3E;
    border-color: transparent;
    opacity: 1;
}

.ml_swatch_item:has(.ml_swatch.is_active),
.ml_swatch_item:has(.ml_swatch:hover) {
    position: relative;
    z-index: 2;
}


.ml_swatch_meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    margin-top: 3px;
}

.ml_swatches .swiper-slide {
	display: flex !important;
}

.ml_swatch_codigo {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 8px;
    font-weight: 400;
    color: #3E3E3E;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.ml_swatch_meta .ml_cor_classificacao_icon {
    width: 13px;
    height: 8px;
    font-size: 8px;
    color: #3E3E3E;
    flex-shrink: 0;
}

.ml_swatch_meta .ml_icon_branco::before,
.ml_swatch_meta .ml_icon_clara::before,
.ml_swatch_meta .ml_icon_media::before,
.ml_swatch_meta .ml_icon_escura::before {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
}

.ml_swatch_meta .ml_icon_branco::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='10' viewBox='0 0 24 24' fill='none' stroke='%233E3E3E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 C12 2 5 10 5 15 a7 7 0 0 0 14 0 C19 10 12 2 12 2z'/%3E%3C/svg%3E");
    width: 8px;
    height: 10px;
}

/* Botão "Mais informações" — texto à esquerda + ícone à direita */
.ml_btn_mais_info {
    align-self: flex-start;
    margin-top: auto;
    display: inline-flex;
    align-items: stretch;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: 'Libre Franklin', sans-serif;
}

.ml_btn_mais_info_texto {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border: 1px solid #C30B27;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    color: #C30B27;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

.ml_btn_mais_info_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: #C30B27;
    border: 1px solid #C30B27;
    border-radius: 0 4px 4px 0;
    color: #fff;
}

.ml_btn_mais_info_icon svg {
    width: 14px;
    height: 8px;
}

.ml_btn_mais_info:hover .ml_btn_mais_info_texto {
    background: #C30B27;
    color: #fff;
}

/* ── Modal ── */
.ml_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
}

.ml_overlay.is_active {
    display: block;
}

.ml_modal {
    position: fixed;
    inset: 0;
    z-index: 901;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}

.ml_modal[hidden] {
    display: none;
}

.ml_modal:not([hidden]) {
    pointer-events: auto;
}

.ml_modal_inner {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.ml_modal_fechar {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    line-height: 1;
    color: var(--azul_400);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-weight: 300;
}

.ml_modal_header {
    background: var(--card-cor, var(--vinho));
    padding: 0;
    min-height: 140px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.ml_modal_secao {
    border-top: 1px solid #e8e8e8;
}

.ml_modal_secao_titulo {
    background: #E8622A;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    padding: 14px 20px;
}

.ml_modal_textura img {
    width: 100%;
    height: auto;
    display: block;
}

/* Acabamento no modal */
.ml_modal_secao_acabamento {
    border-top: none;
}

.ml_modal_secao_acabamento .ml_modal_secao_titulo {
    background: var(--card-cor, #E8622A);
}

.ml_acabamento_imagem {
    width: 100%;
    padding: 28px 32px 20px;
    display: flex;
    justify-content: center;
}

.ml_acabamento_imagem img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.ml_acabamento_beneficios {
    display: flex;
    flex-direction: column;
}

.ml_acabamento_bene_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 32px;
    border-bottom: 1px solid #e8e8e8;
}

.ml_acabamento_bene_item:last-child {
    border-bottom: none;
}

.ml_acabamento_bene_icone {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.ml_acabamento_bene_conteudo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ml_acabamento_bene_titulo {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--azul_400);
    margin: 0;
}

.ml_acabamento_bene_texto {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.ml_acabamento_bene_texto p {
    margin: 0;
}

.ml_acabamento_rodape {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: #f5f5f5;
    border-top: 1px solid #e8e8e8;
}

.ml_acabamento_rodape_texto {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.ml_acabamento_rodape_texto p {
    margin: 0;
}

.ml_acabamento_certificacao {
    width: 80px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.ml_modal_comp_specs {
    background-color: #FFF2F2;
    padding: 24px 32px;
}

.ml_modal_comp_specs .ml_specs {
    margin: 0;
    gap: 12px;
}

.ml_modal_comp_specs .ml_spec_row {
    font-size: 16px;
}

/* Tecnologias */
.ml_modal_tecnologias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #e8e8e8;
}

.ml_modal_tec_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--azul_400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ml_modal_tec_item:not(:last-child) {
    border-right: 1px solid #e8e8e8;
}

.ml_modal_tec_item img {
    height: 40px;
    width: auto;
}

/* Instruções */
.ml_modal_instrucoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ml_modal_ins_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
    font-size: 13px;
    color: var(--cinza_400);
    line-height: 18px;
    border-right: 1px solid #e8e8e8;
    background: #fff;
}

.ml_modal_ins_item:nth-child(3n) {
    border-right: none;
}

.ml_modal_ins_item:nth-child(6n+4),
.ml_modal_ins_item:nth-child(6n+5),
.ml_modal_ins_item:nth-child(6n+6) {
    background: #f4f5f7;
}

.ml_modal_ins_item img {
    height: 28px;
    width: auto;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Legenda de classificação no modal */
.ml_modal_legend {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 24px;
}

.ml_modal_legend_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--azul_400);
}

.ml_modal_legend_item .ml_cor_classificacao_icon {
    width: 20px;
    height: 20px;
    font-size: 18px;
    flex-shrink: 0;
}

.ml_modal_legend_item .ml_icon_clara::before,
.ml_modal_legend_item .ml_icon_media::before,
.ml_modal_legend_item .ml_icon_escura::before {
    width: 16px;
    height: 16px;
}

.ml_modal_legend_item .ml_icon_branco::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='17' viewBox='0 0 24 24' fill='none' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 C12 2 5 10 5 15 a7 7 0 0 0 14 0 C19 10 12 2 12 2z'/%3E%3C/svg%3E");
    width: 14px;
    height: 17px;
}

.ml_cor_classificacao_icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #3E3E3E;
}

/* Branco */
.ml_icon_branco::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 24 24' fill='none' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 C12 2 5 10 5 15 a7 7 0 0 0 14 0 C19 10 12 2 12 2z'/%3E%3C/svg%3E");
    display: block;
    width: 14px;
    height: 16px;
    line-height: 1;
}

/* Clara */
.ml_icon_clara::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border: 2px solid #3E3E3E;
    border-radius: 50%;
}

/* Média */
.ml_icon_media::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(90deg, #3E3E3E 50%, transparent 50%);
    border: 2px solid #3E3E3E;
}

/* Escura */
.ml_icon_escura::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3E3E3E;
}

/* Especial */
.ml_icon_especial::before {
    content: '☆';
    font-size: 16px;
    line-height: 1;
}

/* Exclusiva */
.ml_icon_exclusiva::before {
    content: '⊗';
    font-size: 16px;
    line-height: 1;
}

/* Ultra Exclusiva */
.ml_icon_ultra_exclusiva::before {
    content: '△';
    font-size: 14px;
    line-height: 1;
}

/* Fluorescente */
.ml_icon_fluorescente::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px dotted #3E3E3E;
}

@media screen and (max-width: 980px) {
    .ml_section_titulo {
        font-size: 26px;
        line-height: 32px;
    }

    .ml_linha_titulo {
        font-size: 26px;
        line-height: 34px;
    }

    .ml_grid {
        grid-template-columns: 1fr;
    }

    .ml_modal_instrucoes {
        grid-template-columns: repeat(2, 1fr);
    }

    .ml_modal_ins_item:nth-child(3n) {
        border-right: 1px solid #e8e8e8;
    }

    .ml_modal_ins_item:nth-child(2n) {
        border-right: none;
    }

    /* alternado de linhas para grid 2-col */
    .ml_modal_ins_item:nth-child(6n+4),
    .ml_modal_ins_item:nth-child(6n+5),
    .ml_modal_ins_item:nth-child(6n+6) {
        background: #fff;
    }

    .ml_modal_ins_item:nth-child(4n+3),
    .ml_modal_ins_item:nth-child(4n+4) {
        background: #f4f5f7;
    }

    .ml_modal_legend {
        grid-template-columns: repeat(2, 1fr);
    }

    .ml_repelx_card_inner {
        padding: 0;
    }

    .ml_card_repelx .ml_repelx_logo {
        min-height: 140px;
        padding: 24px 18px;
    }

    .ml_card_repelx .ml_repelx_logo img {
        max-width: 180px;
        max-height: 66px;
    }

    .ml_repelx_chamada {
        font-size: 16px;
    }

    .ml_card_repelx .ml_repelx_chamada {
        padding: 22px 18px 8px;
    }

    .ml_card_repelx .ml_repelx_imagem {
        margin: 14px 18px 20px;
    }

    .ml_repelx_imagem,
    .ml_repelx_imagem img {
        min-height: 180px;
    }

    .ml_card_repelx .ml_repelx_beneficio {
        grid-template-columns: 56px 1fr;
        gap: 14px;
        padding: 20px 18px;
    }

    .ml_card_repelx .ml_repelx_beneficio_icone {
        width: 44px;
        height: 44px;
    }

    .ml_card_repelx .ml_repelx_beneficio_icone img {
        width: 28px;
        height: 28px;
    }

    .ml_card_repelx .ml_repelx_beneficio_textos,
    .ml_card_repelx .ml_repelx_beneficio_textos p,
    .ml_card_repelx .ml_repelx_rodape_texto,
    .ml_card_repelx .ml_repelx_rodape_texto p {
        font-size: 16px;
    }

    .ml_card_repelx .ml_repelx_rodape {
        grid-template-columns: 1fr;
        padding: 22px 18px;
    }

    .ml_card_repelx .ml_repelx_certificacao {
        justify-self: start;
    }
}

@media screen and (max-width: 600px) {
    .ml_card_header {
        height: 140px;
    }

    .ml_card_body {
        padding: 20px 16px;
    }

    .ml_modal_tecnologias {
        grid-template-columns: 1fr;
    }

    .ml_modal_tec_item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .ml_modal_instrucoes {
        grid-template-columns: 1fr;
    }

    .ml_modal_ins_item {
        border-right: none !important;
    }

    /* alternado de linhas para grid 1-col */
    .ml_modal_ins_item:nth-child(4n+3),
    .ml_modal_ins_item:nth-child(4n+4) {
        background: #fff;
    }

    .ml_modal_ins_item:nth-child(2n) {
        background: #f4f5f7;
    }

    .ml_modal_legend {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Marca Linhas — Mobile
================================================== */
@media screen and (max-width: 768px) {

    /* Oculta tabs desktop, mostra nav mobile */
    .ml_tabs_wrapper {
        display: none;
    }

    .ml_mobile_nav {
        display: block;
        padding-bottom: 30px;
    }

    .ml_mobile_titulo {
        font-family: 'Libre Franklin', sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        margin: 0 0 24px;
        line-height: 1.2;
    }

    /* Select estilizado com shape de fita */
    .ml_mobile_select_wrap {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .ml_mobile_select {
        appearance: none;
        -webkit-appearance: none;
        background: url(images/shape-select.svg) center / 100% 100% no-repeat;
        border: none;
        padding: 0 60px 0 32px;
        width: 276px;
        height: 70px;
        font-family: 'Libre Franklin', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
        outline: none;
    }

    .ml_mobile_select option {
        background: #051D4B;
        color: #fff;
        font-weight: 400;
    }

    .ml_mobile_select_chevron {
        position: absolute;
        right: calc(50% - 276px / 2 + 16px);
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        display: flex;
        align-items: center;
    }

    .ml_mobile_hint {
        font-family: 'Libre Franklin', sans-serif;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        text-align: center;
        margin: 12px 0 0;
        padding-bottom: 32px;
    }

    /* Painel mobile */
    .ml_painel {
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .ml_linha_header {
        padding-top: 0;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .ml_linha_titulo {
        font-size: 24px;
        line-height: 30px;
    }

    /* Fim das regras mobile */

    .ml_grid {
        grid-template-columns: 1fr;
    }

    /* Paginação customizada — ← 1 2 3 → */
    .ml_custom_pagination {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 32px;
        padding: 0 16px;
    }

    .ml_pag_arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        border-radius: 6px;
        background: transparent;
        color: #fff;
        cursor: pointer;
        flex-shrink: 0;
        transition: all 0.2s ease;
    }

    .ml_pag_arrow:hover {
        border-color: #fff;
    }

    .ml_pag_arrow.ml_pag_next {
        background: #fff;
        border-color: #fff;
        color: var(--azul_400, #051D4B);
    }

    .ml_pag_arrow.ml_pag_next:hover {
        background: rgba(255, 255, 255, 0.85);
    }

    .ml_pag_arrow svg {
        width: 16px;
        height: 10px;
    }

    .ml_pag_nums {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ml_pag_num {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.5);
        font-family: 'Libre Franklin', sans-serif;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        padding: 6px 8px;
        line-height: 1;
        transition: color 0.2s ease;
    }

    .ml_pag_num.is_active {
        color: #fff;
    }

    .ml_pag_num:hover {
        color: #fff;
    }

    /* Botão "Próxima linha" */
    .ml_mobile_proxima {
        display: flex;
        justify-content: center;
        margin-top: 32px;
    }

    .ml_mobile_proxima_btn {
        display: inline-flex;
        align-items: stretch;
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        border-radius: 6px;
        background: transparent;
        cursor: pointer;
        font-family: 'Libre Franklin', sans-serif;
        overflow: hidden;
        width: 100%;
        max-width: 360px;
    }

    .ml_mobile_proxima_btn span {
        flex: 1;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        background: transparent;
    }

    .ml_mobile_proxima_btn svg {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        flex-shrink: 0;
        background: #fff;
        padding: 0 14px;
        /* seta azul */
        color: #051D4B;
        min-height: 50px;
    }

    .ml_mobile_proxima_btn svg path {
        stroke: #051D4B;
    }
}

/* Oculta nav mobile em desktop e cancela Swiper de linhas */
@media screen and (min-width: 769px) {
    .ml_mobile_nav {
        display: none;
    }

    .ml_mobile_proxima {
        display: none;
    }

    .ml_custom_pagination {
        display: none;
    }
}

/* MOBILE
================================================== */
@media screen and (max-width: 980px) {
    .aceitar_cookies_container {
        flex-direction: column;
        padding: 20px;
    }

    .aceitar_cookies p {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* SINGLE NOTÍCIA — BLOCO EXTRA (subtítulo + texto)
================================================== */
.sn_bloco_extra {
    margin-top: 40px;
}

.sn_bloco_titulo {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #051D4B;
    margin: 0 0 16px;
}

.sn_bloco_texto {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #3E3E3E;
}

.sn_bloco_texto p {
    margin: 0 0 16px;
}

.sn_bloco_texto p:last-child {
    margin-bottom: 0;
}

/* SINGLE NOTÍCIA — SEÇÃO PARCEIROS
================================================== */
#sn_parceiros {
    margin: 50px 0 0;
    display: flex;
    justify-content: center;
    display: none;
}

.sn_parceiros--content {
    background: #F2F2F2;
    border-radius: 24px;
    padding: 42px 43px;
    max-width: 1000px;
}

.sn_parceiros_grid {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.sn_parceiro_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sn_parceiro_logo {
    height: 65px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

.sn_parceiro_logo img {
    max-height: 65px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    object-position: left center;
}

.sn_parceiro_desc {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #3E3E3E;
    margin: 0;
}

.sn_parceiro_divider {
    width: 1.5px;
    align-self: stretch;
    background: #ffffff;
    flex-shrink: 0;
}

@media screen and (max-width: 980px) {
    #sn_parceiros {
        padding: 32px 20px;
        border-radius: 16px;
        margin: 0 16px 40px;
    }

    .sn_parceiros_grid {
        flex-direction: column;
        gap: 32px;
    }

    .sn_parceiro_divider {
        width: 100%;
        height: 1.5px;
        align-self: auto;
    }

    .sn_parceiro_logo img {
        max-width: 140px;
    }
}

/* ==================================================
   RESPONSIVIDADE (MOBILE & TABLET)
================================================== */
body.menu-mobile-open {
    overflow: hidden;
}

.menu_toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
}

.menu_toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    transition: all 300ms ease;
    width: 40px;
}

header.menu-aberto .menu_toggle span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

header.menu-aberto .menu_toggle span:nth-child(2) {
    opacity: 0;
}

header.menu-aberto .menu_toggle span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

@media screen and (max-width: 1100px) {
    .blog_lista_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #representantes_resultados {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1200px) {

    /* Banner */
    #banner {
        height: 600px;
    }

    .container_btn {
        width: 100%;
        padding: 40px 0 40px 50px;
    }

    #banner::after {
        width: 350px;
        height: 220px;
    }

    /* Footer */
    .footer_brand {
        margin-right: 40px;
    }

    .footer_bottom_inner ul {
        gap: 50px;
    }
}

@media (max-width: 1200px) {

    /* Menu Mobile */
    .menu_toggle {
        display: flex;
        position: absolute;
        top: 30px;
        right: clamp(65px, 22vw, 150px);
    }

    .menu_container {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--azul_400);
        z-index: 100;
        padding: 100px 30px 40px;
        transform: translateX(100%);
        transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    header.menu-aberto .menu_container {
        transform: translateX(0);
        width: 60%;
    }

    header .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    header .menu-item {
        width: 100%;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header .menu .menu-item-has-children>a {
        justify-content: space-between;
    }

    header .menu .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        margin-top: 15px;
        background: transparent;
    }

    header .menu .sub-menu a {
        width: 100%;
        padding: 12px 20px;
    }

    header .container {
        height: 90px;
    }

    .logo_site img {
        width: 170px;
    }
}

@media (max-width: 768px) {
    header.menu-aberto .menu_container {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .logo_site img {
        margin-top: 15px;
    }
}

@media screen and (max-width: 980px) {

    /* Tipografia Geral e Utilidades */
    h1,
    .banner_interna h2 {
        font-size: 36px;
        line-height: 44px;
    }

    h2,
    .pilar_item h4 {
        font-size: 32px;
        line-height: 38px;
    }

    h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .py_110 {
        padding: 60px 0;
    }

    .py_100 {
        padding: 60px 0;
    }

    .py_80 {
        padding: 50px 0;
    }

    .banner_404 .banner_content {
        padding-bottom: 38px;
        max-width: 82%;
    }

    .banner_404 h1 {
        white-space: normal;
        font-size: 38px;
        line-height: 46px;
    }

    .erro_404_numero {
        display: block;
        right: 15px;
        bottom: 100px;
        font-size: 108px;
        opacity: .32;
        -webkit-text-stroke-width: 1px;
        text-stroke-width: 1px;
    }

    .erro_404_conteudo {
        padding-top: 42px;
        min-height: 240px;
    }

    /* Representante Fixo */
    .representante_fixo {
        width: 220px;
        aspect-ratio: auto;
        height: 150px;
        bottom: 5%;
    }

    .btn_fixo {
        width: 150px;
        height: 45px;
        font-size: 12px;
    }

    /* Banner */
    #banner {
        height: 500px;
    }

    .banner_interna h1 {
        font-size: 20px;
        width: 250px;
    }

    .container_btn {
        position: relative;
        padding: 30px 20px;
        background-position: left;
        width: 100%;
        display: none;
    }

    #banner::after {
        display: none;
    }

    /* Marcas */
    #marcas .container_marcas {
        margin-top: 60px;
    }

    .marca_card,
    .marca_card:nth-child(even) {
        flex-direction: column;
        min-height: unset;
        align-items: unset;
    }

    .marca_imagem,
    .marca_card:nth-child(even) .marca_imagem {
        width: 100%;
        padding: 24px;
        justify-content: center;
        min-height: 177px;
    }

    .marca_bg,
    .marca_card:nth-child(even) .marca_bg {
        border-radius: 32px 32px 32px 0;
        width: 100%;
        left: 0;
        right: unset;
    }

    .marca_logo_img {
        width: 200px;
    }

    .marca_svg_desktop {
        display: none;
    }

    .marca_svg_mobile {
        display: block;
    }

    .marca_conteudo,
    .marca_card:nth-child(even) .marca_conteudo {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 20px;
        padding-bottom: 40px;
        background: none;
        min-height: 320px;
    }

    .marca_svg {
        height: 500px;
        top: -55px;
        width: 100%;
        object-fit: cover;
    }

    .marca_card:nth-child(even) .marca_svg {
        transform: scaleX(1);
    }

    /* Consultoria */
    .consultoria_inner {
        flex-direction: column;
        gap: 40px;
        padding: 50px 0;
    }

    .consultoria_conteudo,
    .consultoria_imagem_wrap {
        width: 100%;
    }

    .consultoria_imagem_wrap {
        justify-content: center;
        order: 1;
    }

    .consultoria_conteudo {
        order: 2;
    }

    /* Qualidade */
    #qualidade {
        padding: 60px 0;
    }

    .qualidade_inner {
        flex-direction: column;
        gap: 40px;
    }

    .qualidade_card,
    .qualidade_conteudo {
        width: 100%;
    }

    .qualidade_card {
        order: 2;
        padding: 50px 20px;
    }

    .qualidade_conteudo {
        order: 1;
    }

    .qualidade_texto ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Notícias Home */
    #noticias {
        padding-top: 60px;
    }

    .noticia_card {
        flex-direction: column;
        gap: 0;
    }

    .noticia_imagem,
    .noticia_conteudo {
        width: 100%;
    }

    .noticia_conteudo {
        border-radius: 0 0 25px 25px;
        padding: 30px 20px;
        margin-top: -20px;
    }

    .noticia_imagem img {
        border-radius: 25px 25px 0 0;
    }

    .noticia_card::after {
        display: none;
    }

    /* Blog Home */
    .blog_inner {
        padding: 40px 0;
    }

    .blog_cards_wrap {
        flex-direction: column;
        width: 100%;
        gap: 30px;
        margin-top: 30px;
    }

    .blog_card {
        width: 100%;
    }

    .blog_inner::before {
        left: 0;
        width: 100%;
        border-radius: 24px;
    }

    /* Sustentabilidade */
    #sustentabilidade {
        padding: 60px 0;
    }

    .sustentabilidade_inner {
        flex-direction: column;
        gap: 40px;
    }

    .sustentabilidade_conteudo,
    .sustentabilidade_media {
        width: 100%;
    }

    .sustentabilidade_stat {
        position: relative;
        bottom: 0;
        margin-top: -40px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Compromisso */
    #compromisso {
        padding: 60px 0;
    }

    .compromisso_inner {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .compromisso_imagem,
    .compromisso_conteudo {
        width: 100%;
    }

    .compromisso_conteudo {
        padding: 40px 0;
        height: 630px;
        justify-content: flex-end;
        padding-bottom: 60px;
    }

    .compromisso_imagem img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }

    .compromisso_conteudo::before {
        right: 0;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Institucional */
    #historia {
        padding: 60px 0;
    }

    .historia_inner {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .historia_conteudo,
    .historia_imagem {
        width: 100%;
    }

    .historia_conteudo {
        padding-top: 0;
    }

    .historia_imagem img {
        position: relative;
        width: 100%;
    }

    #pilares {
        padding: 60px 0;
    }

    .pilares_grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    #equipe {
        padding: 60px 0;
    }

    .equipe_inner {
        flex-direction: column;
        gap: 40px;
    }

    .equipe_conteudo,
    .equipe_imagem_container {
        width: 100%;
    }

    .equipe_conteudo {
        padding: 0;
    }

    .equipe_imagem {
        position: relative;
        width: 100%;
        height: 350px;
    }

    /* Marcas Interna */
    .marca_interna_inner,
    .marca_bloco:nth-of-type(even) .marca_interna_inner {
        flex-direction: column;
        gap: 30px;
    }

    .marca_interna_imagem,
    .marca_interna_conteudo {
        width: 100%;
    }

    .marca_interna_legenda {
        bottom: 20px;
        width: 90%;
    }

    .marca_interna_caracteristicas {
        padding-top: 40px;
        padding-left: 20px;
    }

    .marca_bloco:nth-of-type(even) .marca_interna_caracteristicas {
        margin-right: 0;
        padding-left: 20px;
    }

    .marca_interna_logo,
    .marca_interna_subtitulo,
    .marca_interna_texto,
    .marca_bloco:nth-of-type(even) .marca_interna_logo,
    .marca_bloco:nth-of-type(even) .marca_interna_subtitulo,
    .marca_bloco:nth-of-type(even) .marca_interna_texto {
        padding: 0;
    }

    .marca_interna_conteudo svg {
        display: none;
    }

    /* Notícias Lista */
    #noticias_lista {
        padding: 40px 0 60px;
    }

    .ndestaque_card {
        flex-direction: column;
    }

    .ndestaque_card .noticia_imagem,
    .ndestaque_card .noticia_conteudo {
        width: 100%;
    }

    .ndestaque_card .noticia_conteudo {
        padding: 30px 20px;
        margin-top: -20px;
    }

    #noticias_lista .noticias_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nlista_card {
        flex-direction: column;
        gap: 15px;
    }

    .nlista_img {
        width: 100%;
        height: 200px;
    }

    .nlista_conteudo {
        width: 100%;
    }

    /* Representantes */
    .representantes_exportacao_inner {
        flex-direction: column;
    }

    .representantes_exportacao_imagem {
        width: 100%;
        max-width: 100%;
        height: 350px;
        margin-left: 0;
    }

    .representantes_exportacao_conteudo {
        padding: 40px 24px;
    }

    .representantes_form_card {
        flex-direction: column;
        border-radius: 16px;
    }

    .representantes_form_mapa {
        flex: 0 0 260px;
        min-height: 260px;
        border-radius: 16px 16px 0 0;
        padding: 24px;
    }

    .representantes_form_lado {
        padding: 36px 24px;
    }

    .representantes_form_titulo {
        font-size: 24px;
        line-height: 32px;
    }

    #representantes_resultados {
        grid-template-columns: 1fr;
    }

    /* Blog Destaque */
    .bdestaque_card {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .bdestaque_img {
        width: 100%;
        border-radius: 15px 15px 0 0;
    }

    .bdestaque_img img {
        height: 260px;
        border-radius: 15px 15px 0 0;
    }

    .bdestaque_conteudo {
        width: 100%;
        margin-left: 0;
        border-radius: 0 0 15px 15px;
        padding: 30px 25px;
    }

    .bdestaque_titulo {
        font-size: 22px;
        line-height: 30px;
    }

    .blog_header {
        width: 100%;
    }

    .blog_header h2 {
        text-align: center;
        width: 100%;
    }

    /* Blog Lista */
    #blog_lista {
        padding: 40px 0 60px;
    }

    .blog_lista_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Single Notícia */
    #single_noticia {
        padding-top: 40px;
    }

    .sn_imagem {
        margin-bottom: 30px;
    }

    .sn_imagem img {
        height: auto;
        aspect-ratio: 16/9;
    }

    .sn_titulo {
        font-size: 24px;
        line-height: 32px;
    }

    #sn_marcas {
        padding: 40px 0;
    }

    .sn_marcas_grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .sn_marcas_grid--1 {
        max-width: none;
    }

    #sn_relacionadas {
        padding: 40px 0 60px;
    }

    .sn_relacionadas_grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    footer {
        margin-top: 50px;
    }

    .footer_inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer_brand {
        width: 100%;
        margin-right: 0;
    }

    .footer_nav_col,
    .footer_nav_vendas,
    .footer_contato {
        width: 100%;
        margin-top: 0;
    }

    .footer_bottom_inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer_bottom_inner ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    footer::before {
        display: none;
    }
}

@media screen and (max-width: 480px) {

    /* Ajustes finos Mobile Portrait */
    h1,
    .banner_interna h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .representante_fixo {
        width: 180px;
        height: 120px;
    }

    .btn_fixo {
        width: 120px;
        height: 40px;
        font-size: 10px;
    }

    .banner_404 .banner_content {
        padding-bottom: 30px;
        max-width: 78%;
    }

    .banner_404 h1 {
        white-space: normal;
        font-size: 34px;
        line-height: 42px;
    }

    .erro_404_numero {
        display: block;
        right: 15px;
        bottom: 100px;
        font-size: 74px;
        opacity: .32;
        -webkit-text-stroke-width: 1px;
        text-stroke-width: 1px;
    }

    .erro_404_conteudo {
        padding: 34px 0 0;
        min-height: 230px;
    }

    .erro_404_conteudo p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 28px;
    }

    .sustentabilidade_grid {
        grid-template-columns: 1fr;
    }

    .banner_reduzido {
        height: 300px;
        background-position: 88% center;
    }
}

/* ==========================================================================
   REPRESENTANTES - ACCORDIONS & CARDS
   ========================================================================== */

/* Container */
/* Resultado do filtro de estado */
#representantes_resultado_filtro {
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.representantes_filtro_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.representantes_filtro_titulo {
    font-size: 24px;
    font-weight: bold;
    color: var(--vinho);
    margin: 0;
}

.representantes_filtro_fechar {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.representantes_filtro_fechar:hover {
    opacity: 0.7;
}

.representantes_filtro_fechar svg {
    transform: rotate(180deg);
}

.representantes_accordion_container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Accordion Item */
.representantes_accordion_item {
    margin-bottom: 0;
}

/* Trigger / Título da Região */
.representantes_accordion_trigger {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    text-align: left;
}

.representantes_accordion_titulo {
    font-size: 24px;
    font-weight: bold;
    color: var(--vinho);
    margin: 0;
    transition: color 0.3s ease;
}

.representantes_accordion_trigger[aria-expanded="true"] .representantes_accordion_titulo {
    color: #0C3481;
}

.representantes_accordion_icon {
    width: 48px;
    height: 48px;
    color: #434343;
    transition: transform 0.3s ease, color 0.3s ease;
}

.representantes_accordion_trigger[aria-expanded="true"] .representantes_accordion_icon {
    transform: rotate(180deg);
    color: #C30B27;
}

/* Grid de Cards */
.representantes_accordion_content {
    padding-bottom: 3rem;
}

.representantes_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Card */
.representante_card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.representante_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Header do Card (Azul Escuro) */
.representante_card_header_dark {
    background-color: #0C3481;
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-radius: 16px;
}

.representante_empresa_titulo {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #fff;
}

.representante_estado {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #0C3481;
}

/* Body do Card */
.representante_card_body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
}

.representante_info_row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0C3481;
    font-weight: 800;
    font-size: 1.125rem;
}

.representante_info_row.align-top {
    align-items: flex-start;
}

.representante_info_row.align-top svg {
    margin-top: 2px;
}

.representante_nome {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #fff;
    white-space: nowrap;
    text-transform: none;
}

.representante_cidade {
    color: #0C3481;
    font-weight: 700;
}

.representante_contato_texto,
.representante_contato_texto {
    font-weight: 700;
}

/* Múltiplos contatos na mesma linha (telefone/whatsapp) */
.representante_info_row_multi {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    row-gap: 1.25rem;
}

.representante_contato_texto {
    color: #0C3481;
    line-height: 1.4;
}

.representante_info_row svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .representantes_grid {
        grid-template-columns: 1fr;
    }
}

/* Representantes form — responsividade */
@media screen and (max-width: 980px) {
    #representantes_form {
        gap: 60px;
    }

    .representantes_form_card {
        flex-direction: column;
        max-width: 100%;
        padding: 0 20px;
    }

    .representantes_form_card::after {
        display: none;
    }

    .representantes_form_image {
        display: none;
    }

    .representantes_form_lado {
        flex: none;
        width: 100%;
        padding: 40px 28px;
        margin-right: 0;
        border-radius: 16px;
    }

    .representantes_select_wrap {
        width: 100%;
    }

    .representantes_form_titulo {
        font-size: 24px;
        line-height: 32px;
    }

    .representantes_form_submit {
        width: 100%;
        justify-content: center;
        border-radius: 4px 0 0 4px;
        padding: 15px 0;
    }

    .container__form--button_arrow {
        min-height: 46px;
    }
}

@media screen and (max-width: 600px) {
    #representantes_form {
        margin-top: 60px;
        padding-bottom: 60px;
        gap: 40px;
    }

    .representantes_form_lado {
        padding: 28px 20px;
    }
}

/* CONSULTORES
================================================== */

/* Banner */
#banner.banner_consultores {
    background-image: url(images/bg-consultores.png);
    background-size: cover;
    background-position: center;
}

/* Remove overlay genérico */
#banner.banner_consultores::before {
    display: none;
}

/* Gradiente sobre a imagem do banner */
#banner.banner_consultores::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 760px;
    background: linear-gradient(0deg, rgba(5, 29, 75, 0.8) 0%, rgba(5, 29, 75, 0) 70%);
    pointer-events: none;
}

/* Reposiciona conteúdo para ficar no meio-baixo como no Figma */
#banner.banner_consultores .container {
    justify-content: flex-end;
    padding-bottom: 150px;
}

/* Sobrescreve o h1 padrão (que tem fundo SVG, uppercase pequeno) */
#banner.banner_consultores h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: none;
    color: #fff;
    background: none;
    width: auto;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

/* Parágrafo do banner */
#banner.banner_consultores .banner_content p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
    opacity: 0.9;
}

/* Oculta o container_btn do canto (SVG de fundo) neste banner */
#banner.banner_consultores .container_btn {
    display: none;
}

/* Botão CTA inline abaixo do texto */
#banner.banner_consultores .banner_cta_inline {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    margin-top: 24px;
}

#banner.banner_consultores .banner_cta_inline span:first-child {
    background: #fff;
    color: #C30B27;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px 0 0 4px;
    transition: background 0.2s;
}

#banner.banner_consultores .banner_cta_inline:hover span:first-child {
    background: #f5f5f5;
}

#banner.banner_consultores .banner_cta_inline .banner_cta_arrow {
    background: #C30B27;
    color: #fff;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 4px 4px 0;
    font-size: 18px;
}

.banner_label_tag {
    display: inline-block;
    background: #0C3481;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 14px;
}

/* Seção Tradição */
#consultores_tradicao {
    padding: 80px 0 60px;
    background: #fff;
    overflow: hidden;
}

.consultores_tradicao_inner {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    max-width: 1340px;
}

.consultores_tradicao_texto {
    width: 40%;
    margin-top: 60px;
}

.consultores_tradicao_texto h2 {
    font-size: 32px;
    font-weight: 700;
    color: #051D4B;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consultores_tradicao_texto p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 32px;
}

.consultores_diferenciais_lista {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    left: 21%;
}

.consultores_diferencial_item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 14px 20px 14px 0;
}

.consultores_diferencial_icone {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultores_diferencial_icone img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-left: -40px;
}

.consultores_diferencial_texto {
    font-size: 20px;
    font-weight: 700;
    color: #C30B27;
}

.consultores_tradicao_imagem {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 460px;
}

.consultores_tradicao_imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consultores_tradicao_imagem_placeholder {
    width: 100%;
    height: 730px;
    background: url('images/image-consultores.png') center center no-repeat;
    border-radius: 20px;
    background-size: cover;
}

/* Seção Consultores Regionais */
#consultores_regionais {
    padding: 60px 0 80px;
}

.consultores_regionais_box {
    background: #F7F7F7;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    max-width: 1120px;
    margin: 0 auto;
}

.consultores_regionais_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.consultores_regionais_box.is_collapsed .consultores_regionais_header {
    margin-bottom: 0;
}

.consultores_regionais_titulo {
    font-size: 22px;
    font-weight: 700;
    color: #C30B27;
    margin: 0;
}

.consultores_regionais_toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #051D4B;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.consultores_regionais_toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.consultores_regionais_toggle.collapsed svg {
    transform: rotate(-90deg);
}

.consultores_regionais_filtro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 15px;
    font-weight: 600;
    color: #051D4B;
}

.consultores_select_wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.consultores_select_wrap select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1.5px solid #d0d5e0;
    border-radius: 8px;
    padding: 8px 36px 8px 14px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 180px;
}

.consultores_select_wrap svg {
    position: absolute;
    right: 10px;
    width: 18px;
    height: 18px;
    color: #666;
    pointer-events: none;
}

.consultores_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.consultor_card {
    border-radius: 12px;
    border: none;
    overflow: hidden;
    background: #fff;
}

.consultor_card_header {
    background: #051D4B;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 16px;
    min-height: 85px;
    justify-content: center;
}

.consultor_card_label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.consultor_card_regioes {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.consultor_card_body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consultor_info_row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.consultor_info_row.align-top {
    align-items: flex-start;
}

.consultor_info_row svg {
    flex-shrink: 0;
}

.consultor_info_row_multi {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.consultor_nome,
.consultor_info_row span {
    font-size: 20px;
    font-weight: 600;
    color: #051D4B;
    margin: 0;
    text-transform: none;
}

.ml_descricao em {
    color: #fff;
}

.consultores_vazio {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 15px;
}

/* Seção Consultoria Especializada */
/* #consultores_especializada {
    background: url(images/fundo-shape-consultores.svg) no-repeat;
    background-size: cover;
    padding: 100px 0;
} */

#consultores_especializada {
    position: relative;
    padding: 280px 0;
    z-index: 0;
    overflow: hidden;
}

#consultores_especializada::after {
    content: "";
    position: absolute;
    background: url(images/fundo-shape-consultores.svg) no-repeat;
    background-size: cover;
    inset: 0;
    z-index: -1;
    background-position: 40% center;
}

.consultores_especializada_inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.consultores_especializada_titulo {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0;
    max-width: 720px;
}

.consultores_esp_row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.consultores_esp_info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 46%;
}

.consultores_esp_tag {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 28px 0px;
    border-radius: 2px;
    position: relative;
    width: 80%;
    text-align: center;
    z-index: 10;
    height: 85px;
}

.consultores_esp_tag::after {
    content: "";
    position: absolute;
    background: url(images/fundo-consultores.svg) no-repeat;
    background-size: contain;
    inset: 0;
    z-index: -1;
}

.consultores_esp_desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.consultores_esp_desc strong {
    color: white;
    font-weight: bold;
}

.consultores_esp_contato_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 48%;
    min-height: 235px;
}

.consultores_esp_contato_nome {
    background: #C30B27;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
}

.consultores_esp_contato_nome svg {
    width: 30px;
    height: 30px;
}

.consultores_esp_contato_nome strong {
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.consultores_esp_contato_detalhes {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 15px;
}

.consultores_esp_contato_detalhes .consultor_info_row {
    color: #333;
}

.consultores_esp_contato_detalhes .consultor_info_row svg path {
    fill: #C30B27;
}

/* Seção Design Integrado */
#consultores_design {
    padding: 80px 0 100px;
    background: #fff;
}

.consultores_design_inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.consultores_design_texto {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consultores_design_supratitulo {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C30B27;
}

.consultores_design_titulo {
    font-size: 36px;
    font-weight: 700;
    color: #051D4B;
    line-height: 1.2;
    margin: 0;
}

.consultores_design_texto p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.consultores_design_cta {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #C30B27 !important;
    line-height: 1.5 !important;
}

.consultores_design_imagem {
    border-radius: 16px;
    overflow: hidden;
    width: 60%;
}

.consultores_design_imagem img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.consultores_design_imagem_placeholder {
    width: 100%;
    height: 460px;
    background: url(images/imagem-diferencial-consultores.png) center center no-repeat;
    background-size: contain;
    border-radius: 16px;
}

/* Responsivo Consultores */
@media screen and (max-width: 1200px) {
    .consultores_tradicao_texto {
        flex: 0 0 420px;
    }

    .consultores_design_imagem {
        flex: 0 0 460px;
    }

    .consultores_esp_contato_card {
        flex: 0 0 280px;
    }
}

@media screen and (max-width: 980px) {
    .consultores_tradicao_inner {
        flex-direction: column;
        gap: 40px;
    }

    .consultores_tradicao_texto {
        flex: none;
        width: 100%;
    }

    .consultores_tradicao_imagem {
        width: 100%;
        min-height: 280px;
    }

    .consultores_grid {
        grid-template-columns: 1fr;
    }

    .consultores_design_inner {
        flex-direction: column;
        gap: 40px;
    }

    .consultores_design_imagem {
        flex: none;
        width: 100%;
    }

    .consultores_design_imagem_placeholder {
        width: 100%;
        height: 545px;
        background: url(images/image-consultores-mobile.png) no-repeat;
        background-size: cover;
    }

    .consultores_esp_row {
        flex-direction: column;
        gap: 30px;
    }

    .consultores_esp_contato_card {
        flex: none;
        width: 100%;
        max-width: 360px;
    }

    #consultores_especializada {
        clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
        padding: 60px 0;
    }
}

@media screen and (max-width: 640px) {
    .consultores_regionais_box {
        padding: 24px 16px;
    }

    .consultores_regionais_filtro {
        flex-direction: column;
        align-items: flex-start;
    }

    .consultores_tradicao_texto h2 {
        font-size: 26px;
    }

    .consultores_design_titulo {
        font-size: 28px;
    }

    .consultores_especializada_inner {
        padding: 0 20px;
    }

    .consultores_especializada_titulo {
        font-size: 30px;
    }

    .banner_label_tag {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* =============================================
   Page: Trabalhe Conosco
   ============================================= */

#banner.banner_trabalhe_conosco {
    background-image: url(images/banner-representantes.svg) !important;
}

.banner_trabalhe_conosco h1 {
    font-size: 20px !important;
}

.banner_trabalhe_conosco .container {
    padding-bottom: 220px !important;
}

#trabalhe_conosco {
    padding: 80px 0 180px;
    background: url(images/bg-trabalhe-conosco.svg) no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: -100px;
}

.trabalhe_inner {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Benefícios (lado esquerdo) */
.trabalhe_beneficios {
    width: 40%;
    min-width: 0;
}

#tc_curriculo_label {
    color: white;
    font-weight: 400;
}

.trabalhe_titulo {
    font-size: 32px;
    font-weight: 800;
    color: #051D4B;
    line-height: 1.2;
    margin-bottom: 16px;
}

.trabalhe_desc {
    font-size: 16px;
    color: #434343;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 440px;
}

.trabalhe_lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trabalhe_item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #C30B27;
    font-family: 'Libre Franklin', sans-serif;
}

.trabalhe_item span {
    color: var(--vinho);
}

.trabalhe_item_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #C30B27;
    border-radius: 8px;
    flex-shrink: 0;
    margin-left: -20px;
}

/* .trabalhe_item_icon svg {
    width: 22px;
    height: 22px;
} */

/* Form card (lado direito) */
.trabalhe_form_card {
    width: 60%;
    background: linear-gradient(160deg, #051D4B 0%, #0C3481 100%);
    border-radius: 24px;
    padding: 100px;
}

.trabalhe_form_titulo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.trabalhe_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#trabalhe_conosco .wpcf7-form,
#trabalhe_conosco .wpcf7-form p,
.page-template-page-trabalhe-conosco .wpcf7-form,
.page-template-page-trabalhe-conosco .wpcf7-form p {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}

#trabalhe_conosco .wpcf7-form .hidden-fields-container,
.page-template-page-trabalhe-conosco .wpcf7-form .hidden-fields-container,
#trabalhe_conosco .wpcf7-form br,
.page-template-page-trabalhe-conosco .wpcf7-form br {
    display: none;
}

#trabalhe_conosco .wpcf7-form .trabalhe_field,
.page-template-page-trabalhe-conosco .wpcf7-form .trabalhe_field {
    margin: 0;
}

#trabalhe_conosco .wpcf7-form .trabalhe_field p,
.page-template-page-trabalhe-conosco .wpcf7-form .trabalhe_field p {
    gap: 0;
}

#trabalhe_conosco .wpcf7-form-control-wrap,
.page-template-page-trabalhe-conosco .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.trabalhe_field input[type="text"],
.trabalhe_field input[type="email"],
.trabalhe_field input[type="tel"],
#trabalhe_conosco .wpcf7-form input:not([type="hidden"]):not([type="submit"]):not([type="file"]),
#trabalhe_conosco .wpcf7-form textarea,
#trabalhe_conosco .wpcf7-form select,
.page-template-page-trabalhe-conosco .wpcf7-form input:not([type="hidden"]):not([type="submit"]):not([type="file"]),
.page-template-page-trabalhe-conosco .wpcf7-form textarea,
.page-template-page-trabalhe-conosco .wpcf7-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    color: #fff;
    font-family: 'Libre Franklin', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    min-height: 60px;
    margin: 0;
}

#trabalhe_conosco .wpcf7-form textarea,
.page-template-page-trabalhe-conosco .wpcf7-form textarea {
    resize: vertical;
    min-height: 130px;
}

.trabalhe_field input::placeholder,
#trabalhe_conosco .wpcf7-form input::placeholder,
#trabalhe_conosco .wpcf7-form textarea::placeholder,
.page-template-page-trabalhe-conosco .wpcf7-form input::placeholder,
.page-template-page-trabalhe-conosco .wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.trabalhe_field input:focus,
#trabalhe_conosco .wpcf7-form input:focus,
#trabalhe_conosco .wpcf7-form textarea:focus,
#trabalhe_conosco .wpcf7-form select:focus,
.page-template-page-trabalhe-conosco .wpcf7-form input:focus,
.page-template-page-trabalhe-conosco .wpcf7-form textarea:focus,
.page-template-page-trabalhe-conosco .wpcf7-form select:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.trabalhe_field input[type="file"],
#trabalhe_conosco .wpcf7-form input[type="file"],
.page-template-page-trabalhe-conosco .wpcf7-form input[type="file"] {
    display: none;
}

.trabalhe_upload_label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: 'Libre Franklin', sans-serif;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.2s;
}

.page-template-page-trabalhe-conosco .wpcf7-form .trabalhe_upload_label,
#trabalhe_conosco .wpcf7-form .trabalhe_upload_label {
    margin: 0;
}

.trabalhe_upload_label:hover {
    background: rgba(255, 255, 255, 0.22);
}

.trabalhe_upload_label svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: white !important;
}

.trabalhe_submit,
#trabalhe_conosco .wpcf7-form button[type="submit"],
.page-template-page-trabalhe-conosco .wpcf7-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    margin: 8px 0 0 !important;
    width: fit-content;
    align-self: flex-start;
    overflow: hidden;
    border-radius: 4px;
    color: inherit;
    font: inherit;
    line-height: 1;
}

.trabalhe_submit.is-loading,
#trabalhe_conosco .wpcf7-form button[type="submit"].is-loading,
.page-template-page-trabalhe-conosco .wpcf7-form button[type="submit"].is-loading {
    pointer-events: none;
}

.trabalhe_submit > span:not(.trabalhe_submit_arrow),
#trabalhe_conosco .wpcf7-form button[type="submit"] > span:not(.trabalhe_submit_arrow),
.page-template-page-trabalhe-conosco .wpcf7-form button[type="submit"] > span:not(.trabalhe_submit_arrow) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #C30B27;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 4px 0 0 4px;
    transition: background 0.2s;
}

.trabalhe_submit:hover > span:not(.trabalhe_submit_arrow),
#trabalhe_conosco .wpcf7-form button[type="submit"]:hover > span:not(.trabalhe_submit_arrow),
.page-template-page-trabalhe-conosco .wpcf7-form button[type="submit"]:hover > span:not(.trabalhe_submit_arrow) {
    background: #f5f5f5;
}

.trabalhe_submit_arrow,
#trabalhe_conosco .wpcf7-form button[type="submit"] span:last-child,
.page-template-page-trabalhe-conosco .wpcf7-form button[type="submit"] span:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #C30B27;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 0 4px 4px 0;
    font-size: 24px;
    line-height: 1;
    transition: background 0.2s;
}

.trabalhe_submit.is-loading .trabalhe_submit_arrow,
#trabalhe_conosco .wpcf7-form button[type="submit"].is-loading span:last-child,
.page-template-page-trabalhe-conosco .wpcf7-form button[type="submit"].is-loading span:last-child {
    font-size: 0;
}

.trabalhe_submit.is-loading .trabalhe_submit_arrow::after,
#trabalhe_conosco .wpcf7-form button[type="submit"].is-loading span:last-child::after,
.page-template-page-trabalhe-conosco .wpcf7-form button[type="submit"].is-loading span:last-child::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cf7-button-spin 0.8s linear infinite;
}

.trabalhe_submit:hover .trabalhe_submit_arrow,
#trabalhe_conosco .wpcf7-form button[type="submit"]:hover span:last-child,
.page-template-page-trabalhe-conosco .wpcf7-form button[type="submit"]:hover span:last-child {
    background: #a50922;
}

#trabalhe_conosco input.wpcf7-submit,
.page-template-page-trabalhe-conosco input.wpcf7-submit {
    width: auto;
    background: #fff;
    color: #C30B27;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 4px;
    cursor: pointer;
    margin: 8px 0 0;
    text-transform: none;
    transition: background 0.2s;
    align-self: flex-start;
}

#trabalhe_conosco input.wpcf7-submit:hover,
.page-template-page-trabalhe-conosco input.wpcf7-submit:hover {
    background: #f5f5f5;
}

#trabalhe_conosco .wpcf7-spinner,
.page-template-page-trabalhe-conosco .wpcf7-spinner {
    margin: 0 0 0 10px;
}

@media screen and (max-width: 980px) {
    .trabalhe_inner {
        flex-direction: column;
        gap: 48px;
    }

    .trabalhe_form_card {
        flex: none;
        width: 100%;
        padding: 36px 28px 40px;
    }

    .trabalhe_titulo {
        font-size: 26px;
    }
}

@media screen and (max-width: 600px) {
    #trabalhe_conosco {
        padding: 48px 0 90px;
    }

    .trabalhe_titulo {
        font-size: 22px;
    }

    .trabalhe_form_titulo {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .trabalhe_form_card {
        padding: 28px 20px 32px;
    }
}

/* =============================================
   Page: SAC
   ============================================= */

#banner.banner_sac {
    background-image: url(images/banner-representantes.svg) !important;
}

#banner.banner_fale_conosco {
    background-image: url(images/banner-fale-conosco.svg) !important;
}

.banner_fale_conosco .container,
.banner_sac .container {
    padding-bottom: 220px !important;
}

#sac_contato {
    padding: 80px 0 250px 0;
    background: #F7F7F7;
    margin-bottom: -100px;
}

.sac_contato_inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Formulário */
.sac_form_card {
    flex: 1;
    background: linear-gradient(135deg, #051D4B 0%, #0C3481 100%);
    border-radius: 24px;
    padding: 100px;
}

.sac_form_titulo {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 28px;
}

.sac_form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sac_form_card .wpcf7-form,
.sac_form_card .wpcf7-form p,
.page-template-page-sac .wpcf7-form,
.page-template-page-sac .wpcf7-form p,
#sac_contato .wpcf7-form p {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    width: 100%;
}

#sac_contato .wpcf7-form .hidden-fields-container,
.page-template-page-sac .wpcf7-form .hidden-fields-container,
.sac_form_card .wpcf7-form .hidden-fields-container {
    display: none;
}

#sac_contato .wpcf7-form br,
.page-template-page-sac .wpcf7-form br,
.sac_form_card .wpcf7-form br {
    display: none;
}

#sac_contato .wpcf7-form-control-wrap,
.page-template-page-sac .wpcf7-form-control-wrap,
.sac_form_card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.sac_form_field input,
.sac_form_field textarea,
#sac_contato .wpcf7-form input:not([type="hidden"]):not([type="submit"]),
#sac_contato .wpcf7-form textarea,
.page-template-page-sac .wpcf7-form input:not([type="hidden"]):not([type="submit"]),
.page-template-page-sac .wpcf7-form textarea,
.sac_form_card .wpcf7-form input:not([type="hidden"]):not([type="submit"]),
.sac_form_card .wpcf7-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    color: #fff;
    font-family: 'Libre Franklin', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    min-height: 60px;
    margin-bottom: 0 !important;
}

.sac_form_field input::placeholder,
.sac_form_field textarea::placeholder,
#sac_contato .wpcf7-form input::placeholder,
.page-template-page-sac .wpcf7-form input::placeholder,
.sac_form_card .wpcf7-form input::placeholder,
#sac_contato .wpcf7-form textarea::placeholder,
.page-template-page-sac .wpcf7-form textarea::placeholder,
.sac_form_card .wpcf7-form textarea::placeholder {
    color: #fff;
    font-size: 12px;
}

.sac_form_field input:focus,
.sac_form_field textarea:focus,
#sac_contato .wpcf7-form input:focus,
#sac_contato .wpcf7-form textarea:focus,
.page-template-page-sac .wpcf7-form input:focus,
.page-template-page-sac .wpcf7-form textarea:focus,
.sac_form_card .wpcf7-form input:focus,
.sac_form_card .wpcf7-form textarea:focus {
    border-color: #C30B27;
}

.sac_form_field textarea,
#sac_contato .wpcf7-form textarea,
.page-template-page-sac .wpcf7-form textarea,
.sac_form_card .wpcf7-form textarea {
    resize: vertical;
    min-height: 130px;
}

.sac_form_btn,
#sac_contato .wpcf7-submit,
.page-template-page-sac .wpcf7-submit,
.sac_form_card .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #051D4B;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Libre Franklin', sans-serif;
    cursor: pointer;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    text-transform: none;
    transition: background 0.2s, color 0.2s;
}

.sac_form_btn.is-loading,
#sac_contato .wpcf7-submit.is-loading,
.page-template-page-sac .wpcf7-submit.is-loading,
.sac_form_card .wpcf7-submit.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.sac_form_btn.is-loading::after,
#sac_contato .wpcf7-submit.is-loading::after,
.page-template-page-sac .wpcf7-submit.is-loading::after,
.sac_form_card .wpcf7-submit.is-loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(5, 29, 75, 0.25);
    border-top-color: #051D4B;
    border-radius: 50%;
    animation: cf7-button-spin 0.8s linear infinite;
}

.sac_form_btn:hover,
#sac_contato .wpcf7-submit:hover,
.page-template-page-sac .wpcf7-submit:hover,
.sac_form_card .wpcf7-submit:hover {
    background: #C30B27;
    color: #fff;
}

#sac_contato .wpcf7-spinner,
.page-template-page-sac .wpcf7-spinner,
.sac_form_card .wpcf7-spinner {
    margin: 0 0 0 10px;
}

@keyframes cf7-button-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Lista de contatos */
.sac_contatos_lista {
    display: flex;
    flex-direction: column;
    gap: 50px;
    flex: 0 0 340px;
}

.sac_contato_item {
    background: url(images/card-v2-contatos.svg) no-repeat;
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 215px;
    align-items: flex-start;
    justify-content: center;
}

.sac_contato_icone {
    height: 86px;
    display: flex;
    align-items: center;
    position: absolute;
    left: -1px;
    top: -20px;
    padding-left: 25px;
    padding-bottom: 10px;
}

.sac_contato_info {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sac_contato_label {
    font-size: 13px;
    font-weight: 600;
    color: #C30B27;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Libre Franklin', sans-serif;
}

.sac_contato_valor {
    font-size: 18px;
    font-weight: 700;
    color: #051D4B;
    font-family: 'Libre Franklin', sans-serif;
}

@media screen and (max-width: 1024px) {
    .sac_contatos_lista {
        flex: 0 0 280px;
        padding-left: 20px;
    }

    .sac_form_card {
        padding: 36px 32px 40px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .sac_contato_inner {
        flex-direction: column;
        gap: 80px;
    }

    .sac_contatos_lista {
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sac_contato_item {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }

    .sac_form_card {
        padding: 28px 24px 32px;
    }

    .sac_form_titulo {
        font-size: 22px;
    }
}

@media screen and (max-width: 600px) {
    .sac_contatos_lista {
        flex-direction: column;
    }

    .sac_contato_item {
        flex: none;
        width: 100%;
    }

    #sac_contato {
        padding: 60px 0 80px;
    }
}

/* ==========================================================================
   POLÍTICA DE PRIVACIDADE
   ========================================================================== */

#politica_conteudo {
    padding: 60px 0 100px;
}

.politica_inner {
    max-width: 760px;
}

.banner_reduzido.banner_politica h1 {
    white-space: nowrap;
}

.politica_texto h2 {
    font-size: 26px;
    font-weight: 700;
    color: #051D4B;
    margin-bottom: 8px;
    font-family: 'Libre Franklin', sans-serif;
}

.politica_atualizacao {
    font-size: 13px;
    font-weight: 600;
    color: var(--cinza_400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.politica_texto p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 16px;
}

.politica_texto h3 {
    font-size: 16px;
    font-weight: 700;
    color: #C30B27;
    margin-top: 36px;
    margin-bottom: 10px;
    font-family: 'Libre Franklin', sans-serif;
}

.politica_texto ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.politica_texto ul li {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    padding-left: 18px;
    position: relative;
}

.politica_texto ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C30B27;
    font-weight: 700;
}

/* Single Post — Veja Também
================================================== */
#sn_veja_tambem {
    display: flex;
    overflow: hidden;
    min-height: 480px;
    margin: 100px 0 240px 0;
}

.sn_veja_content {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1400px;
    background: #f5f6f8;
    border-radius: 24px;
}

.sn_vt_label {
    display: flex;
    align-items: center;
    padding: 60px 0 0 85px;
    width: 35%;
}

.sn_vt_label h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--azul_400);
    line-height: 1.15;
    white-space: nowrap;
}

.sn_vt_conteudo {
    background: url(images/bg-mais-artigos.svg) no-repeat;
    display: flex;
    align-items: center;
    padding: 50px 50px 50px 40px;
}

.sn_vt_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.sn_vt_card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sn_vt_imagem {
    height: 195px;
    overflow: hidden;
}

.sn_vt_imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sn_vt_card_info {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sn_vt_card_info h3 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.sn_vt_card_info h3 a {
    color: var(--vinho);
    font-weight: 700;
    transition: color 300ms ease;
}

.sn_vt_card_info h3 a:hover {
    color: var(--azul_400);
}

.sn_vt_card_info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    flex: 1;
}

.sn_vt_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--vinho);
    color: #fff;
    border-radius: 8px;
    margin-top: 16px;
    align-self: flex-end;
    font-size: 18px;
    text-decoration: none;
    transition: background 300ms ease;
}

.sn_vt_btn:hover {
    background: var(--azul_400);
    color: #fff;
}

@media screen and (max-width: 980px) {
    #sn_veja_tambem {
        flex-direction: column;
        min-height: auto;
        margin: 60px 0 80px;
    }

    .sn_veja_content {
        flex-direction: column;
        width: 100%;
    }

    .sn_vt_label {
        flex: none;
        width: 100%;
        padding: 40px 24px 20px;
    }

    .sn_vt_label h2 {
        white-space: normal;
        font-size: 26px;
    }

    .sn_vt_conteudo {
        border-radius: 0 0 24px 24px;
        padding: 20px 24px 40px;
    }
}

@media screen and (max-width: 768px) {
    #sn_veja_tambem {
        margin: 40px 0 60px;
    }

    .sn_vt_label {
        padding: 32px 20px 16px;
    }

    .sn_vt_conteudo {
        padding: 16px 20px 32px;
    }

    .sn_vt_grid {
        grid-template-columns: 1fr;
    }
}

/* Política de Privacidade
================================================== */
@media screen and (max-width: 768px) {
    #politica_conteudo {
        padding: 40px 0 70px;
    }

    .politica_texto h2 {
        font-size: 22px;
    }

    .politica_texto h3 {
        font-size: 15px;
        margin-top: 28px;
    }

    .politica_texto p,
    .politica_texto ul li {
        font-size: 15px;
    }
}

.evendas-mobile {
    display: none;
}


/* RESPONSIVIDADE */

@media (max-width: 980px) {
    .marcas_mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #marcas_lista .marca_bloco {
        display: none;
    }
}

@media (max-width: 1024px) {
    header .logo_site::before {
        height: 100px;
        right: -130px;
    }

    .logo_site {
        padding-top: 15px;
    }

    .header .container {
        align-items: center !important;
    }

    footer {
        background: url(images/bg-footer-mobile.svg) no-repeat;
        background-size: cover;
    }

    .footer_main {
        padding: 100px 30px 50px;
    }

    .footer_logo img {
        max-width: 240px;
    }

    .footer_social {
        justify-content: space-around;
    }

    .footer_nav_col {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer_contato {
        text-align: center;
    }

    .footer_contato_item {
        justify-content: center;
    }

    .evendas-mobile {
        display: flex;
        width: 100%;
    }

    .footer_contato a {
        display: none;
    }

    .btn_texto {
        width: 85%;
        text-align: center;
    }

    .btn_arrow {
        width: 15%;
        padding: 30px 0;
    }

    .banner_interna .container {
        padding-bottom: 50px !important;
    }

    .noticia_card-relacionadas {
        flex-direction: column;
        gap: 40px;
    }

    .noticia_card-relacionadas::after {
        bottom: -305px;
        right: -35px;
    }

    .sn_relacionadas_grid .noticia_imagem {
        min-height: inherit;
    }

    #banner.banner_consultores::after {
        height: 500px;
    }

    #consultores_tradicao {
        padding: 0;
    }

    .consultores_tradicao_imagem_placeholder {
        height: 500px;
    }

    #consultores_especializada::after {
        background: url(images/bg-consultores-mobile.svg) no-repeat;
        background-size: cover;
    }

    .consultores_esp_info {
        width: 100%;
        gap: 15px;
    }

    .consultores_esp_desc {
        font-size: 16px;
    }

    .consultores_especializada_inner {
        padding: 230px 20px 0px;
    }

    .consultores_design_texto {
        width: 100%;
    }

    #single_post {
        padding-top: 20px;
    }

    .trabalhe_beneficios {
        width: 100%;
        padding: 0 30px;
    }

    .compromisso_imagem {
        display: none;
    }

    .compromisso_conteudo::before {
        background: url(images/bg-nosso-compromisso.png) no-repeat;
        background-size: cover;
    }

    .praticas_card {
        aspect-ratio: 283 / 314;
        height: unset !important;
    }

    #praticas_sustentaveis {
        padding: 50px 40px;
    }
}

@media (max-width: 1400px) {
    .marca_bloco:nth-of-type(even) .marca_interna_caracteristicas {
        padding-top: 300px;
    }

}
