body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8f0;
    color: #333;
}

header {
    background-color: #a8dadc;
    color: white;
    text-align: center;
    padding: 20px 0;
}

#banner {
    background-image: url('coqueiros.jpg'); /* Substitua pelo seu caminho */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#countdown {
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
}

section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

#beneficios ul, #ingredientes ul {
    list-style: none;
    padding: 0;
}

#beneficios li, #ingredientes li {
    margin-bottom: 10px;
}

#produtos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.produto {
    text-align: center;
    margin: 20px;
}

produto img {
    max-width: 150px;
}

footer {
    background-color: #a8dadc;
    color: white;
    text-align: center;
    padding: 20px 0;
}