body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0e0e0e; /* preto elegante */
    color: #eaeaea;      /* branco suave */
}


/* BANNER */
.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* ===========================
   BIOGRAFIA
   =========================== */
.bio {
    background: #0f0f0f;
    padding: 80px 20px;
}

.bio-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.bio-texto {
    flex: 1;
}

.bio-texto h2 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.bio-texto p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 20px;
    
    /* ADICIONADO: Justificação e Hifenização */
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}


.bio-imagem {
    flex: 1;
    text-align: center;
}

.bio-imagem img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (min-width: 769px) {
    .bio-imagem img {
        max-width: 550px; /* Aumenta a imagem apenas no Desktop */
    }
}

/* imagem do banner vinda do HTML */
.banner picture,
.banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* conteúdo do banner */
.banner-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: white;
}

.banner-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px black;
}

.banner-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px black;
}

@media (max-width: 768px) {
    .banner {
        height: 45vh;
        min-height: 300px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }
}


/*introdução pos banner*/
.intro {
    text-align: center;
    padding: 60px 20px;
    background: #121212;
}

.intro h1 {
    font-size: 2.6rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.intro p {
    max-width: 720px;
    margin: auto;
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}



/* PRODUTOS */
.produtos {
    width: 80%;
    margin: auto;
    padding: 60px 0;
    background: #0f0f0f;
}
.produto {
    background: #151515;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.produto img {
    width: 50%;
}


.produto {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.produto img {
    width: 45%;
    border-radius: 10px;
}

.produto .texto {
    width: 50%;
    padding: 20px;
    
}

.produto .texto h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.produto .texto p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #bfbfbf;
}


.botao {
    display: inline-block;
    background: #ff4500;
    padding: 12px 25px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.botao:hover {
    background: #ff6a33;
    transform: scale(1.05);
    transition: 0.3s;
}
.botao {
    font-size: 1.1rem;
    padding: 14px 35px;
}

.selo {
    color: #ff4500;
    font-weight: bold;
    margin-bottom: 10px;
}


/* Alternância de layout */
.esquerda img { order: 1; }
.esquerda .texto { order: 2; }

.direita .texto { order: 1; }
.direita img { order: 2; }

/* Benefícios */
.beneficios {
    background: #FFFFFF;
    padding: 40px;
    text-align: center;
}
.beneficios-produto {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.beneficios-produto li {
    color: #cccccc;
    margin-bottom: 8px;
}

.produto .texto h2 {
    font-size: 2.2rem;
}

.produto .texto p {
    font-size: 1.15rem;
    max-width: 420px;
}


.beneficios,.provas { padding: 60px 80px;}

.beneficios h2,.beneficios p,.beneficios li {
    color: #000000;
}

.beneficios ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

/*whatsapp*/
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 999;
}

.whatsapp img {
    width: 60px;
    height: 60px;
}

.whatsapp {
    background: transparent;
    box-shadow: none;
}

.whatsapp:hover {
    transform: scale(1.1);
    transition: 0.5s;
}


/*footer*/
footer {
    background: #0b0b0b;
    color: #cccccc;
    padding: 50px 20px;
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

footer h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

footer p,
footer a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 1rem;
}

footer a:hover {
    color: #ff4500;
}

.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .beneficios,
    .provas {
        padding: 40px 20px;
    }
}

/* novo versão 4*/

/* ===========================
   BIOGRAFIA MOBILE
   =========================== */
@media (max-width: 768px) {

    .bio {
        padding: 60px 16px;
    }

    .bio-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .bio-texto h2 {
        font-size: 1.9rem;
    }

    .bio-texto p {
        font-size: 1rem;
    }
}


/* ===========================
   AJUSTES MOBILE – PRODUTOS
   =========================== */
@media (max-width: 768px) {

    /* Área geral dos produtos */
    .produtos {
        width: 100%;
        padding: 30px 16px;
    }

    /* Caixa do produto */
    .produto {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px; /* MAIS RESPIRO */
        margin: 0 auto 40px;
        max-width: 420px; /* evita colar na borda em telas estreitas */
        border-radius: 18px;
    }

    /* IMAGEM SEMPRE EM CIMA */
    .produto img {
        width: 100%;
        max-width: 260px;
        margin: 0 auto 22px;
        order: 1;
    }

    /* Texto vem depois da imagem */
    .produto .texto {
        width: 100%;
        padding: 0 4px; /* afastamento lateral do texto */
        order: 2;
    }

    /* TÍTULOS */
    .produto .texto h2 {
        font-size: 1.55rem;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    /* PARÁGRAFOS */
    .produto .texto p {
        font-size: 1rem;
        line-height: 1.65;
        max-width: 100%;
        margin: 0 auto 16px;
    }

    /* BENEFÍCIOS */
    .beneficios-produto {
        text-align: center;
        padding: 0;
        margin: 20px 0;
    }

    .beneficios-produto li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    /* BOTÃO */
    .produto .botao {
        display: inline-block;
        margin: 22px auto 0;
        font-size: 1rem;
        padding: 14px 32px;
    }
}

/* REMOVE SCROLL LATERAL */
html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ===========================
   CORREÇÃO REAL DE ESPAÇAMENTO MOBILE
   =========================== */
@media (max-width: 768px) {

    /* Container geral */
    .produtos {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Caixa individual */
    .produto {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }

    /* Texto nunca colado */
    .produto .texto {
        padding-left: 6px;
        padding-right: 6px;
        box-sizing: border-box;
    }

    /* Imagem alinhada */
    .produto img {
        max-width: 260px;
    }
}

/* PROTEÇÃO GLOBAL */
*, *::before, *::after {
    box-sizing: border-box;
}

/* outros */
.texto-justificado {
    text-align: justify;
}
