* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color:#666;
    color: white;
    padding: 1rem 0;
}
		.logoL, .logoC{
			font-family: 'Anton', sans-serif;
			font-size:24px;
			text-shadow: hsla(0,0%,20%,1.00) 0.02em 0.02em 0.02em;
			vertical-align: middle; 
			max-height: 30%;
		}
		.logoL{
			color:rgba(240,173,78,1.00);
		}
		.logoC{
			color:rgba(90,83,84,1.00);
		}
		
		.meuHr{
			height:5px;
			border:0; 
			background:repeating-linear-gradient(45deg, transparent, transparent 10px, #E0E0E0 10px, #E0E0E0 20px), linear-gradient(to bottom, #E0E0E0, #E0E0E0);
		}

				
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main content */
main {
    padding: 2rem 0;
}

h1, h2 {
    margin-bottom: 1rem;
}

/* Acontecimentos */
.acontecimento {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
	padding-bottom:10px;
}

.acontecimento img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.meta {
    color: #666;
    font-size: 0.6rem;
}

/* Formulários */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    min-height: 200px;
}

button, .btn {
    background-color: #333;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

button:hover, .btn:hover {
    background-color: #555;
}

/* Login */
.login-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.erro {
    color: red;
    margin-bottom: 1rem;
}

/* Navegação entre posts */
.navegacao-posts {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Footer */
footer {
   /* background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;*/
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.5rem 0.5rem 0;
    }
    
    .navegacao-posts {
        flex-direction: column;
        gap: 1rem;
    }
    
    .anterior, .proximo {
        text-align: center;
    }
}