body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #060c1a;
  color: #f1f5f9;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

.header-post {
  background-color: #1e293b;
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 2px solid #2563eb;
}

.header-post h1 {
  margin: 0;
  font-size: 2rem;
  color: #38bdf8;
}

.header-post nav a {
  color: #c46e00;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.post-content {
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.post-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #c46e00;
  text-align: center;

}

.post-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.post-text h3 {
  color: #38bdf8;
  margin-top: 1.5rem;
}

.post-text p, .post-text ul {
  font-size: 1rem;
  line-height: 1.7;
  color: #e2e8f0;
  text-align: justify;
}

.post-text ul {
  padding-left: 1.5rem;
}

.footer-post {
  background-color: #0f172a;
  text-align: center;
  padding: 1rem;
  color: #94a3b8;
  margin-top: 3rem;
  font-size: 0.9rem;
}


.item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.icone {
    color: #ffcc00; /* azul profissional, pode mudar */
    font-size: 1.2em;
}

.item a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.item a:hover {
    color: #0056b3;
    font-size: 1.6em;
}

img {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  display: block;
  object-fit: contain;
  border: 1px solid #ddd;
  padding: 5px;
  background: #fff;

}

.scroll-img-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.scroll-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 2s ease;
  
}
.scroll-img-box:hover{
  transform: scale(1.1);
  transition: 0.5s; 
  
}

.share-buttons a {
      color: #C46E00;
      text-decoration: none;
      margin-right: 8px;
      font-weight: bold;
    }
