/* #################################
    # VARIAVEIS
################################# */
:root {
    --vermelho: #bd141b;
    --cinza-texto: #3e3e3e;
    --cinza-borda: #c9c8c7;
    --cinza-faixa: #e1e2e2;
    --radius: 8px;
    --input-h: 44px;
    --container: 1318px;
}

/* #################################
    # BASE E RESET
################################# */
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #f8f8f8;
    line-height: 1.6;
    padding-top: 120px;
}

body#produtos {
    padding-top: 50px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
select,
input {
    font-family: inherit;
    border: none;
    outline: none;
}

.centro {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* #################################
    # HEADER
################################# */
header {
    background: #3f3b3b;
    position: relative;
    isolation: isolate;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    position: fixed;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 128px;
    background: #bd141b;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%);
    z-index: 55;
}

header h1 {
    position: absolute;
    left: 60px;
    top: 30px;
    width: 220px;
    height: 60px;
    background: url(../imagens/logo.png) left center no-repeat;
    background-size: auto 100%;
    text-indent: -20000px;
    cursor: pointer;
    z-index: 60;
}

header .menu_superior {
    height: 82px;
    display: flex;
    align-items: flex-start;
    justify-content: right;
    padding: 20px 60px 0 0;
    position: relative;
    z-index: 20;
}

header .menu_superior form {
    margin-right: 80px;
    position: relative;
}

header .menu_superior form input[type="text"] {
    width: 345px;
    height: 40px;
    background: #fff;
    border-radius: 100px;
    border: 2px solid var(--cinza-borda);
    text-indent: 20px;
    font: 400 14px/40px 'Montserrat', sans-serif;
    color: #3f3b3b;
}

header .menu_superior form input[type="submit"] {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 11px;
    right: 17px;
    background: url(../imagens/submit_busca.png) center center no-repeat;
    cursor: pointer;
}

header .menu_superior a.link_restrita {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    background: #bd141b;
    padding: 0 20px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 80px;
}

header .menu_superior a.idiomas {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    margin-right: 34px;
    margin-top: 9px;
    padding-left: 45px;
    display: inline-flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: left center;
}

header .menu_superior a.idiomas_pt {
    background-image: url(../imagens/flag-br.png);
    background-size: auto 22px;
}

header .menu_superior a.idiomas_es {
    background-image: url(../imagens/flag-es.png);
    background-size: auto 22px;
}

header .menu_superior a.idiomas_en {
    background-image: url(../imagens/flag-en.png);
    background-size: auto 22px;
    margin-right: 0;
}

header nav {
    background: #fff;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0 53px;
    position: relative;
    z-index: 20;
}

header nav ul {
    display: flex;
    column-gap: 55px;
}

header nav ul li a {
    color: #404040;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.08s ease-in;
}

header nav ul li a:hover {
    border-bottom: 1px solid #909090;
    padding-bottom: 3px;
}

header nav ul li.selected a {
    border-bottom: 1px solid #909090;
    padding-bottom: 3px;
}

/* Submenu de Produtos */
header nav ul li.bt_produtos {
    position: relative;
}

header nav ul li.bt_produtos .submenu-categorias {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 30;
    display: flex;
    flex-direction: column;
}

header nav ul li.bt_produtos:hover .submenu-categorias {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header nav ul li.bt_produtos .submenu-categorias li {
    padding: 0;
}

header nav ul li.bt_produtos .submenu-categorias li a {
    display: block;
    padding: 6px 20px;
    color: #404040;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: none;
    transition: background-color 0.15s ease;
}

header nav ul li.bt_produtos .submenu-categorias li a:hover {
    background-color: #f5f5f5;
    padding-bottom: 6px;
    border-bottom: none;
}



/* #################################
    # MOBILE MENU
################################# */
.bt_menu_mobile {
    display: none;
    position: absolute;
    top: 35px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 58;
    width: 30px;
    height: 30px;
}

.bt_menu_mobile.aberto {
    display: none;
}

.bt_menu_mobile img {
    width: 100%;
    height: auto;
}

.menu-mobile-sombra {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-mobile-sombra.aberto {
    opacity: 1;
    pointer-events: all;
}

.menu-mobile {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 50;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    padding: 145px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: auto;
}

.menu-mobile.aberto {
    left: 0;
}

.bt_fechar_mobile {
    position: fixed;
    top: 46px;
    left: 275px;
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.bt_fechar_mobile.aberto {
    opacity: 1;
    pointer-events: all;
}

.bt_fechar_mobile img {
    width: 100%;
    height: 100%;
}

.mobile-header-items {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-search {
    position: relative;
    width: 100%;
}

.mobile-search input[type="text"] {
    width: 100%;
    height: 40px;
    background: #f5f5f5;
    border-radius: 100px;
    border: 1px solid var(--cinza-borda);
    text-indent: 15px;
    font-family: inherit;
    font-size: 14px;
    color: #3f3b3b;
}

.mobile-search input[type="submit"] {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    right: 15px;
    background: url(../imagens/submit_busca.png) center center no-repeat;
    cursor: pointer;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.mobile-actions .link_restrita {
    background: var(--vermelho);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
}

.mobile-idiomas {
    display: flex;
    gap: 15px;
}

.mobile-idiomas .idiomas {
    display: inline-block;
    width: 30px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -999px;
}

.mobile-idiomas .idiomas_pt {
    background-image: url(../imagens/flag-br.png);
}

.mobile-idiomas .idiomas_es {
    background-image: url(../imagens/flag-es.png);
}

.mobile-idiomas .idiomas_en {
    background-image: url(../imagens/flag-en.png);
}

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

.nav-mobile .nav-link {
    font-size: 16px;
    color: #3f3b3b;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}

.nav-mobile .nav-link:hover {
    color: var(--vermelho);
}

/* #################################
    # HOME
################################# */
#banner {
    position: relative;
    width: calc(100vw - 120px);
    height: calc(100vh - 230px);
    margin: 50px auto 0;
    background: #3f3b3b;
    border-radius: 25px;
    overflow: hidden;
}

#pag_inicial #banner {
    max-height: none;
    height: auto;
}

#banner .tag_vermelha {
    padding: 60px 70px 60px 70px;
    position: absolute;
    right: 55px;
    top: calc(50% - 250px);
    background: #bd141b;
    width: calc(50% - 140px);
    border-bottom-left-radius: 24px;
    border-top-right-radius: 24px;
}

#banner .imagem-banner {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

#banner h2 {
    color: #fff;
    font-weight: 700;
    font-size: 62px;
}

#banner p {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#banner .circulos {
    display: flex;
    gap: clamp(12px, 1.1vw, 20px);
    position: absolute;
    left: calc(50% - 300px);
    bottom: -165px;
}

#banner .circulos img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

#banner .detalhes-logo {
    position: absolute;
    display: flex;
    align-items: center;
    left: calc(50% - 300px);
    bottom: -250px;
}

#banner .detalhes-logo a {
    display: inline-block;
    background: var(--vermelho) url(../imagens/seta_detalhes.png) calc(100% - 20px) center no-repeat;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 0 60px 0 20px;
}

#banner .detalhes-logo img {
    height: 50px;
    margin-left: 155px;
}

#listagem_produtos {
    overflow: hidden;
}

#listagem_produtos .centro {
    padding: 0 70px;
}

#listagem_produtos ul {
    padding: 60px 0;
    display: block;
}

#listagem_produtos ul li {
    position: relative;
    padding-bottom: 20px;
}

#listagem_produtos ul li .mask_imagem {
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    position: relative;
    overflow: hidden;
}

#listagem_produtos ul li h2 {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: var(--vermelho);
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    padding: 8px 30px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 7px;
}

#listagem_produtos .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #3f3b3b !important;
    border-radius: 50%;
    background-image: url(../imagens/seta_detalhes.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 12px auto !important;
    text-indent: -9999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    z-index: 10;
}

#listagem_produtos .owl-nav button:hover {
    background-color: var(--vermelho) !important;
}

#listagem_produtos .owl-nav button.owl-prev {
    left: -65px;
    transform: translateY(-50%) rotate(180deg);
}

#listagem_produtos .owl-nav button.owl-next {
    right: -65px;
}

#catalogos {
    background-color: #e1e2e2;
    height: 600px;
    position: relative;
    display: block;
}

#catalogos h2 {
    position: absolute;
    top: 20px;
    left: 0;
    width: 60px;
    height: 560px;
    background-color: var(--vermelho);
    border-radius: 20px 0 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 2;
    color: #fff;
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 22px;
}

#catalogos .conteudo-catalogo {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 60px;
}

#catalogos .conteudo-catalogo h4 {
    font: 500 16px/1 'Montserrat', sans-serif;
    color: #3f3b3b;
    text-transform: uppercase;
    margin-top: 49px;
}

#catalogos .conteudo-catalogo h3 {
    display: block;
    font: 700 28px/1.35 'Montserrat', sans-serif;
    color: #3f3b3b;
    text-decoration: none;
    max-width: 600px;
    line-height: 32px;
    margin-top: 15px;
}

#catalogos .conteudo-catalogo .div-imgs-catalogos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0;
    width: 95%;
    max-width: 1200px;
    height: 400px;
}

#catalogos .conteudo-catalogo .div-imgs-catalogos img {
    display: block;
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

#bloco-busca {
    margin-top: 50px;
    margin-bottom: 41px;
}

#bloco-busca .centro form {
    max-width: 1100px;
    height: 74px;
    margin: 0 auto;
    background: var(--vermelho);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px 0 32px;
}

#bloco-busca .centro form h2 {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
}

#bloco-busca .centro form .campo-wrap {
    position: relative;
    flex: 1;
}

#bloco-busca .centro form .campo-wrap input[type="text"] {
    width: 100%;
    height: 46px;
    background: #fff;
    border-radius: 999px;
    border: none;
    padding: 0 44px 0 16px;
    font-size: 14px;
    color: #3f3b3b;
}

#bloco-busca .centro form .campo-wrap input[type="text"]::placeholder {
    color: #8e8e8e;
}

#bloco-busca .centro form .campo-wrap input[type="submit"] {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url(../imagens/submit_busca.png) center/contain no-repeat;
    background-size: auto 16px;
    border: none;
    cursor: pointer;
    opacity: .85;
}

#pontos-venda .centro {
    max-width: none;
    width: calc(100vw - 120px);
    margin: 0 auto;
    position: relative;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
}

#pontos-venda .centro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(189, 20, 27, .95) 0%, rgba(189, 20, 27, .90) 30%, rgba(189, 20, 27, .60) 55%, rgba(189, 20, 27, 0) 85%);
}

#pontos-venda .centro img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pontos-venda .centro .pontos-conteudo {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding-left: 60px;
    align-items: flex-start;
}

#pontos-venda .centro .pontos-conteudo h3 {
    font-weight: 700;
    font-size: 35px;
    line-height: 36px;
    color: #fff;
    max-width: 720px;
}

#pontos-venda .centro .pontos-conteudo a {
    display: inline-flex;
    align-items: center;
    background: #fff url(../imagens/seta_pontos_venda.png) calc(100% - 20px) center no-repeat;
    color: var(--vermelho);
    font-weight: 600;
    font-size: 18px;
    height: 48px;
    min-width: 257px;
    padding: 0 50px 0 23px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
    text-decoration: none;
    letter-spacing: .02em;
}

#video-destaque {
    margin-top: 55px;
    margin-bottom: 55px;
}

#video-destaque .centro {
    max-width: none;
    width: calc(100vw - 120px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#video-destaque .centro .vid_container {
    position: relative;
    width: 100%;
    max-width: 1040px;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

#video-destaque .centro img {
    display: block;
    width: 100%;
    height: auto;
}

/* #video-destaque .centro .vid_container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(189, 20, 27, .32), rgba(189, 20, 27, .32));
    pointer-events: none;
} */

/* #video-destaque .centro .vid_container .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
}

#video-destaque .centro .vid_container .play::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-38%, -50%);
    width: 0;
    height: 0;
    border-left: 22px solid var(--vermelho);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
} */

/* #################################
    # FOOTER
################################# */
footer {
    width: calc(100% - 120px);
    background: #3f3b3b;
    border-radius: 24px;
    margin: 0 auto;
    padding: 45px 0 45px 0;
    margin-bottom: 60px;
    position: relative;
}

footer .centro_footer {
    display: grid;
    grid-template-columns: 380px 1fr 105px;
    gap: 10px;
}

footer .centro_footer .rodape-logo img {
    margin-left: 55px;
    max-height: 45px;
}

footer .centro_footer .rodape_nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

footer .centro_footer .rodape_nav .nav-categorias {
    grid-column: span 2;
}

footer .centro_footer .rodape_nav .nav-categorias ul {
    column-count: 2;
    column-gap: 20px;
}

footer .centro_footer .rodape_nav .nav-categorias ul li {
    break-inside: avoid;
    page-break-inside: avoid;
}

footer .centro_footer .rodape_nav h4 {
    color: #fff;
    padding-bottom: 8px;
}

footer .centro_footer .rodape_nav a {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 300;
}

footer .centro_footer .rodape_nav a:hover {
    text-decoration: underline;
}

footer .centro_footer .rodape_contato h4 {
    color: #fff;
    padding-bottom: 8px;
}

footer .centro_footer .rodape_contato address {
    color: #fff;
    font-size: 13.5px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 12px;
}

footer .centro_footer .rodape_contato p {
    color: #fff;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.6;
}

footer .centro_footer .rodape_contato a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}

footer .centro_footer .rodape_contato a:hover {
    color: var(--vermelho);
}

footer .centro_footer p.creditos {
    position: absolute;
    bottom: -45px;
    width: 100%;
    text-align: center;
}

footer .centro_footer p.creditos a {
    text-decoration: underline;
}

footer .centro_footer .rodape-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: block;
    text-indent: -20000px;
    margin-bottom: 8px;
}

footer .centro_footer .rodape-social a.bt_instagram {
    background: url(../imagens/bt_instagram_footer.png) center center no-repeat;
    background-size: 35px auto;
}

footer .centro_footer .rodape-social a.bt_facebook {
    background: url(../imagens/bt_facebook_footer.png) center center no-repeat;
    background-size: 35px auto;
}

footer .centro_footer .rodape-social a.bt_linkedin {
    background: url(../imagens/bt_linkedin_footer.png) center center no-repeat;
    background-size: 35px auto;
}

footer .centro_footer .rodape-contato {
    color: #fff;
}

/* #################################
    # EMPRESA
################################# */
#banner-empresa {
    --banner-pad-x: 0px;
    --pad-top: 129px;
    --pad-left: 80px;
    --pad-right: 80px;
    --pad-bottom: 40px;
    --title-size: clamp(32px, 3.5vw, 54px);
    --gap-circles-btn: 20px;

    position: relative;
    width: calc(100vw - 120px);
    height: calc(100vh - 200px);
    min-height: 500px;
    margin: 50px auto 0;
    background: #3f3b3b;
    border-radius: 25px;
    overflow: hidden;
    padding: 0;
}

#banner-empresa .banner-container {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 0;
}

#banner-empresa .banner-img {
    flex: 1;
    position: relative;
    height: 100%;
}

#banner-empresa .imagem-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#banner-empresa .banner-info {
    position: relative;
    width: 45%;
    max-width: 800px;
    height: 100%;
    background: var(--vermelho);
    color: #fff;
    padding: var(--pad-top) var(--pad-right) var(--pad-bottom) var(--pad-left);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

#banner-empresa .banner-titulo {
    font-weight: 700;
    font-size: var(--title-size);
    line-height: 1.05;
    margin: 0 0 14px 0;
    width: 100%;
}

#banner-empresa .banner-texto {
    font-weight: 500;
    font-size: clamp(18px, 1.05vw, 58px);
    line-height: 1.5;
    letter-spacing: .02em;
    margin: 0;
    max-width: 44ch;
}

#banner-empresa .circulos,
#banner-empresa .logo-fellicci {
    display: none !important;
}

#banner-empresa .detalhes-logo {
    margin-top: var(--gap-circles-btn);
    margin-left: 42px;
}

#banner-empresa .btn-detalhes {
    display: inline-block;
    background: var(--vermelho);
    width: clamp(180px, 13.9vw, 267px);
    height: clamp(40px, 2.7vw, 52px);
    line-height: clamp(40px, 2.7vw, 52px);
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

#banner-empresa-2 {
    width: calc(100vw - 120px);
    margin-left: 60px;
    margin-right: 60px;
    height: auto;
    background-color: #efefef;
    border-radius: 25px;
    position: relative;
    z-index: 72;
    overflow: hidden;
}

#banner-empresa-2 .centro {
    max-width: none;
    width: 100%;
    margin: 0;
    height: 100%;
}

#banner-empresa-2 .banner-container {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 0;
}

#banner-empresa-2 .banner-img {
    flex: 2;
}

#banner-empresa-2 .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#banner-empresa-2 .banner-texto-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px 0 64px;
}

#banner-empresa-2 .subtitulo {
    font-size: 20px;
    font-weight: 700;
    color: var(--vermelho);
    text-transform: uppercase;
    line-height: 2;
    margin: 0 0 6px;
}

#banner-empresa-2 .texto {
    font-size: 18px;
    color: #3f3b3b;
    line-height: 1.667;
    margin: 0 0 18px;
}

.frase-empresa {
    width: calc(100vw - 120px);
    margin: 32px auto 60px;
    text-align: center;
}

.frase-empresa .aspas {
    font-weight: 700;
    font-size: 130px;
    line-height: 1;
    color: var(--vermelho);
    display: block;
    margin-bottom: 8px;
}

.frase-empresa .frase-texto {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #3f3b3b;
    margin: 0 auto;
    max-width: 980px;
}

#galeria-extra {
    width: calc(100vw - 120px);
    margin: 32px auto 60px;
}

#galeria-extra ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0;
    list-style: none;
    width: 100%;
}

#galeria-extra ul li img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* #################################
    # PRODUTOS
################################# */
#produtos .sec-dormitorios {
    margin-top: 124px;
}

#produtos .sec-dormitorios h2 {
    font: 700 36px/1.2 'Montserrat', sans-serif;
    color: #3f3b3b;
    text-align: center;
    margin: 0 0 28px;
}

#produtos .sec-dormitorios ul {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    column-gap: 16px;
    row-gap: 40px;
    justify-content: center;
    padding: 0;
    padding-bottom: 45px;
}

#produtos .sec-dormitorios ul li img {
    width: 360px;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

#produtos .sec-dormitorios ul li h3 {
    font-size: 22px;
    color: #3f3b3b;
    font-weight: 700;
    line-height: 1.182;
    text-align: center;
    margin-top: 5px;
}

#produtos .sec-dormitorios ul li h4 {
    font-size: 18px;
    color: #3f3b3b;
    font-weight: 700;
    line-height: 1.444;
    text-align: center;
    margin-top: 2px;
}

#produtos .sec-dormitorios ul li h5 {
    font-size: 16px;
    color: #3f3b3b;
    line-height: 1.625;
    text-align: center;
    margin-top: 6px;
    font-weight: normal;
}

/* #################################
    # PRODUTO INTERNO
################################# */
#produto-interno {
    margin: 40px auto 0;
    width: calc(100vw - 120px);
}

#produto-interno .centro {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

#produto-interno .galeria {
    width: 554px;
}

#produto-interno img {
    width: 554px;
    height: 537px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    background: #eee;
    cursor: pointer;
}

#produto-interno ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 8px;
    margin-top: 18px;
}

#produto-interno ul li img {
    width: 84px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
    padding: 3px;
    cursor: pointer;
}

#produto-interno aside {
    flex: 1 1 auto;
    max-width: 640px;
}

#produto-interno aside h2 {
    font-size: 35px;
    font-weight: 700;
    color: #3f3b3b;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 8px 0 2px;
}

#produto-interno aside h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3f3b3b;
    line-height: 1.6;
    margin-bottom: 18px;
}

#produto-interno aside h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3f3b3b;
    margin: 6px 0 6px;
}

#produto-interno aside p {
    font-size: 18px;
    color: #3f3b3b;
    line-height: 1.85;
    max-width: 540px;
    margin: 0 0 16px;
}

#produto-interno aside ul {
    display: block;
    gap: 10px;
    padding: 0;
    margin: 8px 0 0;
}

#produto-interno aside ul li {
    font-size: 18px;
    color: #3f3b3b;
    line-height: 1.9;
    display: block;
    width: 100%;
}

#produto-interno aside ul li span {
    font-weight: 600;
    margin-right: 8px;
    display: block;
}

#produto-interno aside ul li strong {
    font-weight: 700;
}

#diferenciais {
    margin: 60px auto 0;
    width: calc(100vw - 120px);
}

#diferenciais h2 {
    font: 700 28px/1.2 'Montserrat', sans-serif;
    color: #3f3b3b;
    text-align: center;
    margin-bottom: 24px;
}

#diferenciais ul {
    display: flex;
    flex-wrap: wrap;
    gap: 56px 16px;
    justify-content: center;
    padding: 0;
}

#diferenciais ul li {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#diferenciais ul li img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .14);
}

#diferenciais ul li h3 {
    font-size: 18px;
    color: #3f3b3b;
    line-height: 1.444;
    text-align: center;
    margin-top: 12px;
    font-weight: normal;
}

#vinhetas {
    margin: 60px auto 0;
    width: calc(100vw - 120px);
}

#vinhetas h2 {
    font: 700 28px/1.2 'Montserrat', sans-serif;
    color: #3f3b3b;
    text-align: center;
    margin-bottom: 24px;
}

#vinhetas ul {
    display: flex;
    flex-wrap: wrap;
    gap: 56px 16px;
    justify-content: center;
    padding: 0;
}

#vinhetas ul li {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#vinhetas ul li img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    /*box-shadow: 0 6px 16px rgba(0, 0, 0, .14);*/
}

.vinheta-zoom {
    width: 100%;
    cursor: pointer;
    display: block;
}

#vinhetas ul li h3 {
    font-size: 16px;
    color: #3f3b3b;
    line-height: 1.444;
    text-align: center;
    margin-top: 12px;
    font-weight: normal;
    width: 100%;
    word-wrap: break-word;
}

#opcoes-cores {
    margin: 27px auto 64px;
    width: calc(100vw - 120px);
}

#opcoes-cores h2 {
    font: 700 28px/1.2 'Montserrat', sans-serif;
    color: #3f3b3b;
    text-align: center;
    margin-bottom: 20px;
}

#opcoes-cores ul {
    display: flex;
    flex-wrap: wrap;
    gap: 34px 64px;
    justify-content: center;
    padding: 0;
}

#opcoes-cores ul li img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

#opcoes-cores ul li h3 {
    font-size: 18px;
    color: #3f3b3b;
    line-height: 1.444;
    text-align: center;
    margin-top: 12px;
    font-weight: normal;
}

/* #################################
    # LINHAS MODULADAS
################################# */
#modulada-cores {
    width: calc(100vw - 120px);
    margin: 32px auto 24px;
}

#modulada-cores .titulo-secao {
    font: 700 28px/1.2 'Montserrat', sans-serif;
    color: #3f3b3b;
    text-align: center;
    margin-bottom: 18px;
}

.cores-mod-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    column-gap: 64px;
    row-gap: 24px;
    padding: 0;
}

.cores-mod-item img {
    width: 273px;
    height: 272px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
    margin: 0 auto;
}

.cores-mod-item .cor-nome {
    font-size: 16px;
    color: #3f3b3b;
    line-height: 1.444;
    text-align: center;
    margin-top: 10px;
}

#modulos {
    width: calc(100vw - 120px);
    margin: 26px auto 72px;
}

#modulos .titulo-secao {
    font: 700 28px/1.2 'Montserrat', sans-serif;
    color: #3f3b3b;
    text-align: center;
    margin-bottom: 22px;
}

.grid-modulos {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    column-gap: 16px;
    row-gap: 129px;
    justify-content: center;
    padding: 0;
}

.mod-card {
    width: 360px;
}

.mod-card .mod-img {
    width: 360px;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
}

.mod-card .mod-nome {
    font-size: 22px;
    font-weight: 700;
    color: #3f3b3b;
    line-height: 1.182;
    text-align: center;
    margin-top: 10px;
}

.mod-card .mod-ref {
    font-size: 18px;
    font-weight: 700;
    color: #3f3b3b;
    line-height: 1.444;
    text-align: center;
    margin-top: 2px;
}

.mod-card .mod-medidas {
    font-size: 16px;
    color: #3f3b3b;
    line-height: 1.625;
    text-align: center;
    margin-top: 6px;
}

/* #################################
    # Representantes
################################# */
#representantes .etiqueta-lateral {
    position: fixed;
    left: -92px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--vermelho);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 16px;
    padding: 14px 22px;
    border-radius: 12px;
    z-index: 20;
    pointer-events: none;
}

#representantes .faixa-topo {
    background: var(--cinza-faixa);
    padding: 40px 0 48px;
}

#representantes .subtitulo {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a7a7a;
    margin-bottom: 12px;
}

#representantes .titulo {
    font-size: 28px;
    font-weight: 700;
    color: var(--cinza-texto);
    text-align: center;
    line-height: 1.2;
    margin: 0 auto 24px;
    max-width: 980px;
}

#representantes .busca-lojas {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#representantes .busca-lojas select {
    height: var(--input-h);
    min-width: 190px;
    border: 2px solid var(--cinza-borda);
    background: #f8f8f8;
    border-radius: var(--radius);
    padding: 0 12px;
    font-size: 16px;
    color: #717171;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #717171 50%), linear-gradient(135deg, #717171 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
    background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%, 0 0;
    background-size: 5px 5px, 5px 5px, 100% 100%;
    background-repeat: no-repeat;
}

#representantes .btn-buscar {
    height: var(--input-h);
    padding: 0 22px;
    border-radius: var(--radius);
    background: var(--vermelho);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .06s ease, opacity .2s ease;
}

#representantes .btn-buscar:active {
    transform: translateY(1px);
}

#representantes .btn-buscar:hover {
    opacity: .92;
}

#representantes .lista-lojas {
    background: #fff;
    padding: 28px 0 72px;
}

#representantes .lojas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px 56px;
}

#representantes .loja {
    border-bottom: 1px solid #ececec;
    padding-bottom: 22px;
}

#representantes .loja h3 {
    font-size: 22px;
    color: var(--cinza-texto);
    font-weight: 700;
    margin-bottom: 8px;
}

#representantes .loja p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

#lista-manuais ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    padding-bottom: 45px;
}

#lista-manuais ul li img {
    display: block;
    width: 100%;
}

#lista-manuais ul li h3 {
    font-weight: 500;
    font-size: 16px;
    padding-top: 10px;
    text-align: center;
}