.img-cell {
  overflow: hidden;
  transition: transform 0.4s ease;
}

.img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

.img-cell:hover img {
  transform: scale(1.04);
}

/* Imagen con recorte irregular: contain sobre negro */
.img-contain img {
  object-fit: contain;
  opacity: 0.95;
}

.img-contain:hover img {
  transform: scale(1.03);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bullet-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.bullet-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dc2626;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Sector pills en el hero */
.sector-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  cursor: default;
}

.sector-pill:hover {
  border-color: rgba(192, 57, 43, 0.5);
  background: rgba(192, 57, 43, 0.06);
  cursor: pointer;
}

.sector-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  flex-shrink: 0;
}

.sector-pill span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
