﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:100;
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 0;
}

.logo img{
    height:110px;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:#222;
    font-weight:900;
}

.menu a:hover{
    color:#f7941d;
}

.btn-header{
    background:#5BAF3B;
    color:#fff;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:600;
}

.hero{
    background:linear-gradient(
        135deg,
        #fff9e8,
        #fff
    );
    padding:50px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:54px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#f7941d;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:8px;
    font-weight:600;
}

.btn-secondary{
    background:#5BAF3B;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:8px;
    font-weight:600;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    max-width:500px;
    width:100%;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature{
    background:#fff;
    border:1px solid #eee;
    border-radius:15px;
    padding:25px;
    text-align:center;
    min-height:220px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card h3{
    margin-bottom:10px;
}

.feature h3{
    font-size:36px;
    color:#f7941d;
}

.cta{
    background:#5BAF3B;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.footer{
    background:#1a1a1a;
    color:#fff;
    text-align:center;
    padding:30px;
}

@media(max-width:900px){

.hero-content{
    flex-direction:column;
}

.features{
    grid-template-columns:1fr 1fr;
}

.cards{
    grid-template-columns:1fr;
}

.hero-text h1{
    font-size:52px;
}

.menu{
    display:none;
}

}

.numeros{
    background:#f7f7f7;
}

.sabores-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:30px;
}

.sabores-grid span{
    background:#f7941d;
    color:#fff;
    padding:12px 22px;
    border-radius:25px;
    font-weight:600;
    font-size:16px;
}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:15px 20px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 4px 15px rgba(0,0,0,.2);
    z-index:999;
}

.produto-box{
    display:flex;
    gap:60px;
    margin-bottom:80px;
    align-items:flex-start;
}

.produto-imagem{
    flex:1;
}

.produto-imagem img{
    width:220px;
    height:auto;
}

.produto-info{
    flex:2;
}

.produto-info h2{
    margin-bottom:15px;
}

.produto-info p{
    margin-bottom:20px;
    font-size:18px;
    color:#555;
    line-height:1.6;
}

@media(max-width:900px){

.produto-box{
    flex-direction:column;
}
}

.caixa-info{
    background:#fff8e8;
    border-left:5px solid #f7941d;
    padding:15px;
    border-radius:8px;
    margin-top:20px;
}

.resumo-comercial{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.resumo-item{
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.resumo-item strong{
    display:block;
    font-size:32px;
    color:#f7941d;
}

.resumo-item span{
    color:#666;
}

.sabor-box{
    display:flex;
    gap:50px;
    margin-bottom:80px;
    align-items:center;
}

.sabor-imagem{
    flex:1;
}

.sabor-imagem img{
    width:100%;
    max-width:280px;
}

.sabor-info{
    flex:2;
}

.sabor-info h3{
    margin-bottom:15px;
    font-size:32px;
}

.sabor-info p{
    line-height:1.8;
    margin-bottom:25px;
}

.embalagens-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:20px;
}

.embalagem-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.embalagem-card h4{
    color:#f7941d;
    font-size:24px;
    margin-bottom:10px;
}

.embalagem-card p{
    margin:0;
}

@media(max-width:900px){

    .resumo-comercial{
        grid-template-columns:1fr 1fr;
    }

    .sabor-box{
        flex-direction:column;
        text-align:center;
    }

}

.fundo-claro{
    background:#f7f7f7;
}

.texto-institucional{
    max-width:850px;
    margin:auto;
    text-align:left;
    line-height:1.9;
    font-size:18px;
    color:#555;
}

.feature{
    transition:all .3s ease;
}

.feature:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contato-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contato-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.contato-card h3{
    margin-bottom:10px;
    color:#f7941d;
}

.contato-card.whatsapp{
    background:#25D366;
    color:#fff;
}

.contato-card.whatsapp h3{
    color:#fff;
}

.contato-card.whatsapp p{
    color:#fff;
}

.formulario-contato{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.campo{
    margin-bottom:20px;
}

.campo label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.campo input,
.campo textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.campo textarea{
    resize:vertical;
}

@media(max-width:900px){

.contato-grid{
    grid-template-columns:1fr;
}

}

.btn-whatsapp{
    display:inline-block;
    background:#fff;
    color:#25D366;
    padding:12px 25px;
    border-radius:8px;
    font-weight:700;
    text-decoration:none;
    margin-top:15px;
}

.sucesso-contato{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:500px;
}

.sucesso-box{
    background:#fff;
    padding:50px;
    border-radius:15px;
    text-align:center;
    max-width:700px;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.sucesso-box h1{
    color:#5bb43b;
    margin-bottom:20px;
}

.sucesso-box p{
    color:#555;
    line-height:1.8;
}

.campo select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

/* =====================================================
   FOOTER
===================================================== */

.footer{
    background:#222;
    color:#fff;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    padding:60px 0;
}

.footer-logo{
    width:170px;
    margin-bottom:20px;
}

.footer h4{
    color:#fff;
    margin-bottom:18px;
    font-size:18px;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer li{
    margin-bottom:12px;
    color:#ccc;
}

.footer a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#ff9800;
}

.footer-text{
    color:#ccc;
    line-height:1.7;
    margin-bottom:15px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 0;
    color:#aaa;
    font-size:14px;
    line-height:1.8;
}

@media(max-width:900px){

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-logo{

    margin:auto auto 20px;

}

}

/* =====================================================
   MENU ATIVO
===================================================== */

.menu a.active{

    color:#f7b500;

    font-weight:600;

    position:relative;

}

.menu a.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:100%;

    height:3px;

    background:#f7b500;

    border-radius:3px;

}

/* =====================================================
   PRODUTO 2.0
===================================================== */

.hero-produto{

    background:linear-gradient(135deg,#fff9e8,#ffffff);

    padding:70px 0;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

}

.hero-texto h1{

    font-size:52px;

    line-height:1.15;

    margin-bottom:20px;

    color:#222;

}

.hero-tag{

    display:inline-block;

    background:#f7941d;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.hero-subtitulo{

    font-size:24px;

    color:#5BAF3B;

    font-weight:600;

    margin-bottom:20px;

    line-height:1.5;

}

.hero-descricao{

    font-size:18px;

    color:#555;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-botoes{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:45px;

}

.hero-imagem{

    text-align:center;

}

.hero-imagem img{

    width:100%;

    max-width:520px;

    height:auto;

}

.hero-indicadores{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.hero-indicadores div{

    background:#fff;

    border-radius:14px;

    padding:22px;

    text-align:center;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    transition:.3s;

}

.hero-indicadores div:hover{

    transform:translateY(-5px);

}

.hero-indicadores strong{

    display:block;

    font-size:30px;

    color:#f7941d;

    margin-bottom:8px;

}

.hero-indicadores span{

    color:#666;

    font-size:15px;

}



/* =====================================================
   SABORES
===================================================== */

.sabores-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:25px;

    margin-top:40px;

}

.sabor-card{

    background:#fff;

    border-radius:16px;

    padding:22px;

    text-align:center;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    transition:.3s;

    border:2px solid transparent;

}

.sabor-card:hover{

    transform:translateY(-6px);

    border-color:#f7941d;

}

.sabor-card.ativo{

    border-color:#5BAF3B;

    background:#f8fff5;

}

.sabor-card img{

    width:140px;

    height:140px;

    object-fit:contain;

    margin-bottom:18px;

}

.sabor-card h3{

    font-size:20px;

    color:#333;

}

/* =====================================================
   TEXTO COMERCIAL
===================================================== */

.texto-comercial{

    max-width:900px;

    margin:0 auto;

    font-size:18px;

    line-height:1.9;

    color:#555;

}

.texto-comercial h2{

    margin:40px 0 20px;

    color:#222;

    font-size:34px;

}

.texto-comercial h3{

    margin:30px 0 15px;

    color:#f7941d;

}

.texto-comercial p{

    margin-bottom:18px;

}

.texto-comercial ul{

    margin:20px 0 25px 25px;

}

.texto-comercial li{

    margin-bottom:12px;

}


/* =====================================================
   EMBALAGENS
===================================================== */

.section-light{

    background:#f8f8f8;

}

.embalagem-card{

    transition:.3s;

}

.embalagem-card:hover{

    transform:translateY(-5px);

}

.embalagem-card h3{

    font-size:34px;

    color:#f7941d;

    margin-bottom:15px;

}

.embalagem-card p{

    color:#666;

    line-height:1.7;

}


/* =====================================================
   CTA
===================================================== */

.cta-final{

    background:linear-gradient(
        135deg,
        #5BAF3B,
        #4a9630
    );

    color:#fff;

}

.cta-box{

    max-width:850px;

    margin:auto;

    text-align:center;

}

.cta-box h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta-box p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;

    opacity:.95;

}

.btn-lg{

    display:inline-block;

    padding:18px 34px;

    border-radius:10px;

    font-size:18px;

    font-weight:700;

    text-decoration:none;

}


/* =====================================================
   FAQ
===================================================== */

.faq{

    display:grid;

    gap:22px;

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:15px;

    padding:28px;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    transition:.3s;

}

.faq-item:hover{

    transform:translateY(-4px);

}

.faq-item h3{

    color:#f7941d;

    margin-bottom:12px;

    font-size:22px;

}

.faq-item p{

    color:#555;

    line-height:1.8;

}


/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:900px){

.hero-grid{

    grid-template-columns:1fr;

    gap:40px;

}

.hero-texto{

    text-align:center;

}

.hero-texto h1{

    font-size:40px;

}

.hero-subtitulo{

    font-size:22px;

}

.hero-botoes{

    justify-content:center;

}

.hero-indicadores{

    grid-template-columns:repeat(2,1fr);

}

.sabores-grid{

    grid-template-columns:repeat(2,1fr);

}

.cta-box h2{

    font-size:34px;

}

.cta-box p{

    font-size:18px;

}

}


@media(max-width:600px){

.hero-texto h1{

    font-size:34px;

}

.hero-indicadores{

    grid-template-columns:1fr;

}

.sabores-grid{

    grid-template-columns:1fr;

}

.hero-botoes{

    flex-direction:column;

}

.hero-botoes a{

    width:100%;

    text-align:center;

}

.texto-comercial{

    font-size:17px;

}

.section{

    padding:60px 0;

}

}