/* HEADER / HERO ATACADO */
#hero-atacado {
    position: relative;
    height: 100vh;
    background: url('fundo.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Overlay escura por cima da imagem */
#hero-atacado .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Logo */
.logo {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 2;
}

.logo img {
    height: 60px;
}

/* Texto sobre a imagem */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
}

/* Botão CTA */
.btn-cta {
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.btn-cta i {
    margin-right: 10px;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .logo img {
        height: 50px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');
.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}






/* SEÇÃO EMPATIA */
#empatia {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

#empatia h2 {
    font-size: 2rem;
    color: #2A5C3B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
}

/* BLOCO DE PARÁGRAFOS */
.empatia-textos {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.empatia-textos p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    #empatia {
        text-align: center;
    }

    .empatia-textos {
        text-align: center;
    }
}


/* SEÇÃO TRANSFORMAÇÃO */
#transformacao {
    background-color: #fdfdfd;
    padding: 80px 20px;
    text-align: center;
}

#transformacao h2 {
    font-size: 2.3rem;
    color: #2A5C3B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

#transformacao .intro {
    font-size: 1.1rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-family: 'Poppins', sans-serif;
}

/* GRID DE BENEFÍCIOS */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* CADA ITEM */
.beneficio {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.beneficio i {
    font-size: 1.8rem;
    color: #2A5C3B;
    min-width: 30px;
}

.beneficio p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
    }

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

    .beneficio i {
        margin-bottom: 10px;
    }
}






/* SEÇÃO REVENDEDOR */
#revendedor {
    background-color: rgba(42, 92, 59, 0.03); /* Verde da marca com leve transparência */
    padding: 80px 20px;
    text-align: center;
}

#revendedor h2 {
    font-size: 2.2rem;
    color: #2A5C3B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
}

.revendedor-conteudo {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.revendedor-conteudo p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .revendedor-conteudo {
        text-align: center;
    }
}



/* SEÇÃO CTA COM LOGO */
#cta-personalizado {
    background-color: #ffffff;
    padding: 80px 20px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* TEXTO */
.cta-texto h2 {
    font-size: 2rem;
    color: #2A5C3B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-texto p {
    font-size: 1.1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
}

/* BOTÃO */
.cta-texto .btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.cta-texto .btn-whatsapp i {
    margin-right: 10px;
}

.cta-texto .btn-whatsapp:hover {
    transform: scale(1.05);
}

/* LOGO */
.cta-logo img {
    width: 100%;
    max-width: 300px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-logo img {
        margin-top: 30px;
    }
}





/* PREÇOS ATACADO */
#precos-atacado {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

#precos-atacado h2 {
    font-size: 2rem;
    color: #2A5C3B;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

#precos-atacado p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

/* GRID DE ITENS */
.preco-atacado-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.preco-atacado-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.preco-atacado-item h3 {
    font-size: 1.2rem;
    color: #2A5C3B;
    margin-bottom: 10px;
}

.preco-atacado-item p {
    font-size: 1rem;
    color: #444;
    margin: 6px 0;
}

/* BOTÃO WHATSAPP */
.preco-atacado-item .btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.preco-atacado-item .btn-whatsapp i {
    margin-right: 8px;
}

.preco-atacado-item .btn-whatsapp:hover {
    transform: scale(1.05);
}
.preco-atacado-item p {
    margin-bottom: 5px;
}

.preco-atacado-item .btn-whatsapp {
    margin-top: 20px;
}





/* SEÇÃO BÔNUS E GARANTIAS */
#bonus-garantias {
    background-color: #fdfdfd;
    padding: 80px 20px;
    text-align: center;
}

#bonus-garantias h2 {
    font-size: 2rem;
    color: #2A5C3B;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
}

/* GRID DE CARDS */
.cards-garantia {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ÍCONES */
.card i {
    font-size: 2rem;
    color: #2A5C3B;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2rem;
    color: #2A5C3B;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.card p {
    font-size: 1rem;
    color: #444;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}



/* FOOTER */
footer {
    background-color: #8B0000;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

footer a {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

