/* Sección de verticales de negocio */
.verticales-section {
  padding: 4rem 2rem;
  background-color: #f9f9fc;
  text-align: center;
}

.verticales-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 3rem;
}

/* Grilla de verticales */
.verticales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tarjeta de vertical */
.vertical-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.vertical-card:hover {
  background-color: #f2ecfb;
  transform: scale(1.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Ícono de vertical */
.vertical-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
  filter: brightness(0) saturate(100%) invert(19%) sepia(85%) saturate(653%) hue-rotate(224deg) brightness(96%) contrast(103%);
  opacity: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover sobre ícono */
.vertical-card:hover img {
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(19%) sepia(85%) saturate(653%) hue-rotate(224deg) brightness(100%) contrast(120%);
}

/* Texto de vertical */
.vertical-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

.vertical-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}