.wp-block{} 
@charset "UTF-8";
.container {
  width: 100%;
  max-width: 1920px;
}

.gl-az-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0.5rem;
  padding: 1rem;
  background: rgb(236, 101, 104);
  width: 100%;
  position: sticky;
  top: 0px;
}

.gl-az-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  transition: background 0.2s ease, border-bottom 0.2s ease;
}

.gl-az-nav a.active {
  border-bottom: 2px solid #fff; /* sublinhado */
}

.gl-az-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Cabeçalhos das letras */
.gl-wrapper {
  width: 58.3%;
}

.gl-letter {
  font-size: 60px;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 400;
}

/* Grid 2 colunas por letra */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 40px;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .gl-grid {
    grid-template-columns: 1fr;
  }
}
/* Item do glossário */
.gl-item {
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  height: fit-content;
}

/* Botão/toggle */
.gl-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.gl-headings {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gl-title {
  font-size: 16px;
  font-weight: 500;
  color: #008348;
}

.gl-subtitle {
  font-size: 16px;
  color: #424569;
  font-weight: 300;
}

.gl-icon {
  font-size: 26px;
  line-height: 1;
  color: #008348;
  margin-bottom: auto;
  font-weight: 400;
}

/* Conteúdo interno */
.gl-content {
  padding: 40px;
  background: #F5F5FB;
}

.gl-title-in {
  margin: 0.25rem 0 0.25rem;
  font-size: 24px;
  color: #008348;
  font-weight: 500;
}

.gl-subtitle-in {
  margin: 0 0 0.75rem;
  color: #424569;
  font-size: 16px;
  font-weight: 300;
}

.gl-text p {
  margin: 0 0 0.75rem;
}

/* Botão do link relacionado */
.gl-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: #0ea5e9;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.gl-btn:hover {
  background: #0284c7;
}

/* Vazio */
.gl-empty {
  opacity: 0.7;
}

@media (max-width: 1022px) {
  .gl-wrapper {
    width: 100%;
  }
  .gl-az-nav {
    top: 75px;
    display: flex; /* mantém flex */
    flex-wrap: nowrap !important; /* impede quebra */
    overflow-x: auto; /* ativa scroll horizontal */
    white-space: nowrap;
    padding: 1rem 0.5rem;
  }
  .gl-az-nav a {
    flex: 0 0 auto; /* evita que cada <a> tente ocupar largura proporcional */
    margin-right: 0.75rem;
  }
}
/* GRID DE 3 COLUNAS */
.gl-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  .gl-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gl-grid-3 {
    grid-template-columns: 1fr;
  }
}
/* CARD */
.gl-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.gl-card:hover {
  transform: translateY(-4px);
}

.gl-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.gl-card-info {
  padding: 20px;
}

.gl-card-cat {
  font-size: 14px;
  color: #a23b3b;
  text-transform: uppercase;
  font-weight: 600;
}

.gl-card-title {
  font-size: 20px;
  margin: 8px 0 12px;
  font-weight: 700;
  color: #111;
}

.gl-card-btn {
  display: inline-block;
  margin-top: 16px;
  background: #facc15;
  padding: 10px 14px;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
