:root {
  /* Colores Institucionales Sicaja */
  --primary: #55CAF5;
  --primary-light: #7DD7F8;
  --primary-dark: #3DB8E8;
  --secondary: #9900CC;
  --secondary-light: #B333D6;
  --secondary-dark: #7700A3;
  --accent: #FFCC00;
  --accent-light: #FFD633;
  --accent-dark: #CCA300;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --gradient-primary: linear-gradient(135deg, #55CAF5 0%, #3DB8E8 100%);
  --gradient-secondary: linear-gradient(135deg, #9900CC 0%, #7700A3 100%);
  --gradient-tertiary: linear-gradient(135deg, #55CAF5 0%, #9900CC 100%);
  --gradient-warm: linear-gradient(135deg, #FFCC00 0%, #FFD633 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--gray); }

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.btn-accent {
  background: var(--gradient-warm);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(255, 204, 0, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-secondary:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.announcement-bar {
  background: linear-gradient(90deg, #2d0054 0%, #5500b0 50%, #2d0054 100%);
  color: white;
  text-align: center;
  padding: 8px 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.announcement-bar a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.2s;
  white-space: nowrap;
}
.announcement-bar a:hover { opacity: 0.8; }
.announcement-bar strong { color: var(--accent-light); }
.announcement-new {
  background: var(--accent);
  color: #2d0054;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--secondary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #55CAF5 0%, #3DB8E8 100%);
  position: relative;
  overflow: hidden;
  padding: 10.5rem 0 6rem;
  color: white;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -300px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 25s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-gradient {
  background: linear-gradient(135deg, #FFCC00 0%, #FFD633 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 2rem;
  font-weight: 800;
  color: #FFCC00;
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.dashboard-mockup {
  width: 100%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
}

.floating-card {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 5%;
  left: 10%;
  animation-delay: 4s;
}
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--dark);
}

.stat-item span {
  font-size: 0.875rem;
  color: var(--gray);
}

.hero-image {
  position: relative;
}

.ecosystem-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.ecosystem-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.ecosystem-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.ecosystem-card-win {
  border-top: 5px solid var(--primary);
}

.ecosystem-card-express {
  border-top: 5px solid var(--accent);
}

.ecosystem-card-forte {
  border-top: 5px solid var(--dark);
}

.product-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-pill-win {
  background: rgba(0, 194, 254, 0.12);
  color: #007ea6;
}

.product-pill-express {
  background: rgba(255, 204, 0, 0.2);
  color: #7b5b00;
}

.product-pill-forte {
  background: rgba(15, 23, 42, 0.08);
  color: var(--dark);
}

.hero-card-float {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary);
}

.hero-blob {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.15;
}

/* Features Grid */
.section { 
  padding: 6rem 0; 
}

.bg-light { 
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #55CAF5, #9900CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.modern-card:hover::before {
  transform: scaleX(1);
}

.icon-gradient {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(85, 202, 245, 0.1), rgba(61, 184, 232, 0.1));
  border-radius: 1.25rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover .icon-gradient {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(85, 202, 245, 0.2), rgba(61, 184, 232, 0.2));
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #f0f9ff;
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Tabs Section */
.tabs-container {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.tab-nav {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tab-btn {
  text-align: left;
  padding: 1rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.2s;
}

.tab-btn:hover { background: var(--light); color: var(--secondary); }
.tab-btn.active { background: #f3e8ff; color: var(--secondary); }

.tab-content { flex: 1; padding: 1rem; }
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Pricing */
.pricing-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  margin: 1.5rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check { color: var(--secondary); font-weight: bold; min-width: 20px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.form-row { margin-bottom: 1rem; }
label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(85, 202, 245, 0.2);
}

.form-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary);
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-info ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.contact-info li {
  margin-bottom: 0.5rem;
  color: var(--gray);
}

.link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  transition: all 0.3s;
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--gray);
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 { color: white; margin-bottom: 1.5rem; }
.footer p { color: #94a3b8; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.75rem; }
.footer a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.site-signature {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
  text-align: right;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
  }
}

/* Utilidades (reemplazo de estilos inline) */
.u-d-block { display: block; }
.u-block { display: block; }
.u-flex-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.u-text-left { text-align: left; }
.u-color-gray { color: var(--gray); }
.u-mt-025 { margin-top: 0.25rem; }
.u-mt-05 { margin-top: 0.5rem; }
.u-mt-075 { margin-top: 0.75rem; }
.u-mt-1 { margin-top: 1rem; }
.u-mt-2 { margin-top: 2rem; }
.btn-full { width: 100%; }
.btn-pad-sm { padding: 0.5rem 1rem; }
.u-list-unstyled { list-style: none; padding-left: 0; }
.u-flex-grid-center { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.card-360 { max-width: 360px; }
.card-460 { max-width: 460px; }
.text-sm { font-size: 0.9rem; }
.u-mb-08 { margin-bottom: 0.8rem; }
.link-primary { color: #667eea; text-decoration: none; }

/* Bloque destacado genérico */
.highlight-box {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(85, 202, 245, 0.15), rgba(153, 0, 204, 0.15));
  padding: 1.25rem;
  border-radius: 12px;
}
.highlight-box h3 {
  color: #55CAF5;
  margin-bottom: 0.5rem;
}
.highlight-box p {
  margin: 0;
  color: #64748b;
}

/* Breadcrumb / texto auxiliar */
.breadcrumb { font-size: 0.85rem; margin-bottom: 1.5rem; color: #6b7280; }

/* Complementos Bar (debajo del hero) */
.complementos-bar {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
  padding: 1.25rem 0 1.5rem;
}
.complementos-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 1rem;
}
.complementos-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 0.35rem;
}
.complementos-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, #55CAF5, #9900CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.complementos-subtitle {
  margin: 0;
  color: var(--gray);
}
.complementos-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.complemento-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.complemento-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(85,202,245,0.15);
  transform: translateY(-2px);
}
.complemento-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #55CAF5 0%, #3DB8E8 100%);
  border-radius: 10px;
  color: white;
}
.complemento-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.complemento-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}
.complemento-text small {
  font-size: 0.8rem;
  color: var(--gray);
}
.complemento-arrow {
  font-size: 1.1rem;
  color: var(--gray);
  transition: transform 0.2s ease;
}
.complemento-item:hover .complemento-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

.complemento-item-express {
  border-color: rgba(255, 204, 0, 0.55);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.14) 0%, rgba(255, 255, 255, 1) 100%);
}

.complemento-item-express .complemento-icon {
  background: linear-gradient(135deg, #ffcc00 0%, #ffb800 100%);
  color: var(--dark);
}

@media (max-width: 640px) {
  .complementos-title { font-size: 1.35rem; }
  .complementos-grid {
    flex-direction: column;
    gap: 0.75rem;
  }
  .complemento-item {
    width: 100%;
    justify-content: flex-start;
  }
}
}

/* Documentación (contenedores y bloques reutilizables) */
.doc-main {
  max-width: 950px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  background: #fff;
}
.doc-lead {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--gray);
}
.doc-box {
  border: 1px solid #e3ecf5;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  margin-top: 0.5rem;
  background: #f8fafc;
}
.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}
.doc-table th,
.doc-table td {
  border: 1px solid #e3ecf5;
  padding: 0.45rem 0.6rem;
  text-align: left;
}
.doc-table th {
  background: #f5f7fb;
  color: #123047;
}

/* Manual de Inicio Rápido (scoped) */
.manual-quickstart {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  background: #fff;
}
.manual-quickstart h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #123047;
}
.manual-quickstart h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #0d7fd3;
  border-bottom: 2px solid #0d7fd3;
  padding-bottom: 0.4rem;
}
.manual-quickstart h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #123047;
}
.manual-quickstart p,
.manual-quickstart li {
  font-size: 0.95rem;
  color: #526477;
  line-height: 1.6;
}
.manual-quickstart ul {
  padding-left: 1.3rem;
  margin: 0.5rem 0 1rem;
}
.manual-quickstart li { margin-bottom: 0.3rem; }
.manual-quickstart .task-card {
  background: #f8fafc;
  border-left: 4px solid #0d7fd3;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}
.manual-quickstart .task-card h3 {
  margin-top: 0;
  color: #0d7fd3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.manual-quickstart .task-card ul { margin-top: 0.8rem; }
.manual-quickstart code {
  background: #e3ecf5;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: #d73a49;
}
.manual-quickstart .intro-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}
.manual-quickstart .intro-box h1 { color: white; margin-bottom: 0.5rem; }
.manual-quickstart .intro-box p { color: rgba(255,255,255,0.95); font-size: 1rem; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .container { padding: 0 1rem; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-links { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid #eee;
  }
  
  .nav-links.open {
    display: flex;
  }

  .tabs-container { flex-direction: column; }
  .tab-nav { flex: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .pricing-card {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
  
  .pricing-card.featured { 
    transform: none; 
  }
  
  .pricing-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }

  .hl-card {
    min-width: 260px;
    max-width: 320px;
  }
  
  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
  }
}

/* === AI Launch Elements === */
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,204,0,0.55); }
  50% { box-shadow: 0 0 0 8px rgba(255,204,0,0); }
}

.ai-launch-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0,0,0,0.22);
  border: 1.5px solid rgba(255,204,0,0.55);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: pulse-border 3s ease-in-out infinite;
}
.ai-launch-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #9900CC, #6600AA);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(153,0,204,0.45);
}
.ai-launch-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.ai-launch-content strong {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}
.ai-launch-cta {
  margin-left: auto;
  background: var(--gradient-warm);
  color: #1a0030;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.ai-launch-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,204,0,0.45);
}

.ai-chip-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #9900CC, #5a00aa);
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
  box-shadow: 0 8px 24px rgba(153,0,204,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  min-width: 155px;
}
.ai-chip-label {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ai-chip-title {
  display: block;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 7px 1rem;
    gap: 0.5rem;
  }
  .ai-launch-callout {
    flex-wrap: wrap;
  }
  .ai-launch-cta {
    margin-left: 0;
  }
}
