body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fff;
  color: #111;
}

/* --- Banner principal --- */
.align-blog-hero-section{
    display: flex;
    padding: 150px 100px 0px 100px;
}
.hero {
  position: relative;
  width: 100%;
  
  height: 60vh;
  overflow: hidden;
  border-radius: 20px;
}
.hero-text span {
  background: linear-gradient(90deg, #007BFF, #00C9A7); /* azul → verde água */
  -webkit-background-clip: text;
  font-weight: 900;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* suporte extra */
  color: transparent;
}
.btn-hero{
    padding: 7px 15px ;
    border-radius: 50px;
    border: 2px solid #fff;
}
.btn-hero i{
    color: #fff;
}
.btn-hero:hover{
    background: #fff;
    color: #000;
    transition: 0.3s;
}
.btn-hero:hover i{
    color: #000;
    transition: 0.3s;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: #fff;
  max-width: 600px;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
}

/* --- Posts --- */
.posts {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 100px;
}

.post {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.post h3 {
  font-size: 1.1rem;
  margin: 5px 0;
}

.post p {
  font-size: 0.95rem;
  color: #444;
}

.post span {
  font-size: 0.85rem;
  color: #777;
}

/* Responsivo */
@media (max-width: 1200px) {
      .posts {
        display: block;
        justify-content: center;
        gap: 30px;
        padding: 60px;
    }
  .post {
    margin-top: 30px;
    width: 100%;
  }
  .align-blog-hero-section {
    display: flex
;
    padding: 100px 20px 0px 20px;
}
.hero-text {
    position: absolute;
    bottom: 60px;
    left: 40px;
    color: #fff;
    max-width: 300px;
}
}
