/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.header {
  background-color: #000;
  padding: 10px 0;
  border-bottom: 4px solid #c40000;
}

.header h1,
.header h1 a {
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  font-weight: bold;
}

/* MENU */
.menu {
  margin: 20px 0;
}

.menu a {
  margin-right: 15px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.menu a:hover {
  color: #c40000;
}

/* POSTS */
.post {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.post h2 {
  color: #c40000;
  margin-bottom: 10px;
}

.post h3 {
  margin-top: 20px;
  color: #111;
}

.post ul {
  margin: 15px 0 15px 20px;
}

/* SETA DE NAVEGAÇÃO */
.next-page {
  text-align: right;
  margin-top: 30px;
}

.next-page a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #c40000;
}

.next-page a:hover {
  color: #900000;
}

/* FOOTER */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}
/* HERO BANNER */
.hero {
  background-color: #111;
  color: #fff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 30px;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #c40000;
}

.hero p {
  font-size: 16px;
}

/* INTRO */
.intro {
  margin-bottom: 30px;
  font-size: 16px;
}

/* GRID DE POSTS */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.post-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.post-card h3 {
  color: #c40000;
  margin-bottom: 10px;
}

.post-card a {
  text-decoration: none;
  font-weight: bold;
  color: #222;
}

.post-card a:hover {
  color: #c40000;
}

/* HEADER COM LOGO */
.header-content {
  display: flex;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 80px;
  
}

.logo-area span {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

