.anth-home .anth-caminho {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.anth-home .anth-caminho-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  text-align: center;
  color: var(--text);
  margin: 0 0 40px;
}

.anth-home .anth-caminho-title em {
  font-style: normal;
  color: var(--teal);
}

.anth-home .anth-caminho-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.anth-home .anth-caminho-card {
  position: relative;
  display: block;
  min-height: 260px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.anth-home .anth-caminho-card:hover {
  transform: translateY(-2px);
}

.anth-home .anth-caminho-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.anth-home .anth-caminho-card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 3, 8, 0.94) 0%, rgba(0, 3, 8, 0.75) 45%, rgba(0, 3, 8, 0.25) 100%);
}

.anth-home .anth-caminho-card-body {
  position: relative;
  padding: 32px;
  max-width: 340px;
}

.anth-home .anth-caminho-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.anth-home .anth-caminho-card--gold .anth-caminho-card-icon {
  border-color: var(--gold);
  color: var(--gold);
}

.anth-home .anth-caminho-card-body h3 {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.anth-home .anth-caminho-card-body p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.anth-home .anth-caminho-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

.anth-home .anth-caminho-card--gold .anth-caminho-card-link {
  color: var(--gold);
}

@media (max-width: 780px) {
  .anth-home .anth-caminho-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .anth-home .anth-caminho {
    padding: 48px 0;
  }
  .anth-home .anth-caminho-card-body {
    padding: 26px;
    max-width: none;
  }
}
