
@font-face {
    font-family: lora;
    src: url(../fonts/Lora/Lora-VariableFont_wght.ttf);
}
@font-face {
    font-family: montserrat;
    src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}   
:root{
    --colorPrimary: #bf925b;
    --colorSecundary: #f0f8ff;
    --colorPrimaryText: black;
    --colorSecundaryText: rgb(113, 113, 113);
    
    --colorFundoSection: rgb(231, 231, 231);
    --fontsizePrimaryText: 2rem;
    --fontsizeSecundaryText: 1rem;

    --fontsizeCardsTittle: 1.5rem;
    --fontsizeCardsIcons: 3rem;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: montserrat, sans-serif;
    color: #fff;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    outline: none;
}
.hidden{
    opacity: 0;
    filter: blur(5px);
    transition: all ease-in-out .5s;
}

.show{
    opacity: 1;
    filter: blur(0px);
    transition: all ease-in-out .5s;
}
h1,h2,h3,h4,h5,h6,p,span{
    pointer-events: none;
}
span a{
    pointer-events: stroke;
}

body{
    background-color: rgb(0, 0, 0);
    width: 100%;
}

/*menu*/
header{
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
section{
    background-color: var(--colorFundoSection);
    display: flex;
    justify-content: center;
    align-items: center;
}

section:nth-child(odd){
    background-color: #fff;
}
.top{
    background-color: transparent;
    height: 7rem;
    display: block;
    transition: all .3s ease-in-out;
}
.scroll{
    background: rgba(79, 79, 79, 0.35);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur( 13.5px );
    -webkit-backdrop-filter: blur( 13.5px );
    height: 5rem;
    transition: all .3s ease-in-out;
}

header .container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 1380px;
    padding: 0 6rem;
    height: 100%;
    justify-self: center;
}    


.ativo::after{
    width: 100%;
    opacity: 1;
}
.logo{
    height:100%;
    width: 8rem;
    align-self: center;
    align-items: center;
    display: flex;
    justify-content: center;
}
.container .logo img {
    object-fit: cover;
    height: 100%;
}

header .container nav{
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin: 0 0 0 3rem;
}    
nav a{
    color: #fff;
    font-weight: 700;
    padding: 0.9rem;
    position: relative;
    text-transform: uppercase;
}    
nav a::after{
    content: "";
    height: 4px;
    width: 0%;
    background-color: var(--colorPrimary);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .2s ease-in-out;
    opacity: 0;
}    

nav a:hover::after{
    width: 100%;
    opacity: 1;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}    

nav button{
    background-color: #61CE70;
    padding: 1rem;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: all .2s ease-in-out;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
nav button:hover{
    cursor: pointer;
    background-color: #4eaf5b;
}

nav button span{
    font-size: var(--fontsizeSecundaryText);
    letter-spacing: 1px;
}
nav button i{
    font-size: 1.5rem;
    color: #fff;
}
.menu-btn{
    display: none;
}
.sidebar{
    display: none;
}

.section1{
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}
.section1 .imagemFundo{
    width: 100%;
    height: 120svh;
    overflow: hidden;
    position: relative;
    max-height: 1080px;

}

.section1 .imagemFundo .foto{
    background-image: url(../images/frente-predio-agape.jpg);
    height: 100%;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.section1 .imagemFundo .black{
    content: "";
    position: absolute;
    background-color: #000000a7;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

}

.section1 .container{
    position: absolute;
    top: auto;
    left: auto;
    /* background-color: rgb(49, 210, 210); */
    height: 80%;
    width: 100%;
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section1 .section1_container{
    /* background-color: #61CE70; */
    height:70%;
    width: 90%;
    max-width: 1380px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
    margin-left: 1rem;
}

.section1 .section1_container .text{
    /* background-color: #1e170e; */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section1 .section1_container .text .line{
    display: inline;
    background-color: var(--colorPrimary);
    width: 20px;
    content: "";
    height: 2px;
    border-radius: 30%;
}

.section1 .section1_container .tittle{
    max-width: 500px;
}
.section1 .section1_container .tittle h1{
    text-transform: uppercase;
    font-size: 3rem;
}
.section1 .section1_container .tittle span {
    position: relative;
     display: inline-block;
    color: var(--colorPrimary);
    z-index: 1; /* Garante que o texto fique acima */
}


.section1 .section1_container .tittle span::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 60%;
    background: #fff; /* pega o fundo do container */
    z-index: -1; /* Fica atrás do texto */
    border-radius: 4px;
}
.section1 .section1_container .tittle span::before{
    filter: blur(30px);
}
.section1 .section1_container button,
.funciona  button,
.duvida button{
    background-color: darkgray;
    border: none;
    padding:1rem;
    max-width: 560px;
    min-width: 320px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out .3s;
    cursor: pointer;
    max-height: 60px;
}

.section1 .section1_container button:hover{
    transform: scale(1.1);
    box-shadow: 0px 5px 1px 1px rgba(0, 0, 0, 0.128);
}

.section1_container button i,
.funciona button i,
.duvida button i{
    font-size: 1.4rem;
}
.section1_container button span,
.funciona button span,
.duvida button span{
    font-size: 1.2rem;
    margin-left: .5rem;
    font-weight: 500;
}

/*Sliders antes e depois*/

.slider-section{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.slider-section .content{
    margin: 0 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 2rem;
    transform: translateY(-20%);
    width: fit-content;
    padding: 0 2rem;
}
.slider-section .content .sliders{
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
}
.sliders .container-slider{
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    --position: 50%;
}

.image-container{
    max-width: 25rem;
    max-height: 25rem;
    aspect-ratio: 9/16;
    position: relative;
}
.sliders .image-container .slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    display: block;
    /* max-width: 100%; */
}

.sliders .image-container .image-before{
    position: absolute;
    inset: 0;
    width: var(--position);
}

.sliders .container-slider .slider{
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.slider:focus-visible ~ .slider-button{
    outline: 5px solid black;
    outline-offset: 3px;
    
}
.sliders .container-slider .slider-line{
    position: absolute;
    inset: 0;
    width: .2rem;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;

}

.sliders .container-slider .slider-button{
    position: absolute;
    z-index: 11;
    background-color: #ffffff;
    padding: .5rem;
    border-radius: 100vw;
    color: black;
    display: grid;
    align-content: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 100;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.488);
}
.slider-button svg{
    color: #000;
    width: 1.5rem;
    height: 1.5rem;

}

.slider-section .content .sliders-text{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.slider-section .content .sliders-text h3,p,b{
    color: #1c1c1c;
}
.sliders-text h3{
    font-size: var(--fontsizePrimaryText);
}

/*Cards*/

.tecnicas{
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
}
.tecnicas .click{
    position: absolute;
}
.tecnicas .tecnicas-texts{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex: 0 0 20%;
}

.tecnicas .tecnicas-texts span{
    color: #000;
    font-weight: 600;
}
.tecnicas .tecnicas-texts h3,
.funciona .funciona-texts h3,
.faq .funciona-texts h3,
.duvida .duvida_text h3,
.produtos .produtos-text h3{
    color: var(--colorPrimaryText);
    text-transform: uppercase;
    font-size: clamp(.2rem, 5vw, var(--fontsizePrimaryText));
}
.tecnicas .tecnicas-texts p,
.funciona .funciona-texts p{
    font-size: var(--fontsizeSecundaryText);
}   

.tecnicas-cards{
        display: grid;
        width: 100%;
        flex: 1;
        grid-template-columns: repeat(2,1fr); 
        row-gap: 2rem;
        column-gap: 1rem;
        padding: 1rem;
        box-sizing: border-box;
        max-width: 1360px;
        max-height: 750px;
        position: relative;
    }

.tecnicas .click {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.tecnicas .click span {
  font-weight: 700;
  letter-spacing:1px;
  font-size: 1rem;
  color: var(--colorPrimary);
  display: inline-block; 
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.card{
    width: 100%;
}
.card:hover .card-inner{
    transform: rotateY(180deg);
}
.card-inner{
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
}
.front,.back,.front-funciona,.back-funciona{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: absolute;
    backface-visibility: hidden;
    
}
.card .card-inner .front{
    justify-content: end;
    overflow: hidden;
}

.card-inner .front.queratina{
    background-image: url(../images/tecnica-queratina.jpg);
    height: 100%;
    background-position: center;
    background-size: cover;
}

.card-inner .front.suico{
    background-image: url(../images/tecnica-suica.jpg);
    height: 100%;
    background-position: center;
    background-size: cover;
}

.card-inner .front.adesiva{
    background-image: url(../images/tecnica-adesivo.jpg);
    height: 100%;
    background-position: center;
    background-size: cover;
}
.card-inner .front.mista{
    /* background-image: url(src/images/Tadesivo.png); */
    background-color: #323232;
    height: 100%;
    background-position: center;
    background-size: cover;
}
.front .card-icon{ 
    background-color: rgb(153, 153, 153);
    width: 25%;
    max-width: 95px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .card:nth-child(3) .card-icon,
.card:nth-child(4) .card-icon,
.card:nth-child(5) .card-icon {
  width: 40%;
} */

.front .card-icon i{
    font-size: var(--fontsizeCardsIcons);
    max-width: 100%;
}

.tecnicas-cards .card-inner span{
    font-weight: 600;
}
.back{
    transform: rotateY(180deg);
    background-color: var(--colorPrimary);
    transition: all ease-in-out .2s;
    width: 100%;
}
.back h4{
    color: #fff;
}
.card-inner .back,.front h4 {
    color: white;
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    text-transform: uppercase;
    text-align: center;
}
.card-inner .back h4{
    font-size: clamp(.8rem, 2vw, 1.5rem);
}
.back p{
    color: rgb(231, 231, 231);
    font-size: clamp(.5rem, 1.5vw,1rem);
}
/* Produtos */

.produtos{
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.produtos .produtos-text{
    display: flex;
    height: 20%;
}

.produtos .produtos_content{
    height: 80%;
    max-width: 1080px;
    display: grid;
    grid-template: repeat(1,1fr) / repeat(1, 1fr);
    row-gap: 1rem;
    column-gap: 1rem;
    box-sizing: border-box;
}

.produtos .produtos_content .produtos_image{
    grid-column: 6/8;
    width: 100%;
    height: 100%;
    align-self: center;
    max-width: 100%;
    max-width: 100%;
    /* background-color: #4eaf5b; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* .produtos .produtos_content .produtos_image.inverte{
        grid-column:1/3;
} */
.produtos .produtos_content .produtos_image .image-cabelo,
.produtos .produtos_content .produtos_image .image-produto{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.produtos .produtos_content .produtos_image .image-cabelo img,
.produtos .produtos_content .produtos_image .image-produto img{
    object-fit: cover;
    object-position: center;
    width: 80%;
    height: 80%;
    animation: float 4.2s infinite;
}

@keyframes float {
    0%,100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-25px);
    }  

}
.produtos .produtos_content .produto_card .produto_card-image{
   width: 100%;
   max-width: 100%;
}

.produto_card-image img{
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
}
.produtos .produtos_content .produtos_slider1{
    grid-column: 1;
    grid-row:1;
    /* background-color: rgba(255, 0, 0, 0.28); */
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 1.2rem;
    overflow: hidden;
    position: relative;
}
.produtos .produtos_content .produtos_slider2{
    grid-column: 1;
    grid-row: 1;
    /* background-color: rgba(225, 255, 0, 0.316); */
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 1.2rem;
    overflow: hidden;
    position: relative;
}

.produtos .produtos_content .produto_slider_cards{
    display: flex;
    height: 100%;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;  /* ajuste aqui */
    padding: 1rem;
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
    /* background-color: #323232; */
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.produtos .produtos_content .fundo{
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    box-shadow: inset 5px 0px 10px 10px white,
    inset -5px 0px 10px 10px white;
    pointer-events: none;
}
.produtos .produtos_content .produto_card {
    flex: 0 0 calc((100% - 2rem) / 3); /* Exatamente 3 cards com gap de 1rem entre eles */
    max-width: calc((100% - 2rem) / 3);
    box-sizing: border-box;
    background-color: whitesmoke;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease-in-out;
    justify-content: space-between;
}
.produtos .produtos_content .produto_card .produto_card-infos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .6rem;
    gap: .7rem;
}

.produto_card .produto_card-infos h4{
    color: #1c1c1c;
    text-align: center;
    text-transform: capitalize;
}
.produto_card .produto_card-infos .produto_card_infos-prices{
    display: flex;
    gap: .5rem;
}
.produto_card .produto_card-infos .produto_card_infos-prices .original{
    color: darkgray;
    text-decoration: line-through;
    font-weight: 500;
}
.produto_card .produto_card-infos .produto_card_infos-prices .desconto{
    color: #1c1c1c;
    font-weight: 700;
    text-decoration: underline;
}

.produto_card .produto_card-infos button {
    width: 90%;
    padding: .5rem 1rem;
    border-radius: 16px;
    background-color: #61CE70;
    border: 1px solid rgba(0, 0, 0, 0.374);
    font-weight: 500;
    font-size: 1rem;
    transition: transform .3s ease-in-out;
    cursor: pointer;
    z-index: 2;
}
.produto_card .produto_card-infos button:hover{
    transform: scale(1.1);
}

.produtos .produtos_content .Next_Arrow,
.produtos .produtos_content .Return_Arrow{
    padding: 1rem;
    aspect-ratio: 1/1;
    background-color: #ffffff;
    border: solid 1px rgba(0, 0, 0, 0.377);
    align-self: center;
    border-radius: 50%;
    cursor: pointer;
    color: #1c1c1c;
    font-size: 1.2rem;
    transition: all ease-in-out .2s;
    z-index: 2;
}
.produtos .produtos_content .Return_Arrow{
    transform: rotate(180deg);
}
/*Como funciona*/

.funciona{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    height: 90dvh;
}
.funciona .funciona-texts,
.faq .funciona-texts{
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.funciona .funciona-cards{
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    box-sizing: border-box;
    gap: 1rem;
    max-width: 100%;
    max-height: 100%;
}

.funciona-card{
    flex: 1;
    height: 100%;
    min-width: 100px; /* ou o mínimo que funcione bem */
    min-height: 150px; /* ajuste conforme necessário */
    overflow: hidden;
    display: flex;

    flex-direction: column;
    border-radius: 8px;
    transition: .4s all ease-in-out;
}

.funciona-card:hover {
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.347);
}
.funciona-card:hover .funciona-inner{
    transform: rotateY(180deg);
    opacity: 1;
}
.funciona-card:hover .front-funciona{
    opacity: 0;
}
.funciona-card:hover .back-funciona{
    opacity: 1;
    
}

.funciona-inner{
    max-width:100%;
    max-height: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    position: relative;
    transform-style: preserve-3d;

}
.funciona-inner .front-funciona{
    opacity: 1;
    transition: all ease-in-out .6s;
    padding: 1rem;

    height: 100%;
    padding: 1rem;

}

.funciona-inner .front-funciona i{
    color: var(--colorPrimary);
    font-size: clamp(1rem, 5vw, 3rem);
}
.funciona-inner .back-funciona{
    transform: rotateY(180deg);
    transition: all ease-in-out .6s;
    opacity: 0;
    width: 100%;
    padding: 1rem;
}

.funciona-inner > .back-funciona h4,
.funciona-inner > .front-funciona h4{
    color: var(--colorPrimaryText);
    font-size: clamp(0.2rem, 1.5vw, 1.5rem);
    text-transform: uppercase;
    text-align: center;
}
.funciona-inner > .back-funciona p,
.funciona-inner > .front-funciona p{
    text-align: center;
    color: var(--colorSecundaryText);
    font-size: clamp(1rem, .9vw, 1rem);
}

.funciona  button:hover,
.duvida button:hover{
    transform: scale(1.1);
    box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.155);
}
/* VIP */
.vip{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: relative;
    width: 100%;
    height: min-content;
    min-height: 30dvh;
    background-color: var(--colorPrimary);
    gap:1rem
}

.vip .vip_fundo{
    position: absolute;
    content: "";
    /* width: 100%;
    height: 100%; */
    width: 100%;
    height: 100%;
    z-index: 1;
    background:linear-gradient(90deg,var(--colorPrimary) 50%, transparent);
     box-shadow: inset 0px 0px 140px 0px rgba(0, 0, 0, 0.795);
}

.vip .vip-texts{
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 50%;
    gap: 1rem;
}

.vip .vip-texts p{
    color: #fff;
    text-align: center;
}

 .vip .vip-texts .text-vip{
    max-width: 700px;
 }
.vip .entrarVip{
    z-index: 2;
    
}
.vip .entrarVip button{
    background-color: darkgray;
    border: none;
    padding: 1rem;
    max-width: 560px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out .3s;
    cursor: pointer;
    max-height: 60px;
    gap: .5rem;
    font-weight: 600;
    padding: 1rem;
    animation: pulse ease-in-out infinite 1s;
}
@keyframes pulse {
    0%{
        transform: scale(1.0);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1.0);
    }
    
}

.vip .entrarVip:hover > button{
    animation: none;
    transform: scale(1.1);
}

.vip .entrarVip button i{
    font-size: 1.3rem;
}

.vip .vip_image{
    display: flex;
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    right: 0;
}

.vip .vip_image img{
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}
/* FAQ*/

.faq{
    background-color: rgb(231, 231, 231);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.faq .faqs {
    width: 100%;
    max-width: 1380px;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--colorSecundaryText);
}
.faq .faqs .question{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .8rem;
}
.faq .faqs .question i{
    transform: rotate(90deg);
    color: var(--colorPrimaryText);
    transition: all ease-in-out .2s;
    font-size: clamp(.5rem, 5vw, 1.3rem);
}

.faq .faqs .question h3{
    color: var(--colorPrimaryText);
    font-size: clamp(.8rem, 4vw, 1.3rem);
}


.faq .faqs .question:hover{
    cursor: pointer;
}
.answer{
    max-height: 0;
    overflow: hidden;
    transition: all ease-in-out .3s;
}
.faq .faqs .answer p{
    padding-top: 1rem;
    line-height: 1.5;
    font-size: clamp(.5rem, 3vw, var(--fontsizeSecundaryText));
}

.faq .faqs.active .answer{
    max-height: 300px;
    animation: fade .4s ease-in-out;
    
}
.faq .faqs.active i{
    transform: rotate(180deg);
}

@keyframes fade {
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Duvida*/

.duvida{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
}

.duvida .duvida_text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:1rem;
    max-width: 1380px;
}
.duvida .duvida_text h3{
    color: var(--colorPrimaryText);
}

/*Footer*/
footer{
    background-color: #1c1c1c;
    padding: 2rem 1rem;
    width: 100%;
    height: 45dvh;
    gap:1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer_content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    max-width: 1360px;
}
.footer_content > :nth-child(n){
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    max-height: 100%;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    gap: 1rem;
}
.footer_content .footer_contato{
    gap: 2rem;
}
.footer_content .footer_contato .footer_redes,
.footer_content .footer_contato .footer_numero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.footer_content > :nth-child(n) > .title,
.footer_content > .footer_contato > .footer_numero > .title,
.footer_content > .footer_contato > .footer_redes > .title{
    font-size: var(--colorPrimaryText);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer_content > :nth-child(n) > .title::after,
.footer_content > :nth-child(n) > .title::before,
.footer_content > .footer_contato > .footer_numero > .title::after,
.footer_content > .footer_contato > .footer_redes > .title::after,
.footer_content > .footer_contato > .footer_numero > .title::before,
.footer_content > .footer_contato > .footer_redes > .title::before{
    color: var(--colorPrimary);
    font-size: 1.2rem;
    font-weight: bold;
}
.footer_content > :nth-child(n) > .title::after,
.footer_content > .footer_contato > .footer_numero > .title::after,
.footer_content > .footer_contato > .footer_redes > .title::after{
    content: "}";
}
.footer_content > :nth-child(n) > .title::before,
.footer_content > .footer_contato > .footer_numero > .title::before,
.footer_content > .footer_contato > .footer_redes > .title::before{
    content: "{";
}

.footer_content > :nth-child(n) > .text a,
.footer_content .footer_contato .footer_numero .text > a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}
.footer_content > :nth-child(n) > .text a >i,
.footer_content .footer_contato .footer_numero .text a > i{
    font-size: 1.3rem;
}
.footer_content .footer_map > iframe{
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
}
.footer_content .footer_contato.socialIcons{
   display: flex;
   gap: 1rem;
}
.footer_content .footer_contato.socialIcons > a{
    background-color: #323232;
    aspect-ratio: 1/1;
    width: 2.3rem;
    justify-content: center;
    align-items: center;
    display: flex;
}
.footer_content .footer_contato.socialIcons > a >i{
    font-size: 1.3rem;
}

@media screen and (max-width:1271px){
    .funciona .funciona-cards{
        max-height: 400px;
    }
}

@media screen and (max-width:1150px){
    .front .card-icon i{
        font-size: 2rem;
        max-width: 100%;
    }

    .funciona{
        gap: 1rem;
        padding: 1.3rem;
    }

    .funciona .funciona-cards{
        padding: 1.5rem 0rem;
    }

    .funciona-inner > .back-funciona h4,
    .funciona-inner > .front-funciona h4{
        color: var(--colorPrimaryText);
        font-size: clamp(.8rem, 1.3vw, 1.5rem);
        text-transform: uppercase;
        text-align: center;
    }
    .funciona-inner > .back-funciona p,
    .funciona-inner > .front-funciona p{
        text-align: center;
        color: var(--colorSecundaryText);
        font-size: clamp(.8rem, .4vw, 1rem);
    }
    .funciona-inner .front-funciona i{
        color: var(--colorPrimary);
        font-size: clamp(1rem, 4vw, 3rem);
    }


    /*Produtos*/
    .produtos .produtos_content{
    height: 80%;
    display: grid;
    place-items: center;
    grid-template: repeat(1,1fr) / repeat(1, 1fr);
    }

    .produtos .produtos_content .produtos_image{
        display: none;
    }
    

}
@media screen and (max-width:940px){
    header .container{
        width: 100%;
        display: flex;
        justify-content: space-between;
        max-width: 1380px;
        padding: 0 3rem;
        height: 100%;
    }    
    nav a{
        font-size: 13px;
    }
    nav a::after{
        height: 2.5px;
    }    

    nav button span{
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    nav button i{
        font-size: 1.3rem;
    }
    .front .card-icon i{
        font-size: 1.5rem;
        max-width: 100%;
    }
}
@media screen and (max-width:767px){ /*tablet*/
    header .container{
        max-width: 100%;
        justify-content: space-between;
        padding: 0 1rem;
    }
    header .container nav{
        gap: 0;
        margin: 0;
    }
    nav button span{
        display: none;
    }

    nav ul li{
        display: none;
    }
    .menu-btn{
        display: block;
        background-color: transparent;
        border: none;
        align-self: center;
        font-size: 2rem;
        cursor: pointer;
    }
    body .escurecer{
        display: initial;
        z-index: 1001;
    }
    .fundo{
        display: none;
        position: absolute;
        content: "";
        background-color: #00000060;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .sidebar{
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100%;
        background-color: #ffffff;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        padding: 1.5rem 1rem 1rem 1rem;
        justify-content: space-between;
        transition: .25s ease-in-out;
        z-index: 1002;
    }
    body .show{
        left: 0;
    }
    .sidebar .sideTop{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .sidebar .sideTop i{
        color: #000;
        align-self: flex-end;
        font-size: 1.3rem;
        cursor: pointer;
    }
    .sidebar button{
        display: flex;
        background-color: #61CE70;
        padding: 0.5rem;
        border-radius: 30px;
        font-weight: 600;
        border: none;
        transition: all .2s ease-in-out;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .sidebar .sideTop .zap{
        color: #fff;
    }
    .sidebar button:hover{
        cursor: pointer;
        background-color: #4eaf5b;
    }
    
    .sidebar button span{
        font-size: 0.7rem;
        letter-spacing: 1px;
        color: #fff;
        align-self: center;
    }
    .sidebar button i{
        font-size: 1.3rem;
        color: #fff;
    }
    .sidebar ul{
        display: flex;
        flex-direction: column;
        gap: .2rem;
    }
    .sidebar ul li{
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .sidebar ul li a{
        text-transform: uppercase;
        font-size: .9rem;
        font-weight: 500;
        color: rgb(62, 62, 62);
        display: flex;
        gap: .3rem;
    }
    .sidebar ul li i{
        transform: rotate(90deg);
        color: #000;
    }

    .sidebar .socialIcons{
        display: flex;
        align-items: center;
        width: 80%;
        align-self: center;
        justify-content: space-around;

    }
    .sidebar .socialIcons a{
        display: flex;
        background-color: #000000;
        justify-content: center;
        align-items: center;
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 100%;
    }
    .sidebar .socialIcons a i{
        font-size: larger;
        align-self: center;
        justify-self: center;
    }
    
    /*Slide*/

    .slider-section .content .sliders-text h3,p,b{
        text-align: center;
        padding: 10px;
    }
    .sliders-text  {
        padding: 0;
    }
    .sliders-text h3 {
        font-size: 2rem;
    }

    .slider-section .content{
        margin: 0 1rem 0 1rem;

        transform: translateY(-5%);
        width: fit-content;
        padding: 0;
        width: 93svw;
        
    }
    .slider-section .content .sliders{
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .sliders .container-slider{
        align-self: center;
        width: 85%;
        aspect-ratio: 9/16;
    }
    .sliders .container-slider .image-container{
        height: 100%;
        width: 100%;
        max-height: 100%;
    }

    .tecnicas{
        height: fit-content;
        position: relative;
    }
    .tecnicas-cards{
        display: grid;
        width: 100%;
        flex: 1;
        grid-template-columns: 1fr;
        row-gap: .5rem;
        padding: 1rem;
        box-sizing: border-box;
        max-height: 100%;
        align-items: center; 
        position: static;
    }
    .card{
        width: 75%;
        aspect-ratio: 5/3;
    }
    .card:nth-child(even){
        justify-self: flex-end;
    }
    .tecnicas-cards .card:nth-child(1),
    .tecnicas-cards .card:nth-child(2) {
        grid-column: 1;
    }

    .tecnicas-cards .card:nth-child(n+3) {
        grid-column: 1;
    }
    .card:nth-child(3) .card-icon,
    .card:nth-child(4) .card-icon,
    .card:nth-child(5) .card-icon {
        width: 25%;
    }   

    .tecnicas .tecnicas-texts{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-inner .back{
        padding: 1rem;
    }
    .card-inner .back p{
        font-size: .6rem;
    }

    .tecnicas .click {
        position: absolute;
        top: 5%;
        left: 0%;
        transform: rotate(-34deg);
        z-index: 10000;

    }
    .tecnicas .click span{
        font-size: 0.8rem;
    }
    /*Como funciona*/
    .funciona {
        height: max-content;
    }
    .funciona .funciona-cards{
        flex-direction: column;
        width: 100%;
        max-height: 100%;
    }
    .funciona .funciona-card{
        width: 100%;
    }
    .funciona .funciona-cards .funciona-inner{
        aspect-ratio: inherit;
        height: 200px;
    }

    .funciona-inner > .back-funciona h4,
    .funciona-inner > .front-funciona h4{
        color: var(--colorPrimaryText);
        font-size: clamp(1rem, 1.3vw, 1.5rem);
        text-transform: uppercase;
        text-align: center;
    }
    .funciona-inner > .back-funciona p,
    .funciona-inner > .front-funciona p{
        text-align: center;
        color: var(--colorSecundaryText);
        font-size: clamp(1rem, .9vw, 1rem);
    }
    

    .funciona-inner .front-funciona i{
        color: var(--colorPrimary);
        font-size: clamp(1rem, 6vw, 6rem);
    }
    
    .funciona button,
    .duvida a{
        width: 80%;
    }
    .duvida button{
        min-width: 100%;
        width: 100%;
    }

    .faq .faqs .answer p{
        text-align: start;
    }

    footer{
        height: fit-content;
    }
    .footer_content{
        flex-direction: column;
        gap: 2rem;
    }
    .produtos .produtos_content .produto_card {
        flex: 0 0 calc((100% - 1rem) / 2); /* Exatamente 3 cards com gap de 1rem entre eles */
        max-width: calc((100% - 1rem) / 2);
    }

    .produtos .produtos_content .Next_Arrow,
    .produtos .produtos_content .Return_Arrow{
        display: none;
    }
    /* .produto_card .produto_card-infos button {
    width: 100%;
    padding: .5rem 1rem;
    font-size: .8rem;
    }
    .produtos .produtos_content .produto_card .produto_card-infos {
    padding: .6rem;
    gap: .5rem;

    }
    .produto_card .produto_card-infos h4,
    .produto_card .produto_card-infos .produto_card_infos-prices .desconto,
    .produto_card .produto_card-infos .produto_card_infos-prices .original{
        font-size: .8rem;
    } */

}
@media screen and (max-width:450px){

    .section1 .section1_container{
        align-items: flex-start;
        margin-left: 0;
    }
    .section1 .section1_container .text{
        align-self: flex-start;

    }

    .section1 .section1_container .tittle h1{
        /* text-align: center; */
        font-size: 2.5rem;
    }

    .section1 .section1_container button{
        min-width: 0;
        width: 100%;
        flex: 1;
    }
 
    .slider-section .content .sliders-text {
        padding: 1rem 0;
    }
    .sliders-text h3 {
        font-size: 1.5rem;
    }

    .card{
        width: 100%;
    }
    .front, .back{
        padding: 1rem;
        gap: 0rem;
    }
    .card-inner .back p{
        font-size: .5rem;
    }
    .front .card-icon i{
        font-size: 1.5rem;
        max-width: 100%;

    }
    .funciona .comecarAgora{
        width: 100%;
    }

    .duvida .duvida_text h3{
        font-size: clamp(.2rem, 4.7vw, var(--fontsizePrimaryText));
    }

    .produto_card .produto_card-infos h4{
        font-size: .7rem;
    }
    .produto_card .produto_card-infos button{
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .produtos{
        padding: 2rem 1rem;
    }
    .produtos .produtos_content .produto_slider_cards{
    margin: 0;
}
    .vip .vip_fundo{
        background: linear-gradient(90deg, var(--colorPrimary) 15%, transparent);
    }

    .tecnicas .click {
        position: absolute;
        top: 0%;
        left: 0;
        transform: translate(20%,-150%);
        z-index: 10000;
    }
    .tecnicas .click span{
        font-size: 0.7rem;
    }
}

@media screen and (orientation: landscape) {
  .funciona{
    height: fit-content;
  }
  .funciona .funciona-cards{
    width: 100%;
    max-height: 100%;
  }
}

@media screen and (orientation: landscape) and (max-height:370px){
    .slider-section .content{
        transform: translateY(0%);
    }
}