/* 🎨 Gradiente del Hero */
.hero-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

/* ✨ Animaciones y efectos */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.whatsapp-float {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* 🛠️ Sección Servicios */
.servicios {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.servicios h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grid-servicios {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}

.card-servicio {
  background: #fff;
  border: 1px solid #e6e8ef;
  border-radius: 14px;
  padding: 25px;
  transition: 0.3s;
}
.card-servicio:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-servicio i {
  font-size: 38px;
  color: #163b8f;
  margin-bottom: 15px;
}

.card-servicio h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  color: #243042;
  font-weight: 700;
  text-transform: uppercase;
}

.card-servicio p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}

.logo-card {
  height: 9rem; /* ajusta según tu diseño */
  width: 12rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb; /* gris claro */
  border-radius: 0.75rem; /* esquinas redondeadas */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.3s ease;
}

.logo-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
