
/* ====== SERVICIOS ====== */

.services-section h2 {
  color: var(--azul-celeste);
}

.services-section .card {
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.services-section .icon-box {
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.services-section .btn {
  border-radius: 30px;
  font-weight: 600;
}


/* Glassmorphism para tarjetas de servicios */
.card.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

/* Botón glass */
.btn-glass {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid var(--amarillo);
  color: var(--amarillo);
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: var(--amarillo);
  color: var(--azul-oscuro);
  transform: scale(1.05);
}

/* Íconos */
.icon-box {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
