/* Cores e estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Banner superior */
.banner-superior {
    width: 100%;
    height: 200px;
    background-color: #FF0000; /* Vermelho */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Banner tarja */
.banner-tarja {
    width: 100%;
    height: 50px;
    background-color: #000000; /* Preto */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Carrossel de produtos */
.carrossel-produtos {
    width: 90%;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
}

.carrossel-produtos .produto {
    width: 200px;
    margin: 0 10px;
    padding: 10px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: inline-block;
    vertical-align: top;
}

.carrossel-produtos .produto img {
    max-width: 100%;
    height: auto;
}

/* Banner provas sociais */
.banner-provas-sociais {
    width: 100%;
    height: 150px;
    background-color: #FF0000; /* Vermelho */
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}

/* Rodapé */
footer {
    background-color: #000000; /* Preto */
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-superior, .banner-tarja {
        font-size: 16px;
    }
    
    .carrossel-produtos .produto {
        width: 150px;
    }
}