/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8f5;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 20px;
}

/* =====================================================
   HEADER
===================================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    z-index:999;
}

.navbar{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:34px;
    font-weight:800;
    color:#2E7D32;
    text-decoration:none;
}

.logo img{
    width:42px;
    height:42px;
    object-fit:contain;
    display:block;
}

.logo span{
    color:#2E7D32;
    line-height:1;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:#333;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#2E7D32;
}

.btn-header{
    background:#2E7D32;
    color:#fff;
    padding:14px 30px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.btn-header:hover{
    background:#1B5E20;
    transform:translateY(-3px);
}

/* =====================================================
   HERO
===================================================== */

.hero{
    background: linear-gradient(135deg,#0d5b57,#1d8b6c);
    color:#fff;
    padding:150px 0 90px;
    overflow:hidden;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-250px;
    top:-180px;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    max-width:1400px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.hero-left{
    flex:1.1;
    max-width:480px;
}

.hero-product{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-left:-40px;
    margin-top:-10px;
}

.hero-product img{
    width:100%;
    max-width:560px;
    height:auto;
    transition:.35s ease;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.25));
}

.hero-product img:hover{
    transform:scale(1.06) rotate(-2deg);
}

.hero-right{
    flex:1.2;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    margin-top:-15px;
margin-left:25px;
}

.hero-family{
    width:100%;
    max-width:430px;
    height:360px;
    object-fit:cover;
    border-radius:22px;
    box-shadow:0 25px 45px rgba(0,0,0,.22);
    transition:.35s ease;
}

.hero-family:hover{
    transform:translateY(-6px);
}


.tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:40px;
    border:1px solid rgba(255,255,255,.25);
    font-weight:700;
    margin-bottom:25px;
}


.hero p{
    font-size:21px;
    color:rgba(255,255,255,.92);
    margin-bottom:30px;
}

.hero-rating{
    display:flex;
    align-items:center;
    gap:15px;
    margin:25px 0;
    padding:16px 20px;
    background:#ffffff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    width:fit-content;
}

.rating-stars{
    font-size:22px;
    color:#FFC107;
    letter-spacing:2px;
}

.rating-info{
    display:flex;
    flex-direction:column;
    line-height:1.3;
}

.rating-info strong{
    font-size:20px;
    color:#1d1d1d;
    font-weight:700;
}

.rating-info span{
    color:#666;
    font-size:14px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.btn-primary{
    background:linear-gradient(180deg,#39A845,#2E7D32);
    color:#fff;
    padding:22px 46px;
    border-radius:14px;
    font-weight:700;
    font-size:18px;
    display:inline-block;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.btn-primary:hover{
    background:linear-gradient(180deg,#45B652,#2E7D32);
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 15px 30px rgba(0,0,0,.30);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:18px 38px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
    display:inline-block;
}

.btn-secondary:hover{
    background:#fff;
    color:#0d5b57;
}

.trust{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.trust span{
    background:#fff;
    color:#222;
    padding:12px 20px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* =====================================================
   SEÇÕES
===================================================== */

section{
    padding:100px 0;
}

.section-tag{
    display:inline-block;
    background:#E8F5E9;
    color:#2E7D32;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

section h2{
    font-size:44px;
    margin-bottom:20px;
    color:#222;
}

.section-description{
    max-width:720px;
    color:#666;
    font-size:18px;
    margin-bottom:50px;
}

/* =====================================================
   CARDS
===================================================== */

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.ingredient-image{
    width:100%;
    height:180px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    margin-bottom:20px;
}

.ingredient-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s ease;
}

.card:hover .ingredient-image img{
    transform:scale(1.08);
}

.icon{
    font-size:52px;
    margin-bottom:20px;
}

.card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* =====================================================
   BENEFÍCIOS
===================================================== */

.beneficios{
    background:#fff;
}

/* =====================================================
   PRODUTO
===================================================== */

.produto{
    background:#fff;
}

.produto-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.garantia-img{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.garantia-img img{
    width:400px;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.20));
}

.produto-texto{
    flex:1;
}

.produto-texto p{
    color:#666;
    font-size:18px;
    margin:25px 0;
}

.produto-list{
    margin-bottom:35px;
}

.produto-list li{
    font-size:18px;
    margin-bottom:15px;
}

/* =====================================================
   INGREDIENTES
===================================================== */

.ingredientes{
    background:#F7FAF7;
}

/* =====================================================
   ESTATÍSTICAS
===================================================== */

.estatisticas{
    background:#2E7D32;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    text-align:center;
    padding:35px;
}

.stat-card h3{
    font-size:48px;
    font-weight:800;
    margin-bottom:10px;
}

.stat-card p{
    font-size:18px;
    opacity:.95;
}

/* =====================================================
   DEPOIMENTOS
===================================================== */

.reviews{
    background:#ffffff;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.stars{
    color:#FFC107;
    font-size:26px;
    margin-bottom:18px;
}

.review-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.review-card strong{
    color:#2E7D32;
    font-size:17px;
}

/* =====================================================
   GARANTIA
===================================================== */

.garantia{
    background:#F8FFF8;
}

.garantia-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.garantia-img{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    flex:1;
}

.selo-principal{
    width:260px;
    filter:drop-shadow(0 10px 20px rgba(0,0,0,.12));
}

.garantia-selos img{
    width:120px;
    height:120px;
    object-fit:contain;
    filter:drop-shadow(0 10px 20px rgba(0,0,0,.12));
}

.garantia-selos{
    display:grid;
    grid-template-columns:repeat(2,120px);
    gap:20px;
}


/* =====================================================
   SELOS
===================================================== */

.selos{
    background:#ffffff;
}

.selos .cards{
    margin-top:50px;
}

/* =====================================================
   OFERTA
===================================================== */

.comprar{
    background:linear-gradient(135deg,#2E7D32,#43A047);
    color:#fff;
    text-align:center;
}

.comprar .section-tag{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.comprar h2{
    color:#fff;
}

.comprar .section-description{
    color:#F5F5F5;
    margin:20px auto 50px;
}

.oferta-box{
    background:#fff;
    color:#222;
    max-width:520px;
    margin:0 auto;
    border-radius:22px;
    padding:45px;
    box-shadow:0 30px 60px rgba(0,0,0,.20);
}

.preco-antigo{
    font-size:18px;
    color:#888;
    margin-bottom:10px;
}

.preco-antigo del{
    color:#C62828;
    font-weight:600;
}

.parcelamento{
    font-size:18px;
    color:#555;
    margin-bottom:25px;
}

.oferta-beneficios{
    margin:30px 0;
    text-align:left;
}

.oferta-beneficios li{
    margin-bottom:12px;
    font-size:17px;
    color:#333;
    font-weight:500;
}

.oferta-box .btn-primary{
    display:block;
    width:100%;
    text-align:center;
    font-size:20px;
    padding:20px;
    margin-top:25px;
}

.oferta-box h3{
    color:#2E7D32;
    margin-bottom:15px;
}

.oferta-box h1{
    color:#1B5E20;
    font-size:58px;
    margin-bottom:15px;
}

.oferta-box p{
    color:#666;
    margin-bottom:35px;
}

/* =====================================================
   FAQ
===================================================== */

.faq{
    background:#F9FAFB;
}

.faq-item{
    max-width:900px;
    margin:20px auto;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.faq-answer{
    display:none;
    padding:0 24px 24px;
    color:#666;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    display:block;
}

/* =====================================================
   FOOTER
===================================================== */

footer{
    background:#111;
    color:#fff;
    padding:70px 0 30px;
}

.footer-logo{
    text-align:center;
    margin-bottom:40px;
}

.footer-logo h2{
    color:#4CAF50;
    font-size:36px;
    margin-bottom:15px;
}

.footer-logo p{
    max-width:700px;
    margin:auto;
    color:#CCC;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
    margin-bottom:35px;
}

.footer-links a{
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.footer-links a:hover{
    color:#4CAF50;
}

.footer-copy{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:30px;
}

.footer-copy p{
    color:#AAA;
    font-size:14px;
    line-height:1.8;


/* =====================================================
   ANIMAÇÕES
===================================================== */

.card,
.review-card,
.stat-card,
.oferta-box,
.faq-item{
    transition:all .35s ease;
}

.card:hover,
.review-card:hover,
.oferta-box:hover{
    transform:translateY(-8px);
}

.btn-primary,
.btn-secondary,
.btn-header{
    transition:all .3s ease;
}

/* =====================================================
   RESPONSIVO TABLET
===================================================== */

@media (max-width:1100px){

    .hero-content,
    .produto-container,
    .garantia-container{
        flex-direction:column;
        text-align:center;
    }

    .hero{
    padding:100px 40px 70px;
}

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:19px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .trust{
        justify-content:center;
    }

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

    .review-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-family{
    width:340px;
}

}

/* =====================================================
   RESPONSIVO CELULAR
===================================================== */

@media (max-width:768px){

    .header{
        position:relative;
    }

    .navbar{
        height:auto;
        padding:25px 0;
        flex-direction:column;
        gap:20px;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
    padding:70px 20px 50px;
}

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-family{
    width:260px;
}

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-header{
        width:100%;
        text-align:center;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    section{
        padding:70px 0;
    }

    section h2{
        font-size:30px;
    }

    .oferta-box{
        padding:30px;
    }

    .oferta-box h1{
        font-size:42px;
    }

    .footer-links{
        flex-direction:column;
        gap:15px;
    }

    .trust{
        justify-content:center;
    }

}

/* =====================================================
   RESPONSIVO TELAS MUITO PEQUENAS
===================================================== */

@media (max-width:480px){

    .container{
        padding:0 15px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-rating{
        font-size:14px;
        padding:10px 14px;
    }

    .tag{
        font-size:13px;
        padding:8px 14px;
    }

    .hero-family{
    width:220px;
}

    .stat-card h3{
        font-size:36px;
    }

    .card{
        padding:25px;
    }

    .review-card{
        padding:25px;
    }

}

.selo-principal{
    width:240px;
}


.garantia-selos{
    display:grid;
    grid-template-columns:repeat(2, 140px);
    gap:20px;
    justify-content:center;
    align-items:center;
}


.garantia-botao{
    display:flex;
    justify-content:center;
    margin-top:25px;
}

.garantia-botao .btn-primary{
    padding:18px 45px;
    font-size:18px;
}
/* =====================================================
   FIM DO ARQUIVO
===================================================== */

/* ===== CHECKOUT ===== */

body.checkout .hero,
body.checkout .beneficios,
body.checkout .ingredientes,
body.checkout .depoimentos,
body.checkout .faq {
    display: none;
}

body.checkout .comprar {
    padding-top: 120px;
}

/* ======== Avaliação Hero ======== */

.hero-rating{
    display:flex;
    align-items:center;
    gap:12px;
    margin:20px 0;
    font-size:16px;
    font-weight:600;
    color:#ffffff;
}

.hero-rating .stars{
    color:#FFD700;
    font-size:24px;
    letter-spacing:3px;
    text-shadow:0 0 10px rgba(255,215,0,.45);
}

.hero-rating span:last-child{
    color:#ffffff;
    font-size:16px;
    }
}

/* ===========================
   COMO FUNCIONA
=========================== */

.how-it-works{

    padding:90px 0;

    background:#ffffff;

}

.steps{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.step-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.step-card:hover{

    transform:translateY(-8px);

}

.step-number{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#2E7D32;

    color:white;

    font-size:28px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.step-card h3{

    margin-bottom:15px;

    color:#1d1d1d;

}

.step-card p{

    color:#666;

    line-height:1.8;

}

/* ===== PRODUCT HIGHLIGHTS ===== */

.product-highlights{
    margin-top:90px;
    padding:50px;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.product-highlights h3{
    text-align:center;
    font-size:32px;
    color:#1b4332;
    margin-bottom:35px;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.highlight-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:#ffffff;
    padding:24px;
    border-radius:16px;
    border:1px solid #E6E6E6;
    transition:.3s;
}

.highlight-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.highlight-item span{
    font-size:30px;
}

.highlight-item p{
    margin:0;
    color:#444;
    font-weight:500;
}

@media(max-width:768px){

    .highlight-grid{
        grid-template-columns:1fr;
    }

    .product-highlights{
        padding:25px;
    }

}

/* ===========================
   PROVA SOCIAL
=========================== */

.social-proof{

    padding:90px 0;

    background:#ffffff;

}

.social-proof .section-tag{

    display:inline-block;

    background:#e9f7ea;

    color:#2e7d32;

    font-size:13px;

    font-weight:700;

    padding:8px 16px;

    border-radius:30px;

    margin-bottom:20px;

}

.social-proof h2{

    font-size:56px;

    font-weight:800;

    color:#222;

    margin-bottom:20px;

}

.social-proof .section-description{

    max-width:650px;

    color:#666;

    font-size:20px;

    line-height:1.7;

    margin-bottom:60px;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.review-card:hover{

    transform:translateY(-8px);

}

.review-card .stars{

    color:#ffb400;

    font-size:26px;

    margin-bottom:20px;

}

.review-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

.review-card strong{

    color:#2e7d32;

    font-size:18px;

}

.cta-final .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    max-width:520px;

    padding:24px 42px;

    font-size:24px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.6px;

    border-radius:16px;

    background:linear-gradient(135deg,#4CAF50,#2E7D32);

    color:#fff;
    text-decoration:none;

    box-shadow:
        0 12px 35px rgba(0,0,0,.35),
        0 0 25px rgba(76,175,80,.45);

    transition:.3s;
}

/* CTA FINAL */

.cta-final{
    padding:90px 20px;
    background:linear-gradient(180deg,#f7faf8,#eef8f3);
    text-align:center;
}

.cta-final h2{
    font-size:48px;
    max-width:900px;
    margin:20px auto;
    line-height:1.2;
    color:#1d1d1d;
}

.cta-final p{
    font-size:20px;
    color:#555;
    max-width:760px;
    margin:0 auto 35px;
    line-height:1.7;
}

.cta-final .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:auto;
    min-width:500px;
    max-width:90%;

    padding:22px 42px;

    font-size:24px;
    font-weight:800;

    text-decoration:none;

    border-radius:18px;

    animation:pulse 1.6s infinite;
}

.cta-final .btn-primary:hover{
    transform:translateY(-5px) scale(1.03);
}

.cta-benefits{
    margin-top:28px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-benefits span{
    background:#ffffff;
    padding:12px 20px;
    border-radius:30px;
    font-weight:700;
    color:#2f8b3d;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

@keyframes pulseCTA{

0%{
transform:scale(1);
}

50%{
transform:scale(1.04);
}

100%{
transform:scale(1);
}

}

.urgencia-box{
    display:inline-block;
    background:#fff7e8;
    border:2px solid #ffb300;
    border-radius:18px;
    padding:22px 34px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);

    max-width:700px;
    margin:20px auto;
}

.urgencia-box strong{
    display:block;
    color:#d32f2f;
    font-size:24px;
    margin-bottom:10px;
    font-weight:800;
}

.urgencia-box p{
    margin:0;
    color:#444;
    font-size:18px;
    line-height:1.6;
}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
box-shadow:0 0 40px rgba(56,142,60,.45);
}

100%{
transform:scale(1);
}

}

