.suporte-title{
    font-weight: 400;
    text-align: center;
    padding: 10px;
    font-size: 80px;

}

.suporte-description{
    width: 65%;
  margin: 20px auto;
  height: 60px;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
}

.suporte-container-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
    overflow: visible;
    width: 100%;
}

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .subtitle {
    text-align: center;
    font-size: 16px;
    color: #222;
    margin-bottom: 24px;
  }

  .search-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    max-width: 1000px;
    margin: 40px auto;
    height: 56px;
  }

  .search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 15px;
    color: #333;
    background: transparent;
  }

  .search-input::placeholder {
    color: #8a8a8a;
  }


  .icon_dialogue{
    height: 46px;
  }


  .search-button {
    width: 60px;
    height: 56px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #222;
  }

  .cards {
    gap: var(--spacing-md);
    text-align: center;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 950px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

  }

  .card {
    background: #FCF4D9;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    text-align: left;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
  }

  .card:last-child {
    border-right: none;
  }

  .icon {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #1f1f1f;
  }

  .card p {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
  }

  .support-container-posts {
    padding: 80px 20px;
    background: #f9f9f9;
  }

  .support-posts-title {
    font-weight: 400;
    text-align: center;
    padding: 10px;
    font-size: 72px;
  }

  .support-posts-description {
    font-weight: 400;
    text-align: center;
    padding: 5px;
    font-size: 24px;
  }

  .support-card-image {
   width: 100%;
  height: 264px;
  border-radius: 16px;
  overflow: hidden;
  background: #d9d4ff;
  margin-bottom: 20px;
}

 .support-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

.support-card-placeholder {
  width: 100%;
  height: 100%;
  background: #d9d4ff;
}

.support-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.support-card-category {
  display: inline-block;
  background: #f2ece8;
  color: #b86b2b;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.category {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

/* 🔴 Pagamento */
.category.pagamento {
  background-color: #FFF8F3;
  color: #B86326;
}

/* 🔵 Cadastro (azul claro) */
.category.cadastro {
  background-color: #F3FCFF;
  color: #258BAD;
}

/* 🔵 Usabilidade (azul escuro) */
.category.usabilidade {
  background-color: #F3F3FF;
  color: #6365EF;
}

.see-more {
  margin-top: 70px;
  text-align: left;
  max-width: 1670px;
  margin-left: auto;
}

.see-more a {
  border: 2px solid #f5b400;
  color: #333;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-more a:hover {
  background: #f5b400;
  color: white;
}

.support-card-title {
  font-size: var(--font-title);
  font-weight: 700;
  color: #111;
  margin: 10px 0 14px 0;
  line-height: 1.2;
}

.support-card-excerpt {
  font-size: var(--font-body);
  line-height: 1.6;
  color: #7a7a7a;
  margin: 0 0 20px 0;
}

.support-card-btn {
  display: inline-block;
  background: #f6b800;
  color: #111;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  line-height: 1;
  transition: background 0.2s ease;
}

.support-card:hover .support-card-btn {
  background: #e6aa00;
}

.support-post-section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--spacing-md);
    position: relative;
    overflow-x: hidden;
}

.educational-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

  /* Responsivo */
  @media (max-width: 768px) {
    .cards {
      grid-template-columns: 1fr;
    }

    .card {
      border-right: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .card:last-child {
      border-bottom: none;
    }

    .search-wrapper {
      height: 52px;
    }

    .search-button {
      height: 52px;
    }
  }