@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-image: url("../assets/background.png");
  background-color: rgba(255, 255, 255, 0.5);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: overlay;
  overflow-x: hidden;
}

.navbar-blog {
  position: fixed;
  display: flex;
  justify-content: center;
  z-index: 3;
  width: 100vw;
  margin: 0 auto;
  background-color: #FAF9F6;
}

.navbar__container-blog {
    width: 90vw;
    height: 75px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FAF9F6;
}

.navbar__image-blog {
  position: relative;
  cursor: pointer;
  width: 150px;
}

.navbar__cta-blog {
  background-color: #ff941e;
  border-radius: 25px;
  padding: 10px;
  color: white;
  font-weight: bold;
  z-index: 3;
  width: 200px;
  text-align: center;
}

.blog {
  width: 100vw;
  display: flex;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.55);
}

.blog h2 {
  font-size: 1.2rem;
  padding-top: 35px;
  padding-bottom: 20px;
  font-weight: bold;
}

.navbar__image-blog {
  position: relative;
  cursor: pointer;
  width: 150px;
}

.artigos {
  width: 100vw;
  height: 2000px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 50px;
  align-items: center;
  justify-content: center;
}

.blog__novidades-new {
  display: flex;
  padding: 10px;
  width: 500px;
  height: 150px;
  border-radius: 20px;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.5);
  margin: 12px 7px;
}

#last {
  border-bottom: none;
}

#gray {
  color: gray;
}

.blog__novidades-new img {
  width: 150px;
  height: 150px;
  border-radius: 35px;
  object-fit: cover;
  object-position: center;
}

.blog__novidades-new a {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 25px;
  font-weight: 500;
}

.blog__novidades-new a:hover {
  color: #ff8400;
}

.blog__texto {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.blog__texto p {
  line-height: 20px;
  font-size: 0.9rem;
}

@media (max-width: 570px) {
  .artigos {
    height: 4000px;
  }
  
  .blog__novidades-new {
    display: flex;
    padding: 10px;
    width: 350px;
    height: 150px;
    border-radius: 20px;
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.5);
    margin: 12px 7px;
  }
  
  #last {
    border-bottom: none;
  }
  
  #gray {
    color: gray;
  }
  
  .blog__novidades-new img {
    width: 100px;
    height: 100px;
    border-radius: 35px;
    object-fit: cover;
    object-position: center;
  }
  
  .blog__novidades-new a {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 25px;
    font-weight: 500;
  }
  
  .blog__novidades-new a:hover {
    color: #ff8400;
  }
  
  .blog__texto {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  
  .blog__texto p {
    line-height: 20px;
    font-size: 0.8rem;
  }

  .navbar__cta-blog {
    background-color: #ff941e;
    border-radius: 25px;
    padding: 10px;
    color: white;
    font-weight: bold;
    z-index: 3;
    width: 150px;
    text-align: center;
  }
}
