body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fb;
}

/* NAVBAR */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 15px 0;
}

.logo {
  height: 40px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero p {
  margin-top: 20px;
  opacity: 0.9;
}


/* BOTONES */
.btn-gradient {
  background: linear-gradient(135deg, #22c55e, #2563eb);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
}

/* FEATURES */
.features {
  padding: 100px 0;
}

.icon {
  width: 60px;
  height: 60px;
  margin: auto;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  border-radius: 50%;
}

/* PRODUCTS */
.products {
  padding: 100px 0;
}

.card-saas {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card-saas:hover {
  transform: translateY(-10px);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #1e3a8a, #22c55e);
  padding: 120px 0;
  border-radius: 50px 50px 0 0;
}

/* ANIMACIONES */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.delay {
  animation-delay: 0.3s;
}

.delay2 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.wave-top {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.wave-bottom {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  transform: rotate(180deg);
}

.cta {
  position: relative;
  overflow: hidden;
}

.wave-top,
.wave-bottom {
  opacity: 0.9;
  filter: blur(0.3px);
}