        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        display: flex;
    justify-content: center;
    padding: 20px;
        }

        .bEnviar {
            font-family: Arial, sans-serif;
            font-size: 16px;
            margin: 0;
            padding: 15px;
            background-color: #40ACFF;
        }

        .bCancelar {
            font-family: Arial, sans-serif;
            font-size: 14px;
            margin: 0;
            padding: 16px;
            background-color: #FF5454;
        }
   
   
   
   
   
   
 


/* Container principal */
#divPosts {
    width: 100%;
    max-width: 650px; /* deixa elegante em qualquer tela */
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Cada item */
.postItem {
    padding: 25px;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.2s;
}

/* Efeito ao tocar/clicar */
.postItem:hover {
    transform: scale(1.02);
}

/* Imagem grande, proporcional ao texto */
.postImg {
    width: 100%;
    height: auto;          /* deixa a imagem natural */
    max-height: 350px;     /* evita exageros */
    object-fit: cover;     /* mantém bonito */
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Texto */
.postText {
    font-size: 35px;
    line-height: 1.5;
    color: #222;
}

/* Cores alternadas */
.postItem:nth-child(1) { background: #ffebee; }
.postItem:nth-child(2) { background: #e3f2fd; }
.postItem:nth-child(3) { background: #e8f5e9; }
.postItem:nth-child(4) { background: #fff3e0; }
.postItem:nth-child(5) { background: #f3e5f5; }
.postItem:nth-child(6) { background: #e0f7fa; }

/* Se tiver mais itens, continue o padrão */
.postItem:nth-child(7) { background: #ffebee; }
.postItem:nth-child(8) { background: #e3f2fd; }