/* ═══════════ SETORES ATENDIDOS ═══════════ */

.setores-page {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: var(--black, #0a0a0c);
  width: 100%;
  box-sizing: border-box;
}

.setores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.setor-card {
  background: var(--graphite, #111114);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: clamp(1.6rem, 2.5vw, 2.4rem) clamp(1.2rem, 2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s, box-shadow 0.4s;
}

/* Ícone do setor */
.setor-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #2d29263a;
  border: 1px solid #FF7500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand);
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Efeito Hover */
@media (hover: hover) {
  .setor-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }

  .setor-card:hover .setor-icon {
    background: #2D2926;
    border-color: var(--brand);
  }

  .setor-card:hover .setor-list li {
    color: #ffffff;
  }
}

/* Tipografia interna do Card */
.setor-card h3 {
  font-family: var(--font-display, Georgia, serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #ffffff;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.setor-card p {
  color: var(--white-dim, #a1a1aa);
  font-size: clamp(0.85rem, 0.9vw, 0.92rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Lista de tópicos */
.setor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
  margin-top: auto; /* Força alinhamento da lista na base */
}

.setor-list li {
  font-size: clamp(0.8rem, 0.85vw, 0.85rem);
  color: var(--white-dim, #a1a1aa);
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.setor-list li:last-child {
  margin-bottom: 0;
}

.setor-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-size: 0.65rem;
}

/* ── RESPONSIVIDADE ── */

/* Notebooks / Tablets grandes */
@media (max-width: 1024px) {
  .setores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Dispositivos Móveis */
@media (max-width: 640px) {
  .setores-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}