body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    animation: show 750ms ease-out forwards;

}

body::-webkit-scrollbar {
    width: 10px;


}

body::-webkit-scrollbar-thumb {
    border-radius: 10rem;
    background: #cd9a06
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

header {
    background: white;
    width: 100%;
    box-shadow: 1px -8px 40px -5px #0000003d;
    z-index: 1;
    position: relative;
    background: white;
    z-index: 10;
}

#produto {
    margin-top: 175px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes descer-header {
    0% {
        transform: translateX(-2rem);
    }

    100% {
        transform: translateX(0rem);
    }
}

*, html {

    scroll-behavior: smooth !important;
}

section {
    width: 100%;
}

li {
    list-style: none;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
    margin: 0.5rem 0;
    text-align: center;
    color: #4D3B06;
}

h3 {}

h4 {}

h5 {}

p {
    font-size: 1rem;
    color: #4D3B06;
    text-align: justify;
    line-height: 1.25rem;
}

.container-header {
    z-index: 11;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: show-topbar 850ms ease-in-out forwards;
    position: relative;
}

.container {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.top-bar {
    display: flex;
    width: 90%;
    justify-content: space-between;
}

@keyframes show-topbar {
    0% {
        background: white;
    }

    100% {
        background: linear-gradient(90deg, rgba(103, 64, 5, 1) 24%, rgba(179, 109, 44, 1) 54%, rgba(103, 64, 5, 1) 100%);
    }
}

.top-bar ul {
    display: flex;
    margin: 0;
    padding: 0.5rem 0;
    align-items: center;
    gap: 2rem;
}

.top-bar li {
    list-style: none;
    transition: 300ms;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    font-size: 0.95rem;
    transition: 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-desktop {
    background: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    border-bottom-right-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
    backdrop-filter: blur(10px);
    box-shadow: 0px 20px 32px -15px #4d3b061c;
}

.box-menu-desktop {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.box-logo-menu {
    width: 16%;
    display: flex;
    justify-content: flex-start;
    animation: descer-header 750ms ease-out forwards;
}

.box-logo-menu img {
    max-width: 200px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(2px 4px 5px #00000024);
    cursor: pointer;
}

.box-links-menu {
    width: 38%;
    height: 6.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: descer-header 750ms ease-out forwards;
}

.box-links-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    gap: 2rem;
}

.box-links-menu ul::-webkit-scrollbar {
    width: 10px;


}

.box-links-menu ul::-webkit-scrollbar-thumb {
    border-radius: 10rem;
    background: #cd9a06
}

.btn-orcamento {
    text-decoration: none;
    padding: 1rem;
    border-radius: 10rem;
    color: white;
    background: #4D3B06;
    transition: 300ms;
    font-weight: 600;
    box-shadow: -4px -3px 14px -4px #0000002e;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-align: center;
    min-width: 50%;
    cursor: pointer;
}

.btn-orcamento::before {
    content: '';
    position: absolute;
    width: 30rem;
    height: 2.25rem;
    background: #CD9A06;
    animation: girar-btn 1550ms linear infinite;
    z-index: -2;
    filter: blur(5px);
}

@keyframes girar-btn {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg)
    }
}

.btn-orcamento::after {
    content: '';
    position: absolute;
    background: #CD9A06;
    border-radius: 10rem;
    z-index: -1;
    inset: 2px;
    transition: 300ms;
    cursor: pointer;
}

.btn-orcamento:hover::before {
    animation: girar-btn 1150ms linear infinite;
    height: 1.5rem;
    filter: blur(5px);
    background: #efb200;
}

.btn-orcamento:hover {
    color: white;
    background: #4D3B06;
    transform: scale(0.98);
    box-shadow: -4px -3px 16px -4px #CD9A06;
}

.btn-orcamento:hover::after {
    background: #4D3B06;
}

.box-links-menu li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
    height: 100%;
    /* overflow: hidden; */
}

.box-links-menu a:hover {
    transform: translateY(-4px);
}


.box-links-menu a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #CD9A06;
    bottom: 0rem;
    border-radius: 10rem;
    box-shadow: 2px 3px 8px #0000002e;
    opacity: 0;
    transition: 300ms;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-links-menu a:hover::before {
    width: 100% !important;
    opacity: 1;
}

.box-btn-menu {
    width: 33%;
    height: 6.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: btn-menu 750ms ease-out forwards;
}

@keyframes btn-menu {
    0% {
        transform: translateX(1.5rem);
    }

    100% {
        transform: translateX(0rem);
    }
}

.box-links-menu a svg {
    width: 15px;
    margin-top: -1px;
    fill: #4D3B06;
    transition: 350ms;
}

.box-links-menu a {
    gap: 5px;
    text-decoration: none;
    color: #4D3B06;
    font-size: 0.92rem;
    font-weight: 550;
    padding: 1rem;
    transition: 300ms ease-out;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.box-links-menu a:hover {
    color: #CD9A06;
    text-shadow: 2px 3px 4px #00000017;
    transform: translateY(-4px);
}

.box-links-menu a:hover path {
    fill: #CD9A06 !important;
    text-shadow: 2px 3px 4px #00000017;

}

/*body*/

.section-slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 30rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px #00000066;
    margin-top: 175px;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.bg-slide {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(179deg, rgb(37 22 0 / 53%) 20%, rgba(174, 106, 41, 0) 64%);
}

.section-slide p {
    color: white;
    margin: 0rem;
    padding: 1rem 0;
}

.section-slide h1 {
    color: white;
    padding: 1rem 0;
    margin: 0;
    text-shadow: -7px -5px 10px #00000069;
    text-align: center;
}

.section-slide img {
    position: absolute;
    width: 100%;
    height: auto;
    animation: img-slide 750ms ease-out forwards;
    box-shadow: 0 0 30px #00000066;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

@keyframes img-slide {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.conteudo-slide {
    display: flex;
    z-index: 0;
    width: 94%;
    animation: show-texto-slide 950ms ease-out forwards;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes show-texto-slide {
    0% {
        transform: scale(0.9) translatey(5rem);
    }

    100% {
        transform: scale(1) translatey(0rem);
    }
}

.conteudo-slide a {
    text-decoration: none;
    border-radius: 10rem;
    color: white;
    background: #CD9A06;
    transition: 300ms;
    font-weight: 600;
    box-shadow: 0px 13px 24px 0px rgb(0 0 0 / 40%), inset 1px -1px 20px 0px #4d3b06ab;
    margin: 1rem 0;
    width: 30rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
}

.conteudo-slide a:hover {
    box-shadow: -4px -3px 30px 0px #CD9A06, inset 1px -1px 20px 0px #CD9A06;
    background: #CD9A06;
    transform: scale(0.98);
    border: 1px solid #edb000;
}

.btn-atendimento {
    font-size: 1rem;
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #4D3B06;
    transition: 300ms;
    min-width: 40%;
}

.dropdown-atendimento {
    position: absolute;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 0 30px -4px #00000029, 0px 47px 30px -15px #00000024;
    top: 5.25rem;
    border-top: 4px solid #CD9A06;
    border-bottom: 4px solid #CD9A06;
    display: none;
}

.dropdown-atendimento ul {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    width: 100%;
    justify-content: center;
    margin: 0;
}

.dropdown-atendimento li {
    display: flex;
    width: 100%;
    text-align: center;
    z-index: 2;
    border-bottom: 1px solid #cd9a063b;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #4D3B06;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
    transition: 300ms;
}

.svg-wpp {
    fill: #00cb00;
    filter: drop-shadow(2px 4px 6px #00590038);
    width: 1.25rem;
    margin-right: 0.35rem;

}

.normal-svg {
    fill: #4D3B06 !important;
    filter: drop-shadow(2px 4px 6px #4d3b0624) !important;
    width: 1.4rem !important;
    margin-right: 0.35rem;
    color: #4d3b0624;
}

.dropdown-atendimento span {
    display: flex;
    align-items: center;
}

.dropdown-atendimento a {
    padding: 0.75rem 0;
    text-decoration: none;
    color: #4D3B06;
    font-size: 0.92rem;
    font-weight: 400;
    height: 125%;
    transition: 300ms ease-out;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.dropdown-atendimento a:hover {
    transform: translateX(0.75rem);
    text-shadow: -3px 4px 4px #4d3b0633;
    color: #CD9A06;
}

/*
.dropdown-atendimento a::before {
    bottom: 0rem;
}

.dropdown-atendimento a:hover::after {
    width: 100%;
    opacity: 1;
}

.dropdown-atendimento a::after {
    top: 0rem;
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #CD9A06;
    border-radius: 10rem;
    box-shadow: 2px 3px 8px #0000002e;
    opacity: 0;
    transition: 300ms;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/
.dropdown-atendimento li:hover {
    box-shadow: 0 0 30px -9px #61410045;
}

.menu-dropdown-atendimento:hover .dropdown-atendimento {
    display: flex;
    animation: show-dropdown 400ms ease-out forwards;
    justify-content: center;
}

@keyframes show-dropdown {
    0% {
        opacity: 0;
        transform: translateY(-1.25rem) scale(0.9) skew(0deg, 0deg) rotateX(61deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) skew(0deg, 0deg) rotateX(0deg);
    }
}

.btn-atendimento svg {
    fill: #CD9A06;
    width: 2rem;
    margin-right: 0.5rem;
    transition: 300ms;
}

.btn-atendimento:hover svg {
    fill: #4D3B06;
}

.btn-atendimento:hover {
    color: #CD9A06;
}

.btn-atendimento span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.btn-atendimento span b {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.sc-100 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-reto {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-cards-sc1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cards-sc1 {
    text-align: center;
    z-index: 0;
    background: white;
    width: 26%;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
    box-shadow: 0px 8px 35px -10px #00000036;
    min-height: 25rem;
    border-top: 5px solid #CD9A06;
    border-bottom: 5px solid #CD9A06;
    cursor: pointer;
    transition: 400ms;
}

.cards-sc1:hover {
    transform: translateY(-0.75rem);
    box-shadow: 0px 8px 37px -10px #00000054, 0px 20px 37px -30px #00000054;
    border-color: #e9ae00;
    border-radius: 1.5rem;
}

.cards-sc1 svg {
    margin: 0.5rem 0;
    width: 3.5rem;
    filter: drop-shadow(2px 4px 4px #0000001c);
}

.cards-sc1 path {
    fill: #CD9A06;
}

.cards-sc1 h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    text-align: center;
    color: #4D3B06;
}

.cards-sc1 p {
    margin: 0.5rem 0;
    text-align: center;
}

.span-text-card {
    color: #cd9a06b8;
    margin: 0.5rem 0;
}

.btn-card {
    box-shadow: -1px 7px 30px -8px #0000004a;
    text-decoration: none;
    border-radius: 10rem;
    color: white;
    background: #CD9A06;
    transition: 300ms;
    font-weight: 600;
    margin: 1rem 0;
    width: 100%;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown {
    position: absolute;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0 30px -4px #00000029, 0px 47px 30px -15px #00000059;
    top: 5.25rem;
    border-top: 4px solid #CD9A06;
    border-bottom: 4px solid #CD9A06;
    display: none;
    width: 335px;
    height: 286px;
}

.dropdown ul {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: scroll;
    gap: 0rem;
    align-items: center;
    top: 0px;
    position: relative;
    justify-content: flex-start;
}

.dropdown li {
    display: flex;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #cd9a063b;
    align-items: center;
    justify-content: center;
}

.dropdown a {}

.dropdown a:hover {
    transform: translateY(0);
}

.dropdown a::before {
    bottom: 0rem;
}

.dropdown a:hover::after {
    width: 100%;
    opacity: 1;
}

.dropdown a::after {
    top: 0rem;
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #CD9A06;
    border-radius: 10rem;
    box-shadow: 2px 3px 8px #0000002e;
    opacity: 0;
    transition: 300ms;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown li:hover {
    box-shadow: 0 0 30px -9px #61410045;
}

.menu-dropdown:hover .dropdown {
    display: flex;
    animation: show-dropdown 400ms ease-out forwards;
    align-items: flex-start;
}

@keyframes show-dropdown {
    0% {
        opacity: 0;
        transform: translateY(-1.25rem) scale(0.9) skew(0deg, 0deg) rotateX(61deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) skew(0deg, 0deg) rotateX(0deg);
    }
}

.btn-insta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-insta:hover {}

.btn-insta:hover svg {}

.btn-topbar svg {
    width: 1.25rem;
    max-height: 1rem;
    fill: white;
    margin-right: 0.25rem;
}

.btn-insta svg {
    width: 1.25rem;
    fill: white;
    margin-right: 0.25rem;
}


/** Efeitos JavaScript **/

.menu-fixed {
    animation: fixar-menu 850ms ease-out forwards;
    position: fixed;
    top: 0px;
    box-shadow: 0px -20px 32px 3px #4D3B06;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #CD9A06;
}

@keyframes fixar-menu {
    0% {
        opacity: 1;
        transform: translateY(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0rem);
        backdrop-filter: blur(10px);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 11;
}

.modal-content {
    background-color: #00000000;
    width: 100%;
    height: 100vh;
    z-index: 15 !IMPORTANT;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px -4px black;
    backdrop-filter: blur(6px);
}

#pop-up {
    background: white;
    padding: 2rem;
    width: 40%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 2px 20px 10px rgb(33 20 0 / 43%);
    border-top: 6px solid #CD9A06;
    border-bottom: 6px solid #CD9A06;
    position: relative;
}

#pop-up input {
    width: 60%;
    padding: 0.9rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    border: 0px solid rgba(103, 64, 5, 1);
    color: #cd9a06;
    border-top: 2px solid #CD9A06;
    border-bottom: 2px solid #CD9A06;
    outline: none;
    box-shadow: 0 0 20px 0px rgb(103 64 5 / 14%);
    font-size: 1rem;
}

#pop-up textarea {
    width: 60%;
    height: 8rem;
    padding: 1rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    border: 0px solid rgba(103, 64, 5, 1);
    color: #cd9a06;
    border-top: 2px solid #CD9A06;
    border-bottom: 2px solid #CD9A06;
    outline: none;
    box-shadow: 0 0 20px 0px rgb(103 64 5 / 14%);
    font-size: 1rem;
}

#pop-up button {
    box-shadow: -1px 7px 24px -8px #0000005e;
    text-decoration: none;
    border-radius: 10rem;
    color: white;
    background: #CD9A06;
    transition: 300ms;
    font-weight: 600;
    margin: 0.5rem;
    width: 60%;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    font-size: 1rem;
    cursor: pointer;
    transition: 300ms;
}

#pop-up button:hover {
    background: #4D3B06;
    box-shadow: -1px 7px 26px -9px #634a00;
    transform: scale(0.98);
}

#pop-up span {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3.25rem;
    text-shadow: 2px 3px 6px #00000033;
    color: #4D3B06;
    transition: 300ms;
    cursor: pointer;
}

#pop-up span:hover {
    color: #CD9A06;
    opacity: 0.9;
    transform: scale(0.98);
}

#pop-up h3 {
    color: #4D3B06;
    font-size: 1.5rem;
    margin: 0.5rem;
}

#pop-up p {
    margin: 0;
    opacity: 0.75;
    margin: 0.5rem;
}

.show-pop {
    animation: show-pop 500ms ease-out forwards;
}

@keyframes show-pop {
    0% {
        transform: scale(0.9);
        opacity: 0;

    }

    100% {
        transform: scale(1);
        opacity: 1;

    }

}

.modal-show {
    animation: show-modal 500ms ease-out forwards;
}

@keyframes show-modal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.block-body {
    overflow-y: hidden;
}

.logo-pop {
    max-width: 125px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(2px 4px 5px #00000024);
    position: absolute;
    top: 0rem;
    left: 1rem;
}

.section-carrossel {
    margin: 4rem 0 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

.section-padrao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.carrossel-home {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
}

.box-cards-carrossel {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.card-carrossel {
    width: 49%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.card-carrossel img {
    width: 30rem;
    max-height: 22rem;
    object-fit: cover;
    filter: drop-shadow(2px 4px 7px #00000036);
    border-radius: 1rem;
}

.text-card-carrossel {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.text-card-carrossel p {
    font-size: 1rem;
}

.text-card-carrossel b {}

.text-carrosel {
    width: 49%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.text-carrosel h4 {
    color: #4D3B06;
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.text-carrosel p {
    margin: 0.5rem 0;
}

.btn-padrao {
    box-shadow: -1px 7px 30px -8px #0000004a;
    text-decoration: none;
    border-radius: 10rem;
    color: white;
    background: #CD9A06;
    transition: 300ms;
    font-weight: 600;
    margin: 1rem 0;
    width: 55%;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-padrao:hover {
    transform: scale(0.98);
    background: #4D3B06;
    box-shadow: -1px 7px 30px -8px #4D3B06;
}

.img-esquerda {
    width: 15rem !important;
    opacity: 0.75;
}

.img-direita {
    width: 15rem !important;
    opacity: 0.75;
}

.img-centro {
    width: 25rem;
    filter: drop-shadow(2px 4px 7px #00000036);
    border-radius: 1rem;
}

.outros-produtos {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
}

.previa-produto {
    border-top: 4px solid #CD9A06;
    border-bottom: 4px solid #CD9A06;
    padding: 0.25rem;
    border-radius: 0.75rem;
    box-shadow: 9px 13px 20px -8px #00000024;
    transition: 300ms;
    cursor: pointer;
    background: white;
    border-right: transparent;
    border-left: transparent;
}

.previa-produto img {
    width: 8rem;
    max-height: 6rem;
    object-fit: cover;
    opacity: 0.9;
    transition: 300ms;
}

.previa-produto:hover {
    transform: translateY(-0.5rem);
    box-shadow: 9px 13px 20px -8px #00000057;
    border-color: #dfa600;
    border-radius: 1rem;
}

.previa-produto:hover img {
    opacity: 1;
    transform: scale(1.035);
}

.card-carrossel svg {
    width: 1.5rem;
    fill: white;
    cursor: pointer;
    filter: drop-shadow(3px 3px 7px #00000036);
    color: #00000036;
    padding: 0.5rem;
    background: #CD9A06;
    border-radius: 3.75rem;
    transform: rotate(90deg);
    transition: 300ms;
}

.card-carrossel svg:hover {
    background: #4D3B06;
    filter: drop-shadow(3px 3px 7px #4d3b0661);
}

.imagem-carrossel {
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.inverter {
    transform: rotate(270deg) !important;
}

#text-produto1 {}

#text-produto2 {
    position: absolute;
    display: none;
}

#text-produto3 {
    position: absolute;
    display: none;
}

#text-produto4 {
    position: absolute;
    display: none;
}

.show-produto-text {
    position: relative !important;
    display: flex !important;
    animation: show-text-produto 850ms ease-out forwards;
}

@keyframes show-text-produto {
    0% {
        opacity: 0;
        transform: translateX(5rem) scale(0.9);
    }

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

#img-produto2 {
    position: absolute;
    display: none;
}

#img-produto3 {
    position: absolute;
    display: none;
}

#img-produto4 {
    position: absolute;
    display: none;
}

.remove-text-produto {
    display: none !important;
    position: absolute !important;
}

.img-logo {
    max-width: 115px !important;
    max-height: 140px !important;
}

.mini-svg {
    width: 1rem !important;
    fill: #4D3B06 !important;
    transition: 300ms !important;
    filter: drop-shadow(2px 4px 6px transparent) !important;
    margin-right: 0.5rem;
}

.dropdown-atendimento a:hover .mini-svg {
    fill: #CD9A06 !important;
}


.remove-produto-img {
    display: none !important;
    position: absolute !important;
}

.show-produto-img {
    position: relative !important;
    display: flex !important;
    animation: show-img-carrossel 850ms ease-out forwards;
}



@keyframes show-img-carrossel {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

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

}

.container-padrao {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-sobre-home {
    width: 60%;
}

.text-sobre-home h3 {
    font-size: 2rem;
    margin: 0.5rem 0;
    color: #4D3B06;
}

.text-sobre-home h3 b {
    font-weight: 900;
}

.text-sobre-home p {}

.img-sobre-home {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-sobre-home img {
    max-width: 350px;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(10px 9px 10px #00000024);
    cursor: pointer;
}

#sobre-home {
    display: flex;
    justify-content: center;
    /* margin: 4rem 0 4rem 0; */
}

#call-action {
    background: url(./img/madeiras-banner-secundario.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 0px 30px #00000030;
    margin: 4rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
}

.container-call-action {
    /* display: flex; */
    width: 90%;
    z-index: 1;
    padding: 2rem;
}

.box-call-action {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box-call-action h4 {
    font-size: 2rem;
    color: white;
    margin: 0.5rem;
    text-shadow: -7px -5px 10px #00000069;
}

.box-call-action p {
    color: white;
    text-shadow: -7px -5px 10px #00000069;
}

.box-btn-call-ac a:hover {
    box-shadow: -4px -3px 30px 0px #CD9A06, inset 1px -1px 20px 0px #CD9A06 !important;
    background: #CD9A06 !important;

}

.box-btn-call-ac {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blur {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    box-shadow: inset -1px 3px 25px 0px #000000ba;
    backdrop-filter: blur(5px);
    background: linear-gradient(179deg, rgb(37 22 0 / 53%) 20%, rgba(174, 106, 41, 0) 64%);
}

#contato-home {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 4rem 0; */
}

.section-padrao {}

.box-contato-home {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: flex-start;
}

.box-contato-home h4 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    text-align: center;
    color: #4D3B06;
}

.box-inputs-contato-home {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 48%;
    border-radius: 1rem;
    padding: 2rem 3rem;
}

.box-inputs-contato-home input {
    width: 100%;
    padding: 0.9rem;
    margin: 0.7rem 0;
    border-radius: 0.5rem;
    border: 0px solid rgba(103, 64, 5, 1);
    color: #cd9a06;
    border-top: 2px solid #CD9A06;
    border-bottom: 2px solid #CD9A06;
    outline: none;
    box-shadow: -7px 10px 20px -8px rgb(103 64 5 / 10%);
    font-size: 1rem;
}

.box-inputs-contato-home input:hover {}

.box-inputs-contato-home textarea {
    width: 100%;
    height: 8rem;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    border: 0px solid rgba(103, 64, 5, 1);
    color: #cd9a06;
    border-top: 2px solid #CD9A06;
    border-bottom: 2px solid #CD9A06;
    outline: none;
    box-shadow: 0 0 20px 0px rgb(103 64 5 / 10%);
    font-size: 1rem;
}

.text-politicas h2 {

    font-size: 1.25rem;

    text-align: start;
}

.text-politicas li {
    list-style: disc;
    color: #4D3B06;
}

.box-inputs-contato-home textarea:hover {}

.box-infos-contato h5 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    text-align: center;
    color: #4D3B06;
    text-align: center;
    margin-left: -1rem;
}

.box-infos-contato {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0rem 2rem;
}

.box-infos-contato ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.box-infos-contato li {
    display: flex;
    text-align: center;
    z-index: 2;
    border-bottom: 2px solid #cd9a06;
    justify-content: center;
    flex-direction: column;
    color: #4D3B06;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
    width: 100%;
    transition: 300ms;
    border-radius: 0.5rem;
    align-items: flex-start;
}

.box-infos-contato span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0.25rem 0;
}

.box-infos-contato a {
    padding: 0.75rem 0;
    text-decoration: none;
    color: #4D3B06;
    font-size: 1rem;
    font-weight: 400;
    height: 100%;
    transition: 300ms ease-out;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.box-infos-contato a svg {
    margin-right: 0.5rem;
}

#contato-home-border {
    border-top: 5px solid #CD9A06;
    border-bottom: 5px solid #CD9A06;
    border-radius: 2rem;
    box-shadow: 0 0 40px -20px #00000040;
}

footer {
    width: 100%;
    border-top: 3px solid #CD9A06;
    margin-top: 4rem;
    box-shadow: 0px 2px 40px 0px #4d3b0624;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container-footer {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.coluna-footer {}

.title-footer {
    font-size: 1.35rem;
    margin: 1rem 0;
    color: #4D3B06;
}

.coluna-footer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 30%;
}

.coluna-footer {}

.coluna-footer-logo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    width: 30%;
}

.coluna-footer ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.coluna-footer-2 ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.coluna-footer a:hover {
    color: #CD9A06;
    text-shadow: 2px 3px 4px #00000017;
    transform: translateY(-4px);
}

.coluna-footer-2 a:hover {
    color: #CD9A06;
    text-shadow: 2px 3px 4px #00000017;
    transform: translateY(-4px);
}


.coluna-footer-logo img {
    width: 200px;
    height: auto;
    filter: drop-shadow(2px 4px 5px #00000024);
}

.ewa-footer {
    width: 100%;
    border-top: 2px solid #CD9A06;
    border-radius: 1.25rem;
}

.ewa-footer h6 {
    font-size: 0.9rem;
    margin: 1rem 0;
    text-align: center;
    color: #4D3B06;
}

.ewa-footer a {
    text-decoration: none;
    color: #CD9A06;
    font-size: 1rem;
}

.box-colunas {
    display: flex;
    width: 70%;
}

.coluna-footer a:hover {
    transform: translateX(0.5rem);
}

.coluna-footer-2 a:hover {
    transform: translateX(0.5rem);
}

.coluna-footer a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #CD9A06;
    bottom: 0rem;
    border-radius: 10rem;
    box-shadow: 2px 3px 8px #0000002e;
    opacity: 0;
    transition: 300ms;
    cursor: pointer;
    display: flex;
    justify-content: start;
    align-items: center;
}

.coluna-footer a:hover::before {
    width: 100%;
    opacity: 1;
}

.coluna-footer a {
    text-decoration: none;
    color: #4D3B06;
    font-size: 1rem;
    height: 125%;
    transition: 300ms ease-out;
    /* width: 100%; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0.5rem 0;
}

.coluna-footer-2 a {
    text-decoration: none;
    color: #4D3B06;
    font-size: 1rem;
    height: 125%;
    transition: 300ms ease-out;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0.5rem 0;
}

.coluna-footer li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: 300ms;
    height: 100%;
    flex-direction: column;
}

.coluna-footer-2 li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: 300ms;
    flex-direction: column;
}

.coluna-footer-2 span {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #4D3B06;
}

.coluna-footer-2 a svg {
    margin-right: 0.5rem;
}

.container-produto {
    width: 90%;
    display: flex;
    justify-content: center;
}

.box-text-produto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 78%;
    margin-right: 2%;
}

.box-text-produto h1 {
    font-size: 2.5rem;
    margin: 0 0 0.25rem 0;
    text-align: start;
    color: #4D3B06;
    width: 100%;
}

.slideshow {
    position: relative;
    width: 600px;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-self: center;
    border-radius: 10px;
    box-shadow: -7px 5px 15px #00000026;
    margin: 18px 0 0 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    animation: slide-animation 9s infinite;
}

@keyframes slide-animation {
    0% {
        opacity: 0;
    }

    33.33% {
        opacity: 1;
    }

    66.66% {
        opacity: 0;
    }
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 3s;
}

.slide:nth-child(3) {
    animation-delay: 6s;
}

.text-produto {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.text-produto img {
    width: 100%;
    height: 100%;
}

.text-produto p {
    width: 90%;
    text-align: justify;
    padding: 0 0 0 50px;
}

.box-text-sub {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
    margin: 35px 0;
}

.box-text-sub p {
    margin: 0.25rem 0;
}

.box-text-sub h2 {
    font-size: 1.5rem;
}

.menu-lateral h3 {
    font-size: 1.25rem;
    text-align: center;
    color: #4D3B06;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
}

.menu-lateral ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

.menu-lateral li {
    width: 100%;
}

.menu-lateral svg {}

.menu-lateral li a {
    text-decoration: none;
    color: #4D3B06;
    font-size: 1rem;
    font-weight: 550;
    transition: 300ms ease-out;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0;
}

.menu-lateral .btn-padrao {
    width: 85%;
    height: 2.5rem;
    box-shadow: -1px 7px 30px -8px #0000004a;
}

.menu-lateral {
    display: flex;
    flex-direction: column;
    border-bottom: 5px solid #CD9A06;
    border-top: 5px solid #CD9A06;
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0px 15px 35px -15px #00000026;
    overflow: hidden;
    margin-bottom: 2rem;
}

.box-info-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 15px 35px -15px #0000001a;
}

.box-produtos-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box-produtos-menu ul {
    /* border-top: 2px solid #CD9A06; */
    /* border-radius: 1rem; */
    overflow-y: scroll;
    max-height: 18rem;
}

.box-produtos-menu ul::-webkit-scrollbar {
    width: 6px;
    background: #39190000;
    border-radius: 10rem;
}

.box-produtos-menu ul::-webkit-scrollbar-thumb {
    border-radius: 10rem;
    background: #cd9a06
}

.box-produtos-menu li {
    display: flex;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #cd9a063b;
    align-items: center;
    justify-content: center;
}

.box-produtos-menu a {}

.box-menu-lateral {
    width: 25%;
}

.sc-carrossel-produtos {}

:root {
    --card-width: 200px;
    --card-height: 300px;
    --card-transition-duration: 800ms;
    --card-transition-easing: ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

button:focus {
    outline: none;
    border: none;
}

.app {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -5;
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.app__bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
    opacity: 0.8;
}

.app__bg__image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(var(--image-translate-offset, 0));
    width: 180%;
    height: 180%;
    transition: transform 1000ms ease, opacity 1000ms ease;
    overflow: hidden;
}

.app__bg__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app__bg__image.current--image {
    opacity: 1;
    --image-translate-offset: 0;
}

.app__bg__image.previous--image, .app__bg__image.next--image {
    opacity: 0;
}

.app__bg__image.previous--image {
    --image-translate-offset: -25%;
}

.app__bg__image.next--image {
    --image-translate-offset: 25%;
}

.cardList {
    position: absolute;
    width: calc(3 * var(--card-width));
    height: auto;
}

.cardList__btn {
    --btn-size: 35px;
    width: var(--btn-size);
    height: var(--btn-size);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.cardList__btn.btn--left {
    left: -5%;
}

.cardList__btn.btn--right {
    right: -5%;
}

.cardList__btn .icon {
    width: 100%;
    height: 100%;
}

.cardList__btn .icon svg {
    width: 100%;
    height: 100%;
}

.cardList .cards__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.card {
    --card-translateY-offset: 100vh;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(var(--card-translateX-offset)) translateY(var(--card-translateY-offset)) rotateY(var(--card-rotation-offset)) scale(var(--card-scale-offset));
    display: inline-block;
    width: var(--card-width);
    height: var(--card-height);
    transition: transform var(--card-transition-duration) var(--card-transition-easing);
    user-select: none;
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
    transition: opacity var(--card-transition-duration) var(--card-transition-easing);
    opacity: calc(1 - var(--opacity));
}

.card__image {
    position: relative;
    width: 100%;
    height: 100%;
}

.card__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card.current--card {
    --current-card-rotation-offset: 0;
    --card-translateX-offset: 0;
    --card-rotation-offset: var(--current-card-rotation-offset);
    --card-scale-offset: 1.2;
    --opacity: 0.8;
}

.card.previous--card {
    --card-translateX-offset: calc(-1 * var(--card-width) * 1.1);
    --card-rotation-offset: 25deg;
}

.card.next--card {
    --card-translateX-offset: calc(var(--card-width) * 1.1);
    --card-rotation-offset: -25deg;
}

.card.previous--card, .card.next--card {
    --card-scale-offset: 0.9;
    --opacity: 0.4;
}

.infoList {
    position: absolute;
    width: calc(3 * var(--card-width));
    height: var(--card-height);
    pointer-events: none;
}

.infoList .info__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.info {
    margin-bottom: calc(var(--card-height) / 8);
    margin-left: calc(var(--card-width) / 1.5);
    transform: translateZ(2rem);
    transition: transform var(--card-transition-duration) var(--card-transition-easing);
}

.info .text {
    position: relative;
    font-family: "Montserrat";
    font-size: calc(var(--card-width) * var(--text-size-offset, 0.2));
    white-space: nowrap;
    color: #fff;
    width: fit-content;
}

.info .name,
.info .location {
    text-transform: uppercase;
}

.info .location {
    font-weight: 800;
}

.info .location {
    --mg-left: 40px;
    --text-size-offset: 0.12;
    font-weight: 600;
    margin-left: var(--mg-left);
    margin-bottom: calc(var(--mg-left) / 2);
    padding-bottom: 0.8rem;
}

.info .location::before, .info .location::after {
    content: "";
    position: absolute;
    background: #fff;
    left: 0%;
    transform: translate(calc(-1 * var(--mg-left)), -50%);
}

.info .location::before {
    top: 50%;
    width: 20px;
    height: 5px;
}

.info .location::after {
    bottom: 0;
    width: 60px;
    height: 2px;
}

.info .description {
    --text-size-offset: 0.065;
    font-weight: 500;
}

.info.current--info {
    opacity: 1;
    display: block;
}

.info.previous--info, .info.next--info {
    opacity: 0;
    display: none;
}

.loading__wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 200;
}

.loading__wrapper .loader--text {
    color: #fff;
    font-family: "Montserrat";
    font-weight: 500;
    margin-bottom: 1.4rem;
}

.loading__wrapper .loader {
    position: relative;
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
}

.loading__wrapper .loader span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: red;
    transform: scaleX(0);
    transform-origin: left;
}

@media only screen and (min-width: 800px) {
    :root {
        --card-width: 250px;
        --card-height: 400px;
    }
}

.nav-mobile {
    display: none;
}

.support {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    display: flex;
}

.support a {
    margin: 0 10px;
    color: #fff;
    font-size: 1.8rem;
    backface-visibility: hidden;
    transition: all 150ms ease;
}

.support a:hover {
    transform: scale(1.1);
}

#contato-link {
    height: 4rem;
}

[id] {
    scroll-margin-top: 75px;
}

.box-text-sub h3 {}

.box-text-sub ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.box-text-sub li {
    /* list-style: disc; */
    color: #4D3B06;
    font-size: 0.9rem;
    list-style: disc;
}

.box-espec {
    display: flex;
    gap: 35px;
    margin: 15px 0 0 0;
}

.box-espec span {
    font-size: 1.025rem;
    color: #4D3B06;
    font-weight: 500;
    border-bottom: 1px solid #4d3b0654;
    padding: 0 0 10px 0;
}

.box-espec{
    display: none;
}

@media (max-width: 485px) {
    .nav-desktop {
        top: 0px;
        display: none;
    }

    .container-header {
        display: none;
    }

    .section-slide h1 {
        font-size: 26px;
    }

    .section-slide {
        height: 27rem;
        overflow: hidden;
        width: 100%;
        margin-top: 61px;
    }

    .bg-slide {
        margin-top: 57px;
    }

    .section-slide img {
        width: 100%;
        height: 45rem;
        object-fit: cover;
    }

    .conteudo-slide a {
        width: 100%;
    }

    .section-slide p {
        text-align: center;
    }

    .box-cards-sc1 {
        flex-direction: column;
        gap: 20px;
    }

    .cards-sc1 {
        width: 80%;
    }

    .sc-100 {}

    .cards-sc1 svg {
        width: 3rem;
    }

    h2 {
        font-size: 22px;
    }

    .cards-sc1 h2 {
        font-size: 22px;
    }

    .container-padrao {
        flex-direction: column-reverse;
    }

    .text-sobre-home {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .img-sobre-home {
        width: 100%;
    }

    .img-sobre-home img {
        max-width: 250px;
        max-height: 250px;
    }

    .btn-padrao {
        width: 100%;
    }

    #call-action {
        border-radius: 0px;
    }

    .container-call-action {}

    .box-call-action {
        text-align: center;
    }

    .box-call-action p {
        text-align: center;
    }

    .box-call-action h4 {
        font-size: 20px;
        text-align: center;
    }

    .btn-padrao {
        font-size: 1rem;
    }

    .box-contato-home {
        flex-direction: column;
        align-items: center;
    }

    .box-inputs-contato-home {
        width: 90%;
        padding: 2rem 0;
    }

    #contato-link {
        height: 0rem;
    }

    .box-infos-contato {
        text-align: center;
    }

    .box-infos-contato li {
        text-align: center;
        align-items: center;
        width: 90%;
        border-radius: 0px;
        border-width: 1px;
    }

    .box-infos-contato a {
        font-size: 18px;
        text-align: center;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    li {}

    .coluna-footer {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .coluna-footer li {
        align-items: center;
        justify-content: center;

    }

    .coluna-footer-2 li {
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .coluna-footer-2 a {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .container-footer {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        padding: 1rem 0;
    }

    .coluna-footer-logo {
        width: 100%;
        align-items: center;
    }

    .coluna-footer-logo {}

    .box-colunas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .text-carrosel {
        width: 100%;
    }

    .box-cards-carrossel {
        display: flex;
        flex-direction: column;

    }

    .card-carrossel {
        width: 100%;
    }

    .previa-produto img {
        width: 100% !important;
        height: 5rem !important;
        object-fit: cover;
    }

    .previa-produto {
        width: 100%;
        padding: 0.25rem 0;
    }

    .outros-produtos {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 1rem;
        gap: 15px;
    }

    .card-carrossel img {
        width: 16rem;
        max-height: 18rem;
    }

    .carrossel-home {
        margin-top: 1rem;
    }

    .box-inputs-contato-home input {
        width: calc(100% - 1.5rem);
    }

    .box-inputs-contato-home textarea {
        width: calc(100% - 1.75rem);
    }

    .nav-mobile {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        border-bottom-right-radius: 0.85rem;
        border-bottom-left-radius: 0.85rem;
        border-bottom: 2px solid #CD9A06;
        box-shadow: 0px 20px 32px -15px #281e0059;
        z-index: 100;
        position: fixed;
        background: white;
        top: 0px;
    }

    .box-logo {
        width: 50%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .box-logo img {
        width: 100px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        object-fit: cover;
    }

    .menu-mobile {
        width: 50%;
        display: flex;
        justify-content: end;
        align-items: center;
    }

    #button_menu_abrir {
        border: 0;
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px 0px;
        align-items: flex-end;
        z-index: 11;
        cursor: pointer;
    }

    .menu-barra-topo {
        width: 50%;
        height: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(77, 59, 6);
        border-radius: 10rem;
    }

    .menu-barra-meio {
        width: 50%;
        height: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(77, 59, 6);
        border-radius: 10rem;
    }

    .menu-barra-baixo {
        width: 50%;
        height: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(77, 59, 6);
        border-radius: 10rem;
    }

    #menu {}

    .links {
        display: flex;
        position: absolute;
        align-items: flex-start;
        background: #ffffff;
        height: 100vh;
        top: 0px;
        right: -9%;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 60px;
        border-left: 2px solid #CD9A06;
        box-shadow: -10px 8px 30px #0000004d;
        justify-content: center;
        transition: 500ms;
        z-index: 10;
        animation: menu-disable 500ms ease forwards;
    }

    #links_mobile {
        margin: 0;
        gap: 15px;
        display: flex;
        flex-direction: column;
        padding: 150px 0;
        opacity: 1;
    }

    #links_mobile li {
        margin: 0 1rem;
        padding: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: 325ms ease;
        -o-transition: 325ms ease;
        transition: 325ms ease;
    }

    #links_mobile li a {
        color: rgb(77, 59, 6);
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-transform: uppercase;
        gap: 5px;
        text-decoration: none;
        padding: 1rem;
        transition: 300ms ease-out;
    }

    .section-carrossel {
        margin: 4rem 0 2rem 0;
    }

    .mini-svg {
        width: 1.25rem !important;
    }

    .coluna-footer a {
        font-size: 18px;
    }

    .coluna-footer-2 a {
        font-size: 18px;
    }

    .title-footer {
        font-size: 1.55rem;
    }

    .coluna-footer-logo img {
        width: 150px;
    }

    .ewa-footer h6 {
        font-size: 16px;
    }

    .ewa-footer a {
        text-decoration: none;
        color: #CD9A06;
        font-size: 1.15rem;
    }

    @keyframes menu-disable {
        0% {
          width: 75%;
          opacity: 1;
        }
    
        100% {
          opacity: 0;
          width: 0%;
        }
      }
    
      .nav-mobile .links.active::before {
        display: block;
      }
    
      .nav-mobile .links.active {
        display: flex;
        animation: menu-active 500ms ease forwards;
      }
    
      @keyframes menu-active {
        0% {
          opacity: 0;
          transform: translateX(100%);
          width: 75%;
        }
    
        100% {
          border-top-right-radius: 0px;
          border-bottom-right-radius: 0px;
          opacity: 1;
          width: 75%;
          transform: translateX(0%);
        }
      }
      .nav-mobile .links.active ul {
        display: flex;
        animation: menu-active-ul 500ms ease forwards;
      }
    
      @keyframes menu-active-ul {
        0% {
          opacity: 0;
        }
    
        100% {
          opacity: 1;
        }
      }
}



.certificados {
    filter: none !important;
    width: 365px !important;
    height: auto !important;
}