@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif;
  background-color: #f9f9f9;
  color: #1a1a1a;
}

/* ===== Navbar ===== */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0px;
  background-color: #b50000;
  color: #fff;
  z-index: 1000;
  width: 100%;
}

.logo img {
  width: 250px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  background: #fff;
  height: 3px;
  margin: 4px 0;
  width: 25px;
  transition: all 0.3s ease;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links{
  display: flex;
  gap: 15px;
}

.nav-links a,
.social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.social-icons i {
  font-size: 20px;
}

/* Animação do ícone hambúrguer */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar {
  background-color: #000000cc;
  padding: 20px 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.back-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #e40000;
}

/* ===== Banner ===== */
.post-banner {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  border-bottom: 6px solid #e40000;
}

/* ===== Conteúdo ===== */
.post-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.post-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  margin-bottom: 30px;
  border-left: 6px solid #e40000;
  padding-left: 15px;
  color: #111;
}

.post-content {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #444;
  white-space: pre-line;
}

/* ===== Footer ===== */
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo img {
  max-height: 60px;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #e40000;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #bbb;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
 .post-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 30px;
    border-left: 6px solid #e40000;
    padding-left: 15px;
    color: #111;
}

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-logo img {
  max-height: 30px;
}
}
