/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #003366; /* Fundo azul */
    color: white; /* Texto branco */
    margin: 0;
    padding: 0;
}

header {
    background-color: #004080; /* Azul mais forte */
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Promoção */
.promocao {
    background-color: #0066cc;
    padding: 20px;
    text-align: center;
}

.promocao h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.promocao p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.promocao button {
    background-color: #ffcc00; /* Botão amarelo */
    color: black;
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
}

.promocao button:hover {
    background-color: #ff9900;
}

#mensagemPromo {
    font-size: 1.2em;
    margin-top: 20px;
}

/* Produtos */
.produtos {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background-color: #0059b3;
}

.produto {
    text-align: center;
    width: 200px;
}

.produto img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.produto h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.produto p {
    font-size: 1.2em;
}

/* Rodapé */
footer {
    background-color: #004080;
    padding: 15px;
    text-align: center;
}

footer p {
    font-size: 1em;
}
