/* === Sección general === */
.vh2-info-section {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #333;
}

.vh2-info-section h2 {
  color: #F15A29;
  font-weight: 700;
  margin-bottom: 10px;
}

.vh2-info-section p.vh2-muted {
  color: #777;
  font-size: 1.1rem;
}

/* === Tarjetas === */
.vh2-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 6px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}

.vh2-card.vh2-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.vh2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.vh2-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
  transition: 0.3s;
}

.vh2-card:hover .vh2-icon {
  transform: rotate(10deg) scale(1.1);
}

.vh2-card h4 {
  color: #F15A29;
  font-weight: 600;
  margin-bottom: 12px;
}

.vh2-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* === Colores personalizados === */
.vh2-border-orange { border-left-color: #F77A2D; }
.vh2-border-gold { border-left-color: #F49B2E; }
.vh2-border-green { border-left-color: #6DAE3A; }

/* === Responsivo === */
@media (max-width: 767px) {
  .vh2-card { margin-bottom: 25px; }
}


