:root {
    --cor-1: #960c10;
    --cor-2: #ff6e26;
    --cor-3: #ff391c;
    --cor-4: #6f4b25;
    --cor-5: #f8f8f8;
    --cor-6: #a6a6a6;
    --cor-7: #AD181B;
    --cor-8: #E59A63;
    --cor-9: #FAECE0;

    --mulish: "Mulish", sans-serif;
    --bree: "Bree Serif", serif;
}
a,
a:hover {
    text-decoration: none;
}
body {
    --bs-body-font-family: "Mulish", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial,
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    color: white;
}

.site {
    overflow-x: hidden;
}

h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--bree);
}
h2.cor-1 {
    color: var(--cor-1);
}
h2.cor-2 {
    color: var(--cor-2);
}
h2.cor-3 {
    color: var(--cor-3);
}
h2.white {
    color: white;
}
h3 {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--bree);
}

.botao {
    border: none;
    font-size: 27.4px;
    font-family: var(--bree);
    padding: 7px 15px;
    display: inline-block;
}
.botao.cor-3 {
    color: white;
    background-color: var(--cor-3);
}
.botao.cor-4 {
    color: white;
    background-color: var(--cor-4);
}

.link {
    font-size: 27.4px;
    font-family: var(--bree);
    padding-bottom: 7px;
    border-bottom: 2px solid transparent;
}
.link.cor-3 {
    color: var(--cor-3);
    border-bottom-color: var(--cor-3);
}

.texto {
    font-size: 18px;
    font-family: var(--mulish);
    line-height: 30px;
}
.texto.white {
    color: white;
}
.texto.cor-1 {
    color: var(--cor-1);
}
.texto.cor-4 {
    color: var(--cor-4);
}

.bread-crumb, .bread-crumb a {
    font-size: 14px;
    color: var(--cor-1);
}

/*HEADER*/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    background-color: transparent;
    transition: 0.3s;
    background-image: linear-gradient(to bottom, black, transparent);
}
header.active {
    background-color: var(--cor-1);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.23);
    background-image: none;
}
#logo-cacem {
    height: 72px;
    margin: 0;
    padding: 5px 0;
}
/*MENU*/
#menu-principal {
    margin-bottom: 0;
    gap: 40px;
    justify-content: flex-end;
}
#menu-principal li {
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#menu-principal li a {
    font-size: 18px;
    color: white;
}
#menu-principal li a:hover,
#menu-principal li a.active {
    color: var(--cor-3);
}

/*BANNER 1920x695 */
#banner-principal .swiper-slide {
    position: relative;
    height: 695px;
    overflow-x: hidden;
}
#banner-principal .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 50%;
    transform: translateX(-50%);
}
#banner-principal .swiper-pagination-bullet {
    border-radius: 0;
    width: 130px;
    height: 5px;
    background: var(--cor-1);
    opacity: 1;
    margin: 0 1px;
}
#banner-principal .swiper-pagination-bullet-active {
    background: var(--cor-2);
}
#banner-principal .objeto {
    left: 0;
    bottom: -170px;
    z-index: 2;
}
#banner-principal .objeto img {
    max-width: 100%;
}

/*PRODUTOS HOME*/
#produtos-home {
    padding-top: 90px;
    position: relative;
    z-index: 2;
}
#produtos-home .imagem-titulo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
#produtos-home .swiper-wrapper {
    height: 540px;
}
#produtos-home .produto-slide {
    width: 25%;
    height: 415px;
    font-family: var(--bree);
    text-align: center;
    overflow: visible;
    transition: 0.2s;
}
#produtos-home .produto-slide span {
    display: block;
}

#produtos-home .box-produto {
    overflow: hidden;
    transition: 0.3s;
    height: 422px;
}
#produtos-home .box-produto .imagem {
    width: 100%;
    height: 285px;
    /* overflow: hidden; */
    position: relative;
}
#produtos-home .box-produto .imagem img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.1))
        drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
    transition: 0.3s;
}
#produtos-home .box-produto .imagem small {
  position: absolute;
  z-index: 2;
  top: 60%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: 23px;
  font-weight: 700;
  color: var(--cor-1);
  display: inline-block;
  border: 2px solid var(--cor-2);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#produtos-home .box-produto .nome {
    font-size: 20px;
    color: var(--cor-1);
    transition: 0.3s;
    display: block;
    min-height: 34px;

}

#produtos-home .box-produto .categoria {
    font-size: 15px;
    color: var(--cor-1);
    margin-bottom: 20px;
    transition: 0.3s;
}
#produtos-home .box-produto .botao {
    opacity: 0;
    transition: 0.3s;
    width: 80%;
    margin: 0 auto;
    font-size: 22px;
    line-height: 20px;
}
#produtos-home a:hover .box-produto .botao {
    opacity: 1;
}
#produtos-home .produto-slide:hover {
    height: 540px;
}
#produtos-home .box-produto:hover {
    transform: scale(1.3) translateY(40px);
}
#produtos-home .box-produto:hover .nome {
    color: var(--cor-3);
}
#produtos-home .box-produto:hover .categoria {
    color: var(--cor-3);
}
#produtos-home .box-produto:hover .imagem img {
    filter: drop-shadow(20px 30px 20px rgba(0, 0, 0, 0.1))
        drop-shadow(8px 16px 8px rgba(0, 0, 0, 0.4));
}

#produtos-home .objeto {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#produtos-home .swiper-button-next,
.swiper-button-prev {
    color: var(--cor-3);
}

#slide-produtos {
    margin-top: 90px;
    margin-bottom: 40px;
}

/*EFEITO 1*/
.efeito-1 {
    height: 150px;
}
.efeito-1 .montanhas {
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.efeito-1 .cana {
    right: 0;
    top: 50%;
}

/*CONHEÇA*/
#conheca-a-cacem {
    background-color: var(--cor-1);
}
#conheca-a-cacem .grid {
    display: flex;
    justify-content: center;
}
#conheca-a-cacem .grid .foto {
    height: 370px;
}
#conheca-a-cacem .grid .foto img {
    max-width: 100%;
    height: 370px;
    object-fit: cover;
}
#conheca-a-cacem .objeto-1 {
    left: -125px;
    bottom: -30px;
    z-index: 2;
}
#conheca-a-cacem .objeto-2 {
    left: 70px;
    top: -30px;
    z-index: 2;
}

/*ONDE*/
#onde {
    padding-top: 125px;
    z-index: 2;
    position: relative;
}
#onde .imagem img {
    max-width: 100%;
    position: relative;
    filter: drop-shadow(20px 20px 20px rgba(0, 0, 0, 0.23));
}
#onde .seta {
    top: -100px;
    left: 50%;
}
#onde .imagem-texto {
    top: -115px;
    left: 65%;
}

/*EFEITO*/
.efeito-2 {
    height: 467px;
}
.efeito-2 .imagem {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

/*BANNER CENTRAL*/
#banner-central {
    padding-bottom: 100px;
}
#banner-central .imagem img {
    max-width: 100%;
    margin: 0 auto;
}

/*CONTATO*/
#form-contato {
    background-color: var(--cor-1);
    padding-top: 15px;
}
#form-contato input {
    display: block;
    width: 100%;
    height: 75px;
    line-height: 75px;
    font-size: 18px;
    color: white;
    background-color: var(--cor-1);
    border: none;
    border-bottom: 2px solid var(--cor-3);
}
#form-contato textarea {
    display: block;
    width: 100%;
    height: 100px;
    padding: 10px 0;
    line-height: 22px;
    font-size: 18px;
    color: white;
    background-color: var(--cor-1);
    border: none;
    border-bottom: 2px solid var(--cor-3);
}

/*CONTATO*/
footer {
    background-color: var(--cor-1);
    padding-top: 15px;
    padding: 70px 0px 20px 0;
}
footer .sociais {
    display: flex;
    margin-bottom: 0;
    gap: 50px;
}
footer .sociais img {
    margin-right: 20px;
}
footer .sociais a {
    color: white;
}
footer .logo-rodape {
    text-align: right;
}
footer .logo-rodape img {
    height: 170px;
}

/*FORM BUSCA*/
#busca-form {
    z-index: 2;
    padding-top: 65px;
}
#busca-form input {
    width: 100%;
    height: 60px;
    border: none;
    background-color: var(--cor-5);
    color: var(--cor-6);
    padding: 15px 30px;
}
#busca-form button {
    width: 60px;
    height: 60px;
    right: 0;
    top: 0;
    background-color: transparent;
    border: none;
    line-height: 60px;
    text-align: center;
}

/*PAGINAÇÃO*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-bottom: 20px;
}
.nav-links {
    width: 100%;
    color: var(--cor-1);
    text-align: center;
    height: 40px;
}
.nav-links a {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 3px;
    color: var(--cor-2);
}
.nav-links a:hover {
    background-color: var(--cor-5);
}
.nav-links span.current {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 3px;
    background: var(--cor-1);
    color: var(--cor-2);
    border-radius: 4px;
}

/**/
.scroll-wrapper {
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: 350px;
}

#scroll-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
  z-index: 7;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  padding-right: 10px;
}

.ssb_down {
  background-color: var(--cor-8);
  bottom:0;
  cursor:pointer;
  position:absolute;
  right:0;
  border-radius: 10px;
}

.ssb_sb {
  background-color: var(--cor-8);
  cursor:pointer;
  position:absolute;
  right:0;
  border-radius: 10px;
  cursor: pointer;
  z-index: 8;
}

.ssb_sb_down {
  background-color: var(--cor-8);
}

.ssb_sb_over {
  background-color: var(--cor-8);
}

.ssb_st {
  background-color: var(--cor-9);
  cursor:pointer;
  height:100%;
  position:absolute;
  right:0;
  top:0;
  border-radius: 10px;
}

.ssb_up {
  background-color: var(--cor-8);
  cursor:pointer;
  position:absolute;
  right:0;
  top:0;
  border-radius: 10px;
}

.scroll-parent {
  height:100%;
  padding:10px;
  position:relative;
}

/**/


/*-xl*/
@media (max-width: 1399.98px) {
}

/*-lg*/
@media (max-width: 1199.98px) {
    /*BANNER*/
    #banner-principal .swiper-slide {
        height: 500px;
    }
    #banner-principal .swiper-slide img {
        height: 500px;
    }
    #banner-principal .objeto {
        bottom: -135px;
        width: 280px;
    }
}

/*-md*/
@media (max-width: 991.98px) {
    /*BANNER*/
    #banner-principal .swiper-slide {
        height: 450px;
    }
    #banner-principal .swiper-slide img {
        height: 450px;
    }
    #banner-principal .objeto {
        bottom: -95px;
        width: 245px;
    }

    /*PRODUTOS*/
    #produtos-home .produto-slide {
        height: 445px;
    }

    /*CONHEÇA*/
    #conheca-a-cacem .grid .foto {
        height: 270px;
    }
    #conheca-a-cacem .grid .foto img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*ONDE*/
    #onde .imagem-texto {
        top: 0;
        left: 0;
    }
    #onde .seta {
        top: 145px;
        left: 135px;
        transform: rotate(-85deg);
    }

    /*FORM*/
    #form-contato .area-botao {
        text-align: center;
    }

    /*FOOTER*/
    footer {
        text-align: center;
    }
}

/*-sm*/
@media (max-width: 767.98px) {
    html.active,
    body.active {
        overflow-y: hidden;
    }

    /*HEADER*/
    header {
        padding: 10px 0;
    }
    header h1 {
        position: relative;
        z-index: 5;
    }
    /*MENU*/
    #menu-principal {
        position: fixed;
        top: 0;
        left: -101vw;
        z-index: 3;
        background-color: var(--cor-1);
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
    }
    #menu-principal li {
        height: 40px;
    }
    #menu-principal.active {
        left: 0;
    }
    #bt-menu {
        right: 10px;
        top: 7px;
        background-color: #ff6e26;
        border: none;
        width: 40px;
        height: 40px;
        z-index: 5;
        font-size: 26px;
    }
    #bt-menu I {
        color: white;
    }

    #bt-menu .bi-x-lg {
        display: none;
    }
    #bt-menu.active .bi-x-lg {
        display: inline;
    }
    #bt-menu.active .bi-list {
        display: none;
    }

    /*BANNER*/
    #banner-principal .swiper-slide {
        height: 330px;
    }
    #banner-principal .swiper-slide img {
        height: 330px;
    }
    #banner-principal .objeto {
        bottom: -75px;
        width: 180px;
    }

    /*PRODUTOS*/
    #produtos-home .produto-wrapper {
        height: auto;
    }
    #produtos-home .produto-slide {
        height: auto;
    }
    #produtos-home .box-produto {
        height: 570px;
    }
    #produtos-home .box-produto .imagem {
        height: 430px;
    }
    #produtos-home .box-produto .botao {
        opacity: 1;
        width: 80%;
        margin: 0 auto;
    }

    /*FOOTER*/
    footer .logo-rodape {
        text-align: center;
    }

    .scroll-wrapper {
        height: auto;
    }
    #scroll-container {
        height: auto;
        position: relative;
    }
}

/*-xs*/
@media (max-width: 575.98px) {
    /*BANNER*/
    #banner-principal .swiper-slide {
        height: 215px;
    }
    #banner-principal .swiper-slide img {
        height: 215px;
    }
    #banner-principal .objeto {
        display: none;
    }

    /*CONHEÇA*/
    #conheca-a-cacem .grid {
        flex-wrap: wrap;
    }
    #conheca-a-cacem .grid .foto {
        width: 50%;
    }

    /*ONDE*/
    #onde .imagem-texto {
        top: -40px;
    }
    #onde .imagem-texto img {
        width: 135px;
    }
    #onde .seta img {
        width: 40px;
    }
    #onde .seta {
        top: 53px;
        left: -3px;
        transform: rotate(-45deg);
    }

    /*EFEITO 2*/
    .efeito-2 {
        height: 80px;
        margin-bottom: 50px;
    }
    .efeito-2 .imagem {
        width: 100%;
    }
    .efeito-2 .imagem img {
        width: 100%;
    }

    /*FORM BUSCA*/
    #busca-form {
        z-index: 2;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    #busca-form input {
        padding: 15px 15px;
        font-size: 12px;
    }

    #produtos-home .produto-slide:hover {
        height: 415px;
    }
    #produtos-home .box-produto:hover {
        transform: none;
    }
    #produtos-home .box-produto:hover .nome {
        color: var(--cor-1);
    }
    #produtos-home .box-produto:hover .categoria {
        color: var(--cor-1);
    }
    #produtos-home .box-produto:hover .imagem img {
        filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.1))
        drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
    }
}

/*LGPD*/
#lgpd
{
    position: fixed;
    bottom: -10vw;
    width: 100%;
    z-index: 99;
    transition: 0.4s;
}
#lgpd.active
{
    bottom: 0vw;
}
#aceiteLgpd {    
    background-color: var(--cor-4);
    color: #fff;    
    position: relative;
    margin: auto;
    font-size: 14px;
    padding: 20px;    
    display: flex;
    flex-direction: row;    
}
#aceiteLgpd div{line-height: 150%;}

#aceiteLgpd a{
    color: #fff;
    font-weight: bold;
}

#aceiteLgpd button{
    color: #505050;
    background: #FFF;
    font-weight: 400;
    width: 200px;
    cursor: pointer;
    border: none;
    display: inline-block;
    padding: 10px;
    line-height: normal;
    text-align: center;
    border: 1px solid;
    font-size: 14px;    
}

#politicaPrivacidade {
	height: auto;
	text-align: left;
}

#politicaPrivacidade h2 {
	font-size: 24px;
	font-weight: 400;
	text-align: center;
	letter-spacing: 1px;
	margin: 50px 0;
}

#politicaPrivacidade h3 {
	font-size: 20px;
	font-weight: bold;
}

#politicaPrivacidade p {
	font-size: 14px;
	line-height: 200%;
	margin:20px 0;
}
#politicaPrivacidade p a{
	font-size: 14px;
	color: #505050;
}

#politicaPrivacidade ul li{
	font-size: 14px;
	margin: 10px 0 10px 20px;
	list-style:disc;
}

@media screen and (max-width: 575px) {

    #aceiteLgpd {            
      
        display: flex;
        flex-direction: column;    
    }
}