.component-headline-ancora {
  padding-top: 32px;
  padding-bottom: 32px;
}
.container-headline {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
.container-headline .image-wrapper {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}
.container-headline .text-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.titulo-headline {
  font-family: Roboto, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.235;
  letter-spacing: 0.25px;
  margin: 0 0 16px;
}
.paragrafo-headline {
  font-family: Roboto, sans-serif;
  color: var(--Saber-text-primary, #2f3136);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  margin: 0 0 32px 0;
}
.chip-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--others-others-stroke, #ababab);
  text-decoration: none;
  color: #1b1b1b;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  min-width: fit-content;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 1.2s ease-out; /* mais lento e suave */
  background-color: rgba(0, 0, 0, 0.15); /* tom suave */
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(3.5); /* expande mais */
    opacity: 0;
  }
}

.chip-item:hover {
  background: #ddf5ec;
}
.chip-item:focus {
  border: 2px solid var(--primary-primary-main, #1f8563);
}

@media (min-width: 1024px) {
  .container-headline {
    padding-left: 0;
    padding-right: 0;
  }
  .chips-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .chips-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    margin: 0 16px;
  }
  .chips-container::-webkit-scrollbar {
    display: none;
  }
  .container-headline .image-wrapper img {
    max-width: 100%;
  }
  .container-headline .text-content {
    margin-top: 8px;
  }
  .titulo-headline {
    font-size: 24px;
    line-height: 1.33;
  }
}
