.blog {
  background: #f5f5f5;
  padding-block: 80px;
}

.blog .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 384px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  flex: 1;
}

.blog .card-content a {
  text-decoration: none;
}

.blog .card img {
  width: 100%;
  max-width: 384px;
  border-radius: 10px 10px 0 0;
  height: auto;
  display: block;
}

.blog .card-content {
  width: 100%;
  max-width: 384px;
  display: flex;
  padding: 40px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 0 0 10px 10px;
  background: #fff;
  flex: 1;
}

.blog .card-content h3 {
  color: #121212;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.blog .card-content .saiba-mais {
  color: #ee1610;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.artigo {
  padding-block: 80px;
}

.artigo .breadcrumb {
  height: 0;
}

.artigo h1 {
  color: #424242;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
}

.artigo .title-img-links {
  margin-top: 32px;
}

.artigo .title-img-links img {
  border-radius: 10px;
  border: 1px solid #aaa;
  margin-top: 64px;
}

.artigo .social-media-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 64px;
}

.artigo .social-media-links .button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #d5d7da;
  width: 123px;
  height: 40px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  color: #414651;
  font-size: 14px;
  font-style: normal;
  cursor: pointer;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  transition: color 0.3s ease;
}

.artigo .social-media-links .button:hover {
  color: #003b94;
}

.artigo .social-media-links .button:hover svg path {
  stroke: #003b94;
}

.artigo .social-media-links a {
  display: flex;
  width: 43px;
  height: 43px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
}

.artigo .social-media-links a:hover svg path {
  fill: #414651;
}

.artigo article .container {
  padding-block: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.artigo article p,
.artigo article a,
.artigo article li {
  color: #424242;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.artigo article ul,
.artigo article ol {
  margin-left: 20px;
}

.artigo article h2,
.artigo article h3 {
  color: #161616;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

/* more-blog  */

.more-blog .title {
  color: #121212;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
}

.more-blog .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 80px;
}

.more-blog .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 384px;
  height: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  flex: 1;
}

.more-blog .card-content a {
  text-decoration: none;
}

.more-blog .card img {
  width: 100%;
  max-width: 384px;
  height: auto;
  border-radius: 10px 10px 0 0;
  display: block;
}

.more-blog .card-content {
  width: 100%;
  max-width: 384px;
  display: flex;
  padding: 40px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 0 0 10px 10px;
  background: #fff;
  flex: 1;
}

.more-blog .card-content h3 {
  color: #121212;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.more-blog .card-content .saiba-mais {
  color: #ee1610;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

#toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #001534;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  width: 226px;
  height: 56px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 9999;
}

#toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
  .blog .cards,
  .more-blog .cards {
    grid-template-columns: 1fr 1fr;
  }

  .artigo .breadcrumb {
    height: auto;
  }

  .blog .card,
  .blog .card-content,
  .blog .card img {
    max-width: 100%;
  }

  .more-blog .card,
  .more-blog .card-content,
  .more-blog .card img {
    max-width: 100%;
  }

  .artigo {
    padding-block: 64px;
  }
}

@media (max-width: 767px) {
  .blog .cards,
  .more-blog .cards {
    grid-template-columns: 1fr;
  }

  .artigo h1 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -1.08px;
  }
}
