.produtos-categorias-section {
  padding: 4rem 0 2rem 0;
  background: #fff;
}
.produtos-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary, #0077b6);
}
.produtos-subtitle {
  text-align: center;
  color: var(--primary, #0077b6);
  margin-bottom: 2.5rem;
}
.produtos-categorias-grid {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.prod-categoria {
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  width: 100%;
  max-width: 920px;
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.prod-categoria-img-wrap {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #e0e6ed;
  margin-bottom: 1.2rem;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-categoria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.prod-categoria-title {
  font-size: 1.45rem;
  color: var(--primary, #0077b6);
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
}
.prod-categoria-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.prod-categoria-list li {
  margin-bottom: 1.1rem;
}
.prod-servico-toggle {
  width: 100%;
  background: var(--primary, #1A365D);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.2rem;
  font-size: 0.97rem;
  color: #fff;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, border 0.2s, transform 0.18s;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  line-height: 1.3;
}
.prod-servico-toggle:last-child {
  margin-bottom: 0;
}
.prod-servico-toggle span {
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.2s, color 0.2s;
}
.prod-servico-toggle:hover, .prod-servico-toggle:focus {
  background: var(--secondary, #2D5A88);
  transform: scale(1.04);
  outline: none;
}
.prod-servico-toggle:hover span, .prod-servico-toggle:focus span {
  color: #fff;
}
.prod-servico-inactive {
  background: #d1d5db !important;
  color: #9ca3af !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  pointer-events: none;
}
.prod-servico-inactive span {
  color: #9ca3af !important;
}
.prod-servico-inactive:hover, .prod-servico-inactive:focus {
  background: #d1d5db !important;
  transform: none !important;
}
.prod-servico-resumo {
  display: none;
  background: #eaf6ff;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.98rem;
  color: #222;
  margin-top: 0.3rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.prod-servico-resumo p {
  margin-bottom: 1.1rem;
}
.prod-saiba-mais {
  display: block;
  margin: 0.7rem auto 0 auto;
  background: var(--primary, #0077b6);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  width: fit-content;
  text-align: center;
}
.prod-saiba-mais:hover {
  background: var(--secondary, #023e8a);
}
.prod-categoria-list li.open .prod-servico-resumo {
  display: block;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1700px) {
  .prod-categoria { width: 520px; padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 1200px) {
  .produtos-categorias-grid { flex-direction: column; align-items: center; gap: 2rem; }
  .prod-categoria { width: 100%; max-width: 700px; }
}
