/* =====================================================
   HEADER
===================================================== */

.header {
    position: relative;
    padding-bottom: 30px;
    min-height: 900px;

    background-image: url('../images/headerBg.png');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    color: white;
}









/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;

    background: transparent;
    transition: all 0.35s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.navBarContainer {
    max-width: 1500px;
    padding: 20px 150px !important;
    margin: 0 auto;

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

.logo {
    width: 200px;
}

/* menu */

.navBarOption {
    display: flex;
    align-items: center;
    gap: 40px;

    color: white;
    font-size: 17px;
}

.navBarOption .navMenu {
    display: flex;
    gap: 30px;
}

.navMenu a {
    color: white;
    transition: 0.3s;
}

/* hover menu */

.navMenu a{
    position:relative;
    color:white;
    transition:color .25s ease;
}

/* linha animada */

.navMenu a::after{

    content:"";
    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:currentColor;

    transition:width .25s ease;

}

.navMenu a:hover::after{
    width:100%;
}

.navMenu a:hover{
    opacity:0.85;
}

.navbar.scrolled .navBarOption {
    color: #333;
}

.navbar.scrolled .navMenu a {
    color: #333;
}

/* botão whatsapp */

.whatsBtn {
    background-color: #25D366;
    color: white;

    padding: 10px 30px;

    display: flex;
    align-items: center;
    gap: 10px;

    border-radius: 30px;
    font-size: 17px;

    position: relative;
    overflow: hidden;
}

.whatsBtn i {
    font-size: 16px;
}

/* efeito brilho */

.whatsBtn::after {

    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.25) 50%,
        transparent 100%
    );

    transform: translateX(-120%);
    transition: transform .6s ease;
}

.whatsBtn:hover::after {
    transform: translateX(120%);
}







/* =====================================================
   HEADER CONTENT
===================================================== */
.headerImage {
    position: relative;
    top: 118px;

    width: 450px;
}

.headerGrid {
    margin: 40px auto 0;
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
}

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

    max-width: 650px;
}

.headerText h1 {
    font-size: 50px;
    line-height: 60px;
}

.headerText .description {
    font-size: 20px;
    line-height: 30px;
}

.buttonGroup {
    display: flex;
    gap: 20px;
}







/* =====================================================
   MOBILE MENU
===================================================== */

.menuToggle{
    display:none;
    width:30px;
    height:24px;
    border:none;
    background:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:space-between;
}


.navbar.scrolled .menuToggle span{
    background:#333;
}

.menuToggle span{
    display:block;
    height:3px;
    width:100%;
    background:white;
    border-radius:2px;
    transition:0.3s;
}

/* animação */

.menuToggle.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

.menuToggle.active span:nth-child(2){
    opacity:0;
}

.menuToggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}

/* overlay */

.menuOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.35);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:900;
}

.menuOverlay.active{
    opacity:1;
    visibility:visible;
}







/* =====================================================
   MOBILE STYLES
===================================================== */

@media (max-width: 1200px){

    .menuToggle{
        display:flex;
        z-index:1100;
    }

    .navBarOption{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        height:100vh;

        background:white;

        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;

        padding: 50px 40px;

        gap:40px;

        transition:0.35s;
        z-index:1000;
    }

    .navBarOption.active{
        right:0;
    }

    .navMenu{
        display:flex !important;
        flex-direction:column;
        gap:25px;
    }

    .navMenu a{
        color:#333;
        font-size:18px;
    }

    .whatsBtn{
        background:#25D366;
        color:white;
    }

}


/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scrollIndicator{
    position:absolute;
    bottom:55px;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:20;
    opacity:0.9;

    transition:opacity .4s ease;
}

.mouse{
    width:26px;
    height:42px;

    border:2px solid white;
    border-radius:20px;

    display:flex;
    justify-content:center;
    padding-top:6px;
}

.wheel{
    width:4px;
    height:8px;

    background:white;
    border-radius:3px;

    animation:scrollWheel 1.8s infinite;
}

@keyframes scrollWheel{

    0%{
        opacity:0;
        transform:translateY(0);
    }

    40%{
        opacity:1;
    }

    80%{
        transform:translateY(12px);
        opacity:0;
    }

    100%{
        opacity:0;
    }

}


@media screen and (max-width: 490px) {
    .mouse{
        width:25px;
        height:40px;
    }
    .scrollIndicator{
        bottom:65px;
    }
}

@media screen and (max-width: 400px) {
    
}





/* =====================================================
   ACOLHIMENTO / CARDS (Section 2)
===================================================== */
.sectionFooter {
    max-width: 450px;
    margin: 60px auto 0;

    text-align: center;

    color: var(--subTitle-color);
    font-size: 18px;
}

.section2{
    position: relative;
    padding-bottom: 80px !important;
}

.waveBottom{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.waveBottom svg{
    width: 100%;
    height: clamp(180px, 12vw, 260px);
}

.waveBottom path{
    fill: var(--primary-color);
}







/* =====================================================
   FOOD RELATION (section 3)
===================================================== */

.section3 {
    background-color: var(--primary-color);
    color: white;
}

.section3__content {
    margin-bottom: clamp(30px, 5vw, 60px);
}

.section3__content p {
    margin: 0 auto;
    text-align: center;

    /* largura confortável de leitura */
    max-width: 65ch;

    /* tipografia fluida moderna */
    font-size: clamp(18px, 2vw, 22px);

    /* altura de linha melhora MUITO leitura */
    line-height: 1.6;

    margin-bottom: clamp(20px, 3vw, 30px);
}







/* =====================================================
   FOOD RELATION (section 4)
===================================================== */
.section4 > .cardBox {
    margin-bottom: 50px;
}







/* =====================================================
   FEEDBACKS (section 5)
===================================================== */

.section5{
    background: var(--primary-color);
    background-image: url('../images/feedbackBg.png');
    background-size: cover;
    background-position: center;
}

/* BOX */

.feedbackBox{
    background:#fff;
    border-radius:20px;

    padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);

    display:flex;
    align-items:center;
    gap: clamp(15px, 3vw, 30px);

    max-width:1100px;
    margin:auto;
}

/* ARROWS */

.feedbackBox i{
    font-size: clamp(20px, 2vw, 25px);
    color:var(--tag-color);
    cursor:pointer;
}

/* SLIDER */

.feedbackSlider{
    overflow:hidden;
    width:100%;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    min-height: clamp(220px, 28vw, 300px);
}

.feedbackTrack{
    display:flex;
    transition:transform .6s cubic-bezier(.22,.61,.36,1);
}

.slide{
    min-width:100%;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* FEEDBACK CONTENT */

.feedbackSingle{
    text-align:center;

    display:flex;
    flex-direction:column;

    gap: clamp(25px, 4vw, 40px);

    max-width:65ch;
    margin:auto;
}

.feedbackSingle h4{
    text-transform:uppercase;

    font-size: clamp(22px, 4vw, 35px);
    font-weight:500;

    color:var(--title-color);
}

.feedbackSingle p{
    font-size: clamp(16px, 2vw, 20px);

    color:var(--tag-color);
    line-height:1.6;
}

.feedbackSingle b{
    font-size: clamp(15px, 1.5vw, 17px);
    color:var(--title-color);
}

/* DOT CONTROLS */

.feedbackControl{
    display:flex;
    justify-content:center;

    gap:10px;

    margin-top: clamp(25px, 4vw, 40px);
}

.feedbackControl span{
    width:10px;
    height:10px;

    background:#d2c9c3;

    border-radius:50%;
    cursor:pointer;

    transition:.25s;
}

.feedbackControl span:hover{
    background:var(--primary-color);
}

.feedbackControl--selected{
    width:35px!important;
    height:8px!important;
    border-radius:5px!important;
    background:var(--primary-color)!important;
}






/* =====================================================
   FAQ (section 6)
===================================================== */

.faqsBox {
    display: flex;
    align-items: center;
    flex-direction: column;

    gap: clamp(15px, 2vw, 20px);
}

/* CARD */

.faqSingle {
    width: 100%;
    max-width: 800px;

    background-color: white;
    border-radius: 10px;

    box-shadow: rgba(99, 99, 99, 0.15) 0px 4px 12px;
}

/* HEADER */

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

    gap: 15px;

    padding: clamp(16px, 3vw, 20px);

    cursor: pointer;
}

.faqHeader h4 {
    color: var(--title-color);

    font-size: clamp(16px, 2vw, 18px);

    line-height: 1.4;
}

/* ICON */

.faqHeader i {
    background-color: var(--primary-color);
    color: white;

    padding: 8px 9px;

    border-radius: 50%;

    flex-shrink: 0;

    transition: transform .25s ease;
}

/* TEXT */

.faqSingle p {
    border-top: 1px solid rgb(228, 226, 226);

    padding: 0 clamp(16px, 3vw, 20px);

    font-size: clamp(15px, 1.6vw, 17px);

    color: #6F625E;

    line-height: 1.6;

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height .35s ease,
        opacity .25s ease,
        padding .25s ease;
}

/* ABERTO */

.faqSingle.active p {
    max-height: 220px;
    padding: clamp(16px, 3vw, 20px);
    opacity: 1;
}

/* ROTAÇÃO DO ÍCONE */

.faqSingle.active .faqHeader i {
    transform: rotate(45deg);
}







/* =====================================================
   LIST SECTION (section 7)
===================================================== */

.section7 {
    background-color: var(--primary-color);
}

/* container */

.mainListBox {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: clamp(30px, 6vw, 80px);

    max-width: 900px;
    margin: auto;
}

/* coluna */

.listBox {
    display: flex;
    flex-direction: column;

    gap: clamp(14px, 2vw, 20px);
}

/* item */

.listItem {
    display: flex;
    align-items: center;

    gap: 10px;
}

/* icon */

.listItem i {
    color: #F3BB8A;
    font-size: clamp(16px, 1.5vw, 18px);
    flex-shrink: 0;
}

/* texto */

.listItem p {
    color: white;

    font-size: clamp(16px, 1.6vw, 18px);

    line-height: 1.5;
}







/* =====================================================
   About (section 8)
===================================================== */

.section8 {
    display: flex;
    align-items: center;

    gap: clamp(30px, 6vw, 60px);

    flex-wrap: wrap; /* quebra no mobile */
    justify-content: center;
}

/* IMAGE */

.section8 img {
    flex: 0 1 380px;
    width: 100%;
    max-width: 400px;
}

/* TEXT AREA */

.sectionAbout {
    flex: 1 1 500px;
    max-width: 750px;

    display: flex;
    flex-direction: column;

    gap: clamp(16px, 2vw, 20px);
}

/* TITLE */

.sectionAbout h2 {
    color: var(--title-color);

    font-size: clamp(26px, 4vw, 38px);
    font-weight: 500;

    line-height: 1.2;
}

/* TEXT */

.sectionAbout p {
    color: var(--text-color);

    font-size: clamp(16px, 1.8vw, 19px);

    line-height: 1.7;

    max-width: 65ch;
}

/* quando empilhar */
@media (max-width: 1119px) {

    .sectionAbout {
        align-items: center;
        text-align: center;
    }

    .aboutBtnBox {
        display: flex;
        justify-content: center;
        width: 100%;
    }

}







/* =====================================================
   HowWorks2 (section 9)
===================================================== */

.section9 {
    background-color: var(--primary-color);
    color: white;
}

.section9__content {
    margin-bottom: clamp(30px, 5vw, 50px);
}

.section9__content p {
    margin: 0 auto;

    text-align: center;

    max-width: 65ch;

    font-size: clamp(18px, 2vw, 22px);

    line-height: 1.6;

    margin-bottom: clamp(20px, 3vw, 30px);
}






/* =====================================================
   HowWorks2 (section 10)
===================================================== */
.section10 {
    position: relative;
    padding-bottom: 80px !important;
}







/* =====================================================
   FINAL CTA (section 11)
===================================================== */

.section11 {
    position: relative;

    padding-bottom: 80px;

    background: linear-gradient(
        90deg,
        #91613D 0%,
        #B47B4C 50%,
        #D2BAA2 100%
    );
}

/* FLEX VAI AQUI */
.section11 .container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 6vw, 80px);
    flex-wrap: wrap;
}

/* TEXT AREA */

.sectionfinalCTA{
    max-width: min(500px, 100%);

    display: flex;
    flex-direction: column;

    gap: clamp(16px, 2vw, 20px);
}

.sectionfinalCTA h2{
    color: white;

    font-weight: 500;

    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}

.sectionfinalCTA p:not(.tag--light){
    color: white;

    font-size: clamp(16px, 1.8vw, 19px);

    line-height: 1.6;

    max-width: 60ch;
}

/* IMAGE */

.section11 img {
    width: min(400px, 100%);
    height: auto;
}

/* WAVES */

.section11 .waveBottom svg{
    transform: scaleX(-1);
}

.section10 .waveBottom svg{
    width: 100%;
    height: 180px;
}

.section11 .waveBottom path{
    fill: var(--mainBg-color);
}

.section10 .waveBottom path{
    fill: url(#waveGradient);
}

@media (max-width: 768px) {

    .section11{
        flex-direction: column;
        text-align: center;
    }

    .sectionfinalCTA{
        align-items: center;
    }

    .sectionfinalCTA p:not(.tag--light){
        max-width: 100%;
    }

}







/* =====================================================
   FOOTER
===================================================== */

.footer{
    padding-top: 10px !important;
    padding-bottom: 0px !important;
    padding-inline: 20px;

    color: var(--text-color);
}

/* TOP AREA */

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

    flex-wrap: wrap;

    gap: clamp(30px, 6vw, 60px);

    margin-bottom: clamp(30px, 5vw, 50px);
}

/* LEFT */

.footerTopLeft {
    max-width: min(300px, 100%);

    display: flex;
    flex-direction: column;

    gap: clamp(14px, 2vw, 20px);
}

.footerTopLeft img{
    width: min(200px, 100%);
}

.footerTopLeft p:first-of-type{
    font-size: clamp(16px, 1.6vw, 18px);
}

/* RIGHT LINKS */

.footerTopRight {
    display: flex;

    flex-wrap: wrap;

    gap: clamp(30px, 6vw, 60px);
}

/* SECTIONS */

.footerSec {
    display: flex;
    flex-direction: column;

    gap: 6px;

    min-width: 140px;
}

.footerSec h4{
    color: var(--title-color);

    font-size: clamp(17px, 1.8vw, 19px);
}

.footerSec p{
    font-size: clamp(15px, 1.6vw, 17px);
}

/* BOTTOM */

.footerBottom{
    border-top: 1px solid #B98F71;

    padding: clamp(15px, 3vw, 20px) 0;

    display: flex;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 10px;

    font-size: clamp(14px, 1.4vw, 16px);
}

.footerBottom a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

@media (max-width: 768px) {

    .footerBottom{
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .footerBottom a{
        color: var(--primary-color);
        border-bottom: 1px solid var(--primary-color);
    }

}





/* =================================
   BACK TO TOP BUTTON
================================= */

.backToTop{

    position:fixed;
    bottom:30px;
    right:30px;

    width:50px;
    height:50px;

    border-radius:50%;
    border:none;

    background:var(--primary-color);
    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .3s,
        transform .3s,
        visibility .3s;

    z-index:1500;

}

.backToTop.show{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

.backToTop:hover{

    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,0.2);

}







/* ================================
   COOKIE BANNER
================================ */

.cookieBanner{

    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 40px);
    max-width: 900px;

    background: white;
    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    padding: 20px 25px;

    z-index: 2000;

    animation: cookieSlideUp .5s ease;

}

.cookieContent{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

}

.cookieContent p{

    font-size:16px;
    color:#5A413C;
    max-width:600px;

}

.cookieContent a{

    color:var(--primary-color);
    font-weight:600;

}

.cookieButtons{

    display:flex;
    gap:10px;

}

.cookieAccept{

    background:var(--primary-color);
    color:white;

    border:none;
    border-radius:40px;

    padding:10px 25px;

    font-size:15px;
    cursor:pointer;

    transition:.25s;

}

.cookieAccept:hover{

    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.1);

}

.cookieBanner.hide{

    display:none;

}

@keyframes cookieSlideUp{

    from{
        opacity:0;
        transform:translate(-50%,30px);
    }

    to{
        opacity:1;
        transform:translate(-50%,0);
    }

}

/* mobile */

@media (max-width:600px){

.cookieContent{

    flex-direction:column;
    text-align:center;

}

.cookieButtons{

    width:100%;
    justify-content:center;

}

}









/* =====================================================
   RESPONSIVE
===================================================== */

/* notebooks menores */

@media (max-width: 1400px) {
    .header {
        min-height: 700px;
        height: max-content;
        background-position: initial;
    }
    .headerImage {
        top: 78px;
    }

    .navBarContainer {
        padding: 10px 100px !important;
    }

    .headerText h1 {
        font-size: 44px;
        line-height: 54px;
    }

}

/* notebooks */

@media (max-width: 1250px) {
    
    .headerGrid {
        text-align: center;
    }

    .buttonGroup{
        justify-content: center;
    }

    .tag {
        margin: 0 auto;
    }

    .header {
        min-height: 800px;

        background-image: url('../images/headerBg2.png');
        background-position: center;
    }

    .headerText {
        max-width: 100%;
    }

    .headerImage {
        display: none;
    }

    .navBarContainer {
        padding: 10px 80px !important;
    }

    .logo {
        width: 170px;
    }
  
    .header {
        background-size: cover;
    }

    .headerText h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .headerText .description {
        font-size: 18px;
    }

}

/* tablets */

@media (max-width: 900px) {

    .navBarContainer {
        padding: 10px 40px !important;
    }

    .navMenu {
        display: none;
    }

    .headerText h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .headerText .description {
        font-size: 17px;
    }

}

/* celulares */

@media (max-width: 600px) {
    
    .header {
        padding-top: 50px;
        align-items: flex-start;
    }
    
    .navBarContainer {
        padding: 10px 20px !important;
    }
    
    .logo {
        width: 150px;
    }
    
    .whatsBtn {
        padding: 8px 20px;
        font-size: 15px;
    }
    
    .headerGrid {
        margin-top: 0px;
    }

    .headerText h1 {
        font-size: 30px;
        line-height: 38px;
    }
    
    .headerText .description {
        font-size: 16px;
        line-height: 26px;
    }
    
    .buttonGroup {
        flex-direction: column;
    }
    
}


@media (max-width: 490px) {
    .headerGrid {
        margin-top: 50px;
    }
    .header {
        padding-top: 0;
        align-items: flex-start;
    }
    
    .header .container {
        padding-top: 40px !important;
    }
}


@media (max-width: 390px) {
    .header {
        padding-bottom: 100px;
    }
}