/* Cases */

/* Seção geral */
.cases-de-sucesso {
  padding: 60px 20px;
  background: #f8f8f8;
}

/* Container dos cards */
.container-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cada card */
.case-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}


/* Imagem principal */
.case-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

/* Tag verde */
.case-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #09B665;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Conteúdo do case */
.case-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Título */
.case-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

/* Botão ver mais */
.ver-mais-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-ver-mais {
  display: inline-block;
  padding: 10px 24px;
  color: gray;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-ver-mais:hover {
  background-color: #09B665;
}