.convenios-accordion-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.convenios-search {
  margin-bottom: 30px;
}

.convenios-search input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #7A7A7A !important;
  border-radius: 60px !important;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
  background: #fff;
}

.convenios-search input:focus {
  border-color: var(--convenios-button-color, #2563eb);
}

.convenios-grid {
  display: grid;
  grid-template-columns: var(--convenios-columns, repeat(4, 1fr));
  gap: 24px;
}

.convenio-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.convenio-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.convenio-logo {
  width: var(--convenios-logo-size, 120px);
  height: var(--convenios-logo-size, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
}

.convenio-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.convenio-logo-placeholder {
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  color: #9ca3af;
  font-weight: 600;
  font-size: 14px;
}

.convenio-nome {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
}

.convenio-servicos-btn {
  background: var(--convenios-button-color, #2563eb);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.convenio-servicos-btn:hover {
  filter: brightness(0.9);
}

.convenio-servicos-btn.active {
  filter: brightness(0.85);
}

.convenio-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  width: 100%;
  margin-top: 0;
}

.convenio-accordion.open {
  max-height: 500px;
  margin-top: 16px;
}

.convenio-servicos-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.convenio-servicos-lista li {
  padding: 8px 12px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
  color: #374151;
}

.convenio-servicos-lista li:last-child {
  border-bottom: none;
}

.convenio-servicos-lista li::before {
  content: "\2022";
  color: var(--convenios-button-color, #2563eb);
  font-weight: bold;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .convenios-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
  .convenio-card {
    padding: 16px;
  }
}