<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* container principal */
.component-busca-beneficios {
  margin-bottom: 70px;
}

.component-busca-beneficios_box {
  background-color: #F7F2FA;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.component-busca-beneficios_box__subtitulo{
  color: #666667;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.component-busca-beneficios_box__descricao{
  color: #666667;
  font-size: 1rem;
}


/* linha com os filtros */
.component-busca-beneficios_box__linha-filtros {
  display: flex; 
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

/* campos de filtro */

.component-busca-beneficios_box__campo-filtro{
  border: 2px solid #0C8DC1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
  color: #666667;
  font-weight: 600;
}

.component-busca-beneficios_box__campo-filtro:focus {
  outline: none;
  border-color: red;
}

/* botÃ£o de busca */
.component-busca-beneficios_box__botao {
  background: linear-gradient(to bottom, #d44, #b00);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 8px;
  width: 180px;
  /* margin-left: 30px; */
}

.component-busca-beneficios_box__botao:hover {
  background: linear-gradient(to bottom, #c33, #900);
}

.component-busca-beneficios__divisor{
  margin: 20px 0px;
}

.component-busca-beneficios__tag{
  border: 2px solid #066D97;
  color: #066D97;
  margin-right: 20px;
  padding: 5px 10px;
  border-radius: 16px;
  font-weight: 500;
}

.component-busca-beneficios__tag-remove{
  font-size: 1.2rem;
}

.component-busca-beneficios__loading{
  color: #666667;
  font-weight: 500;
}

.component-busca-beneficios__resultado {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

/* Card de benefÃ­cio */

.component-busca-beneficios__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 300px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  background-color: #F7F2FA;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.component-busca-beneficios__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.component-busca-beneficios__card img {
  max-width: 100%;
  height: 190px;
  border-radius: 12px 12px 0px 0px;
  margin-bottom: 10px;
}

.component-busca-beneficios__card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #666667;
  font-weight: 700;
  padding: 0px 15px;
}

.component-busca-beneficios__content {
  display: -webkit-box;
  /* -webkit-line-clamp: 5;  */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 10.8em; 
  line-height: 1.8em;
  padding: 0 15px;
  height: 164px; 
  overflow: hidden;
  position: relative;
}


.component-busca-beneficios__card p {
  flex-grow: 1;
  font-size: 14px;
  color: #666667;
  line-height: 1.4;
  margin-bottom: 15px;
}



.component-busca-beneficios__footer {
  margin-top: auto;
  padding: 10px 0px 15px;
}

/* BotÃ£o */
.component-busca-beneficios__btn {
  align-self: flex-start;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s ease;
  margin: 10px 15px;
  font-weight: 500;
}

.component-busca-beneficios__btn:hover {
  background: linear-gradient(to bottom, #d44, #b00);
  transition: background 0.3s ease;
  color: #fff;
  font-weight: 500;
}


.component-busca-beneficios__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3em;
  width: 100%;
  background: linear-gradient(to bottom, rgba(247,242,250,0), #F7F2FA);
}

@media (max-width:1024px) {
  /* .component-busca-beneficios_box{
    margin: 0px 20px 30px;
  } */
  .component-busca-beneficios_box__botao{
    margin: 0;
  }
  
  .component-busca-beneficios__loading{
    margin: 0px 20px;
  }
}


@media (max-width:768px) {
  /* .component-busca-beneficios_box{
    margin: 0px 20px 30px;
  } */
  .component-busca-beneficios_box__linha-filtros{
    flex-direction: column;
  }
  .component-busca-beneficios_box__botao{
    margin: 0;
  }
  .component-busca-beneficios_box__filtros-tags{
    padding: 0px 20px;
  }
  .component-busca-beneficios__loading{
    margin: 0px 20px;
  }

  .component-busca-beneficios__card{
    max-width: 80%;
  }
  .component-busca-beneficios__card img {
    width: 100%;
  }

}</pre></body></html>