
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIÁVEIS */
:root {
    --verde-principal: #2e8b57;
    --verde-claro: #eaf6ef;
    --verde-escuro: #1e5631;
    --cinza-texto: #444;
}

/* BASE */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--cinza-texto);
    background-color: #fff;
    line-height: 1.6;
}

h1, h2 {
    color: var(--verde-escuro);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* BOTÃO */
.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* HERO */
.hero {
    background: linear-gradient(
        rgba(30, 86, 49, 0.85),
        rgba(30, 86, 49, 0.85)
    ),
    url("../assets/bg-health.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    opacity: 0.95;
}

/* LOGO */
.logo {
    max-width: 140px;
    margin-bottom: 30px;
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* SEÇÕES */
section {
    padding: 80px 20px;
}

section:nth-child(even) {
    background: var(--verde-claro);
}

/* BENEFÍCIOS */
.beneficios {
    text-align: center;
}

.beneficios h2 {
    margin-bottom: 1.5rem;
}

.beneficios > p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* CARDS */
.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 40px 30px;
    width: 320px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.card strong {
    display: block;
    font-size: 1.3rem;
    margin: 15px 0 10px;
    color: var(--verde-escuro);
}

.card p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--cinza-texto);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* PRODUTO */
.produto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.produto > div {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.produto img {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.2));
    border-radius: 10px;
}

.produto h2 {
    margin-bottom: 1.5rem;
}

.produto p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.produto ul {
    list-style: none;
    margin: 2rem 0;
    padding-left: 1rem;
}

.produto ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    padding-left: 30px;
    position: relative;
}

.produto ul li:before {
    content: "✔";
    color: var(--verde-principal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* DEPOIMENTOS */
.depoimentos {
    background: linear-gradient(135deg, #2e8b57, #1e5631);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.depoimentos h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.depoimentos > p {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.depoimentos span {
    display: block;
    margin-top: 1.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}

/* GARANTIA */
.garantia {
    background: #fff;
    text-align: center;
    padding: 80px 20px;
}

/* PROBLEMA SECTION - específica para a seção de identificação */
.produto[style*="background:#f1f8f4"] {
    background: #f1f8f4 !important;
    text-align: center;
}

.produto[style*="background:#f1f8f4"] > div {
    max-width: 800px;
    margin: 0 auto;
}

/* RODAPÉ */
footer {
    background: var(--verde-escuro);
    color: #fff;
    text-align: center;
    padding: 40px 15px;
}

footer p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

footer a {
    color: #9effc3;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

footer a:hover {
    text-decoration: underline;
    color: #fff;
}

/* PÁGINA DE PRIVACIDADE */
.privacidade h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--verde-escuro);
}

.privacidade h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--verde-principal);
}

.privacidade p {
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
}

.privacidade strong {
    color: var(--verde-escuro);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero p,
    .beneficios > p {
        font-size: 1.1rem;
    }

    .produto {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .produto > div {
        text-align: center;
    }

    .produto ul {
        text-align: left;
        display: inline-block;
    }

    .cards {
        gap: 20px;
    }
    
    .card {
        width: 100%;
        max-width: 350px;
        padding: 30px 20px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .depoimentos {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 50px 15px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .produto ul li {
        font-size: 1rem;
        padding-left: 25px;
    }
    
    .logo {
        max-width: 120px;
    }
}