body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        header {
	    background: linear-gradient(to right, #704F8C, #6633CC, #D63384); 
            color: white;
            padding: 15px 0;
            font-size: 31px;
            border-bottom: 6px solid #A995BA; /* Linha preta de 2px logo abaixo do cabeçalho */ 
        }
        
header a {
    text-decoration: none; /* remove o sublinhado */
            color: white;

}

header a:hover {
    text-decoration: none; /* remove o sublinhado */
            color: white;
}
header a:visited {
    text-decoration: none; /* remove o sublinhado */
            color: white;
}

header a:active {
    text-decoration: none; /* remove o sublinhado */
            color: white;
}

        .container {
            width: 80%;
            margin: 20px auto;
            padding: 10px;
            text-align: left;            
        }

        .post {
            background-color: #fff;
            margin: 10px 0;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .post h2 {
            margin-top: 0;
            font-size: 24px;
            color: #333;
        }

        .post p {
            font-size: 16px;
            color: #555;
        }

        .post .date {
            font-size: 12px;
            color: #888;
            margin-top: 10px;
        }
        
        .post img {
  
    max-width: 60%;
    height: auto;
    border-radius: 5px;
    margin-right: 15px;
    margin-bottom: 15px;
    flex: 0 0 30%;
        }

        .news-item {
            background-color: #f1f1f1;
            margin: 15px 0;
            padding: 10px;
            border-radius: 8px;
            text-align: left;
        }

        footer {
            margin-top: 30px;
            background-color: #333;
            color: white;
            padding: 10px;
        }

        a {
            color: #333;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

/* Estilos de Botões Personalizados */
button {
    background-color: #6633CC;
    color: white;
    padding: 12px 10px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin: 5px;
}

button:hover {
    background-color: #D63384;
    transform: scale(1.05);
}

button:active {
    background-color: #3e8e41;
    transform: scale(1);
}

button:focus {
    outline: none;
}

button:disabled {
    background-color: #dcdcdc;
    cursor: not-allowed;
}

/* Botão ativo (clicado permanentemente) */
button.ativo {
    background-color: #D63384;
}

    .whatsapp-float {
    position: fixed; /* ou tente 'absolute' */
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(to right, #704F8C, #6633CC, #D63384);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Media query para telas menores */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}

    


