.sectores-hero {
  padding: 80px 20px 0;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Poppins', system-ui, sans-serif;
}

.sectores-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1c2d;
  margin: 0 0 16px;
  line-height: 1.2;
}

.sectores-hero p {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Grid ── */
.sectores-section {
  padding: 60px 20px 80px;
  max-width: 1300px;
  margin: 0 auto;
  font-family: 'Poppins', system-ui, sans-serif;
}

.sectores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* ── Cards ── */
.sector-card {
  background: #ffffff;
  border: 1px solid #c7d2fe;
  border-radius: 16px;
  padding: 35px 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: #2b7cff;
  box-shadow: 0 15px 35px rgba(43, 124, 255, 0.15);
}

.sector-icon {
  font-size: 40px;
  color: #2b7cff;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.sector-card:hover .sector-icon { transform: scale(1.1); }

.sector-badge {
  background: linear-gradient(135deg, #4f46e5 0%, #2b7cff 100%);
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.sector-subtitle {
  color: #0b1c2d;
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 15px;
  line-height: 1.3;
}

.sector-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  color: #475569;
  font-size: 13.5px;
  line-height: 1.6;
  flex-grow: 1;
}

.sector-list li { margin-bottom: 6px; }

.sector-btn {
  display: inline-block;
  border: 1px solid #2b7cff;
  color: #2b7cff;
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  width: 80%;
}

.sector-card:hover .sector-btn {
  background: #2b7cff;
  color: white;
  box-shadow: 0 5px 15px rgba(43, 124, 255, 0.3);
}
