@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Paleta cromática mate y relajante (Antirreflejos, ideal para lectura prolongada sin fatiga) */
  --color-primary: #2a4e7c; /* Azul acero corporativo mate (Sólido y descansado) */
  --color-primary-light: #3e6ca4; /* Azul acero claro */
  --color-secondary: #157347; /* Verde mate de éxito y acción corporativo (--ac-ok) */
  --color-secondary-hover: #0f5935;
  --color-dark: #243547; /* Gris azulado muy oscuro y suave (Evita el contraste estridente del negro) */
  --color-dark-muted: #5e6f80; /* Gris azulado medio */
  --color-light: #f4f6f8; /* Fondo 'Blanco Mate' / Gris claro antirreflejos (Descansa la vista) */
  --color-white: #fafbfc; /* Blanco mate suave para destacar tarjetas sobre el fondo */
  
  /* Gradientes mate y relajantes de alta gama */
  --gradient-hero: linear-gradient(135deg, #f4f6f8 0%, #edf0f4 50%, #e2e8f0 100%); /* Héroe mate muy descansado */
  --gradient-accent: linear-gradient(135deg, #2a4e7c 0%, #3e6ca4 100%); /* Gradiente azul acero mate */
  --gradient-card-hover: linear-gradient(135deg, rgba(42, 78, 124, 0.01) 0%, rgba(62, 108, 164, 0.01) 100%);
  --gradient-emerald: linear-gradient(135deg, #157347 0%, #0d5f35 100%); /* Verde de éxito y acción (ej. WhatsApp) */

  /* Sombras y bordes modernos refinados mate (sin resplandores estridentes) */
  --shadow-sm: 0 1px 2px 0 rgba(42, 78, 124, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(42, 78, 124, 0.03), 0 4px 6px -4px rgba(42, 78, 124, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(42, 78, 124, 0.03), 0 8px 10px -6px rgba(42, 78, 124, 0.03);
  --shadow-glow: 0 0 20px rgba(42, 78, 124, 0.08);
  --border-glass: 1px solid rgba(250, 251, 252, 0.8);
  --border-light: 1px solid rgba(36, 53, 71, 0.06);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

/* Reset y Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25;
}

/* Layout e Indicadores */
.section {
  padding: 100px 24px;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.text-center {
  text-align: center;
}

.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(42, 78, 124, 0.08);
  color: var(--color-primary-light);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid rgba(42, 78, 124, 0.15);
  font-family: var(--font-title);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-dark-muted);
  max-width: 680px;
  margin: 0 auto 60px auto;
  font-weight: 400;
}

/* Header & Navbar Sticky Glassmorphism */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(42, 78, 124, 0.02);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.logo-tag {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 6px;
}
.header.scrolled .logo-tag {
  background: var(--color-primary);
  color: #fff;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--color-dark-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s;
  cursor: pointer;
}

.header.scrolled .nav-link {
  color: var(--color-dark-muted);
}

.nav-link:hover, .header.scrolled .nav-link:hover {
  color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-dark);
  font-size: 1.5rem;
  cursor: pointer;
}
.header.scrolled .mobile-toggle {
  color: var(--color-dark);
}

/* Botones Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gradient-emerald);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(21, 115, 71, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 115, 71, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.04);
  color: var(--color-dark);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-light);
  border: 2px solid var(--color-primary-light);
}

.btn-outline:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--color-light);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  color: var(--color-dark);
  padding: 160px 24px 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--color-dark);
}

.hero-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--color-dark-muted);
  max-width: 720px;
  margin: 0 auto 40px auto;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Ribbon Integraciones (Modern Grid) */
.ribbon {
  background: var(--color-white);
  border: var(--border-light);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.ribbon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ribbon-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.ribbon-label {
  font-size: 0.8rem;
  color: var(--color-dark-muted);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.ribbon-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
}

/* Grid de Características / Módulos */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--color-white);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  gap: 24px;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-card-hover);
  border-color: rgba(79, 70, 229, 0.15);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(79, 70, 229, 0.06);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--gradient-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-description {
  color: var(--color-dark-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Pricing - Planes de Suscripción */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
}

.pricing-toggle {
  position: relative;
  width: 64px;
  height: 34px;
  background: var(--color-primary-light);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s;
}

.pricing-toggle-ball {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.pricing-toggle-container.active .pricing-toggle-ball {
  transform: translateX(30px);
}

.toggle-label.active {
  color: var(--color-primary-light);
}

.discount-tag {
  background: #10b981;
  color: var(--color-white);
  padding: 2px 10px;
  font-size: 0.75rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 6px;
}

/* Pricing Grid for 4 Columns */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--color-white);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured {
  border: 2.5px solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
              var(--gradient-accent) border-box;
  transform: scale(1.03);
  box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.15);
  animation: featured-glow 4s infinite alternate ease-in-out;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.03);
}

.card-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: 4px 18px;
  font-size: 0.75rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-glow);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--color-dark-muted);
  margin-bottom: 24px;
  min-height: 40px;
}

.plan-price-container {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
}

.plan-price {
  font-family: var(--font-title);
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--color-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  color: var(--color-dark-muted);
  font-size: 0.95rem;
  margin-left: 4px;
  font-weight: 500;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--color-dark-muted);
}

.pricing-feature svg {
  color: #10b981;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-feature.disabled {
  opacity: 0.45;
  text-decoration: line-through;
}

.pricing-feature.disabled svg {
  color: var(--color-dark-muted);
}

.pricing-card .btn {
  width: 100%;
}

/* Formulario e Interactivo de Cotización */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--color-white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-lg);
}

.quote-info h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.quote-info p {
  color: var(--color-dark-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.quote-bullets {
  list-style: none;
}

.quote-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.quote-bullet-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.quote-form-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-dark-muted);
  margin-bottom: 6px;
}

.form-control, .form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.6);
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus, .form-select:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.quote-summary {
  background: rgba(79, 70, 229, 0.05);
  border: 1px dashed rgba(79, 70, 229, 0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-summary-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.quote-summary-price {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary-light);
}

/* FAQs Accordion */
.faqs-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-trigger h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color 0.25s;
}

.faq-trigger svg {
  width: 24px;
  height: 24px;
  color: var(--color-dark-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  color: var(--color-dark-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active FAQ State */
.faq-item.active {
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-trigger h3 {
  color: var(--color-primary-light);
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
  color: var(--color-primary-light);
}

/* Footer Section */
.footer {
  background: #0b0f19;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 30px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links-col h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 10px;
}

.footer-link-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-link-item a:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Grid / Media Queries */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card.featured:hover {
    transform: translateY(-6px) scale(1);
  }
  .quote-layout {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    padding: 60px 20px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
  .ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px;
    margin: 0 auto;
    gap: 24px;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    padding: 100px 30px;
    align-items: flex-start;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-link {
    color: #fff;
    font-size: 1.1rem;
    width: 100%;
  }
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
  .header.scrolled .mobile-toggle {
    color: var(--color-primary);
  }
  .header.scrolled .nav-menu {
    background: var(--color-white);
  }
  .header.scrolled .nav-menu.open .nav-link {
    color: var(--color-dark);
  }
  .feature-card {
    padding: 30px 20px;
    flex-direction: column;
    gap: 16px;
  }
}

/* ==========================================================================
   Mejoras Estéticas Senior UX/UI (Floating Glass Blobs & Bento category glows)
   ========================================================================== */

/* Blobs de Fondo en Hero */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.blob-1 {
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.08); /* Azul suave */
  top: -5%;
  right: 10%;
  animation: float-blob-1 25s infinite alternate ease-in-out;
}
.blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(13, 148, 136, 0.06); /* Teal suave */
  bottom: 5%;
  left: 5%;
  animation: float-blob-2 20s infinite alternate ease-in-out;
}
.blob-3 {
  width: 250px;
  height: 250px;
  background: rgba(168, 85, 247, 0.05); /* Púrpura suave */
  top: 30%;
  left: 40%;
  animation: float-blob-3 30s infinite alternate ease-in-out;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -30px) scale(1.1); }
}
@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 40px) scale(1.15); }
}
@keyframes float-blob-3 {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(30px, 30px) scale(1.05); }
}

@keyframes featured-glow {
  0% { box-shadow: 0 20px 40px -15px rgba(42, 78, 124, 0.08); }
  100% { box-shadow: 0 20px 40px -5px rgba(42, 78, 124, 0.18); }
}

/* Efectos de Resplandor Tonal e Iluminación por Categoría en Bento Grid */
.features-grid .feature-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-grid .feature-card:hover {
  transform: translateY(-8px);
}

/* Card 1: Inventarios (Azul Zafiro Suave) */
.features-grid .feature-card:nth-child(1):hover {
  border-color: rgba(42, 78, 124, 0.25);
  box-shadow: 0 20px 30px -8px rgba(42, 78, 124, 0.05);
}
.features-grid .feature-card:nth-child(1):hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #2a4e7c, #3e6ca4);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(42, 78, 124, 0.15);
}

/* Card 2: Facturación (Verde Esmeralda Mate) */
.features-grid .feature-card:nth-child(2):hover {
  border-color: rgba(21, 115, 71, 0.25);
  box-shadow: 0 20px 30px -8px rgba(21, 115, 71, 0.05);
}
.features-grid .feature-card:nth-child(2):hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #157347, #1c8c57);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(21, 115, 71, 0.15);
}

/* Card 3: POS (Azul Acero Corporativo) */
.features-grid .feature-card:nth-child(3):hover {
  border-color: rgba(42, 78, 124, 0.25);
  box-shadow: 0 20px 30px -8px rgba(42, 78, 124, 0.05);
}
.features-grid .feature-card:nth-child(3):hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #3e6ca4, #5280b8);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(42, 78, 124, 0.15);
}

/* Card 4: WhatsApp/Recetas (Teal/Cyan Suave) */
.features-grid .feature-card:nth-child(4):hover {
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 20px 30px -8px rgba(13, 148, 136, 0.05);
}
.features-grid .feature-card:nth-child(4):hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #0d9488, #2a9d8f);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(13, 148, 136, 0.15);
}

/* Card 5: Tesorería (Púrpura Mate) */
.features-grid .feature-card:nth-child(5):hover {
  border-color: rgba(109, 40, 217, 0.25);
  box-shadow: 0 20px 30px -8px rgba(109, 40, 217, 0.05);
}
.features-grid .feature-card:nth-child(5):hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(109, 40, 217, 0.15);
}

/* Card 6: NIIF/Nómina (Indigo Mate) */
.features-grid .feature-card:nth-child(6):hover {
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: 0 20px 30px -8px rgba(79, 70, 229, 0.05);
}
.features-grid .feature-card:nth-child(6):hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.15);
}

/* Card 7: Dashboard (Ámbar Mate) */
.features-grid .feature-card:nth-child(7):hover {
  border-color: rgba(217, 119, 6, 0.25);
  box-shadow: 0 20px 30px -8px rgba(217, 119, 6, 0.05);
}
.features-grid .feature-card:nth-child(7):hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(217, 119, 6, 0.15);
}

/* Card 8: Evolución (Teal Suave) */
.features-grid .feature-card:nth-child(8):hover {
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 20px 30px -8px rgba(13, 148, 136, 0.05);
}
.features-grid .feature-card:nth-child(8):hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(13, 148, 136, 0.15);
}

