/* ─────────────────────────────────────────────────────────────────────────────
   GESTORU — Design System v4  ·  "2030 Professional Tier"
   Inspirado en Linear, Rippling, Deel, Stripe — las mejores plataformas del mundo
   Teal #00CDB0 del logotipo · Electric Blue #2563EB como acento profundo
   ───────────────────────────────────────────────────────────────────────────── */

/* ── 1. CUSTOM PROPERTIES ──────────────────────────────────────────────────── */
:root {
  /* Ultra-dark — espacio profundo, más oscuro que antes */
  --dark:      #05080F;   /* near-black con tinte azul frío */
  --dark-2:    #080F1D;   /* dark section backgrounds */
  --dark-3:    #0C1627;   /* card backgrounds en dark */
  --dark-4:    #132035;   /* borders en dark */

  /* Brand teal — exacto del logo oficial */
  --teal:      #00CDB0;
  --teal-l:    #26E5CE;   /* más vivo, casi neon */
  --teal-d:    #009E88;
  --teal-xs:   rgba(0,205,176,.07);
  --teal-sm:   rgba(0,205,176,.14);

  /* Electric blue — reemplaza sky blue, 10× más profundo y premium */
  --blue:      #2563EB;   /* Rippling / Salesforce blue */
  --blue-l:    #4B8AF0;
  --blue-xs:   rgba(37,99,235,.10);

  /* Soporte */
  --green:     #10B981;
  --amber:     #F59E0B;
  --orange:    #F97316;
  --red:       #EF4444;
  --violet:    #7C3AED;

  /* Superficies claras — cool white con tinte azul */
  --surface:   #F0F5FF;
  --surface-2: #E8EFF8;
  --white:     #FFFFFF;

  /* Texto */
  --text:      #080D18;
  --text-2:    #1A2744;
  --muted:     #64748B;
  --muted-2:   #94A3B8;

  /* Borders — más sutiles, hairline */
  --border:    #DDE6F0;
  --border-2:  #C8D5E8;

  /* Tipografía */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii — ligeramente más redondeados */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-pill: 9999px;

  /* Shadows — tinted para profundidad, no neutral gray */
  --shadow-xs:   0 1px 3px rgba(5,8,15,.06), 0 1px 2px rgba(5,8,15,.04);
  --shadow-sm:   0 4px 14px rgba(5,8,15,.08);
  --shadow-md:   0 8px 32px rgba(5,8,15,.10);
  --shadow-lg:   0 20px 64px rgba(5,8,15,.14);
  --shadow-teal: 0 4px 40px rgba(0,205,176,.28), 0 1px 0 rgba(0,205,176,.10) inset;
  --shadow-blue: 0 4px 40px rgba(37,99,235,.22);

  /* Transitions */
  --t-fast: 150ms cubic-bezier(.4,0,.2,1);
  --t-base: 250ms cubic-bezier(.4,0,.2,1);
  --t-slow: 400ms cubic-bezier(.4,0,.2,1);
}

/* ── 2. BASE ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font) !important;
  color: var(--text) !important;
  background: var(--white) !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { font-weight: inherit !important; font-size: inherit !important; text-decoration: none !important; }
img { max-width: 100%; }
.contenedor { max-width: none !important; overflow-x: hidden !important; }

/* ── 3. HEADER / NAV ───────────────────────────────────────────────────────── */
header {
  position: fixed !important;
  top: 0; left: 0; right: 0; width: 100%; z-index: 1000;
  background: rgba(13,27,42,1) !important; /* siempre sólido — evita fondo blanco visible */
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: backdrop-filter var(--t-base), box-shadow var(--t-base);
}

header.nav-scrolled {
  backdrop-filter: blur(22px) saturate(170%) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  border-bottom-color: rgba(255,255,255,.10) !important;
}

header .menu {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px; max-width: 1280px; margin: 0 auto;
}

header .header-left { width: auto !important; }
header .header-left a { display: flex; align-items: center; }
header .header-img { height: 38px; width: auto; }

/* header-right — flex, empuja nav al extremo derecho */
header .header-right {
  flex: 1; display: flex !important; align-items: center;
  justify-content: flex-end; width: auto !important; overflow: visible;
}

header nav { display: flex; align-items: center; width: 100%; justify-content: flex-end; }

header nav ul {
  display: flex !important; align-items: center !important;
  justify-content: flex-end !important;
  list-style: none; margin: 0; padding: 0;
  overflow: visible !important; gap: .25rem;
}

header nav ul li { float: none !important; }

header nav ul li a.body-oscuro {
  color: rgba(255,255,255,.70) !important;
  font-size: .875rem !important; font-weight: 500 !important;
  padding: .45rem .85rem; border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  display: block !important;
}

header nav ul li a.body-oscuro:hover {
  color: #fff !important; background: rgba(255,255,255,.08);
  transform: none !important; /* anula el scale de paginicio.css */
}

/* ── Botones de navegación — Ingresar + Registrarse ── */
.btn-crearcuenta {
  display: flex !important; align-items: center;
  gap: .5rem; margin-left: 1.5rem;
}

/* Base compartida */
.btn-crearcuenta .btn-primary {
  font-family: var(--font) !important; font-size: .8125rem !important;
  font-weight: 600 !important; letter-spacing: .025em;
  border-radius: var(--r-sm) !important;
  padding: .45rem 1.1rem !important; transition: all var(--t-fast);
  cursor: pointer;
}

/* INGRESAR — ghost outline */
.btn-crearcuenta .tam-btn-std {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  color: rgba(255,255,255,.80) !important;
  box-shadow: none !important;
}
.btn-crearcuenta .tam-btn-std:hover {
  background: rgba(255,255,255,.09) !important;
  border-color: rgba(255,255,255,.42) !important;
  color: #fff !important;
}

/* REGISTRATE GRATIS — sólido teal (selector corregido) */
.btn-crearcuenta a:last-of-type .btn-primary {
  background: #00CDB0 !important;
  border: none !important;
  color: #0D1B2A !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(0,205,176,.30) !important;
}
.btn-crearcuenta a:last-of-type .btn-primary:hover {
  background: #26E5CE !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 28px rgba(0,205,176,.42) !important;
  color: #0D1B2A !important;
}

/* ── 4. UTILITIES ──────────────────────────────────────────────────────────── */
.g-eyebrow {
  display: inline-block; font-family: var(--font);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .75rem;
}

.g-section-title {
  font-family: var(--font) !important;
  font-size: clamp(1.875rem, 3.5vw, 2.875rem) !important;
  font-weight: 900 !important; letter-spacing: -.04em !important;
  color: var(--text) !important; line-height: 1.15 !important;
  margin-bottom: 1rem !important;
}

.g-section-subtitle {
  font-family: var(--font); font-size: 1.0625rem; color: var(--muted);
  line-height: 1.7; max-width: 600px; margin: 0 auto 3rem;
}

.g-section-header { text-align: center; margin-bottom: 3.5rem; }

/* Teal → Electric Blue gradient text */
.g-gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-l) 40%, var(--blue-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(0,205,176,.30));
}

/* Buttons */
.g-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font); font-weight: 700; font-size: .9375rem;
  border-radius: var(--r-md) !important;
  padding: .75rem 1.5rem; border: none; cursor: pointer;
  transition: all var(--t-base); text-decoration: none !important; line-height: 1;
}

.g-btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--blue)) !important;
  color: var(--dark) !important; box-shadow: var(--shadow-teal);
}
.g-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,205,176,.35); color: var(--dark) !important;
}

.g-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
}
.g-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important; transform: translateY(-1px);
}

.g-btn-white {
  background: #fff !important; color: var(--text) !important; box-shadow: var(--shadow-md);
}
.g-btn-white:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--text) !important;
}

.g-btn-outline-teal {
  background: transparent !important; color: var(--teal-l) !important;
  border: 1.5px solid rgba(0,205,176,.45) !important;
}
.g-btn-outline-teal:hover {
  background: rgba(0,205,176,.10) !important;
  border-color: var(--teal) !important; color: var(--teal) !important;
  transform: translateY(-1px);
}

.g-btn-lg { padding: .9rem 2rem !important; font-size: 1rem !important; }
.g-btn-sm { padding: .5rem 1rem !important; font-size: .8125rem !important; }

/* Scroll animation */
.g-fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 650ms cubic-bezier(.22,1,.36,1), transform 650ms cubic-bezier(.22,1,.36,1);
}
.g-fade-up.is-visible { opacity: 1; transform: translateY(0); }
.g-fade-up--delay-1 { transition-delay: 90ms; }
.g-fade-up--delay-2 { transition-delay: 180ms; }
.g-fade-up--delay-3 { transition-delay: 270ms; }
.g-fade-up--delay-4 { transition-delay: 360ms; }

/* ── 5. HERO — Ultra Minimal (Linear / Google style) ───────────────────────── */
.g-hero {
  position: relative; min-height: 100vh;
  background-color: var(--dark) !important; background-image: none !important;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 5.5rem 1.5rem 4rem; overflow: hidden;
}

/* Tono base muy sutil — los orbs animados hacen el trabajo visual */
.g-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,205,176,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Dot grid — sutil, sin noise SVG pesado */
.g-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.g-hero-inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 680px; margin: 0 auto; width: 100%;
}

.g-hero-h1 {
  font-family: var(--font) !important;
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  font-weight: 700 !important; letter-spacing: -.035em !important;
  color: #fff !important; line-height: 1.08 !important; margin-bottom: 1.375rem !important;
}

.g-hero-p {
  font-family: var(--font); font-size: clamp(.875rem, 1.4vw, 1rem);
  color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 2.25rem;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* CTA principal — único, grande, impactante */
.g-hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font); font-weight: 700; font-size: 1.0625rem;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff !important; text-decoration: none !important;
  padding: 1rem 2.25rem; border-radius: var(--r-pill);
  box-shadow: 0 0 0 1px rgba(0,205,176,.20), 0 8px 32px rgba(0,205,176,.25);
  transition: all var(--t-base); margin-bottom: 1.25rem;
}
.g-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0,205,176,.35), 0 16px 48px rgba(0,205,176,.30);
  color: #fff !important;
}
.g-hero-cta-arrow { transition: transform var(--t-fast); display: inline-block; }
.g-hero-cta:hover .g-hero-cta-arrow { transform: translateX(4px); }

/* WhatsApp link — texto, no botón */
.g-hero-sub-actions {
  display: flex; justify-content: center; margin-bottom: 2.25rem;
}
.g-hero-wa-link {
  font-family: var(--font); font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.55) !important; text-decoration: none !important;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color var(--t-fast);
}
.g-hero-wa-link:hover { color: rgba(255,255,255,.82) !important; }

/* ── 6. ANTIGRAVITY ORBS — floating animated background ───────────────────── */
.g-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  will-change: transform; z-index: 1;
}
.g-orb--1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(0,205,176,.26) 0%, transparent 65%);
  filter: blur(100px);
  top: -220px; left: -160px;
  animation: g-orb-1 16s ease-in-out infinite;
}
.g-orb--2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37,99,235,.20) 0%, transparent 65%);
  filter: blur(90px);
  top: -80px; right: -180px;
  animation: g-orb-2 20s ease-in-out infinite;
}
.g-orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,205,176,.12) 0%, transparent 65%);
  filter: blur(80px);
  bottom: 5%; left: 50%; transform: translateX(-50%);
  animation: g-orb-3 24s ease-in-out infinite;
}
.g-orb--4 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(37,99,235,.16) 0%, transparent 65%);
  filter: blur(70px);
  bottom: 15%; right: 8%;
  animation: g-orb-4 13s ease-in-out infinite;
}

@keyframes g-orb-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(55px,-75px) scale(1.06); }
  66%     { transform: translate(-35px,45px) scale(.94); }
}
@keyframes g-orb-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-65px,55px) scale(1.08); }
  66%     { transform: translate(45px,-55px) scale(.92); }
}
@keyframes g-orb-3 {
  0%,100% { transform: translateX(-50%) scale(1); }
  50%     { transform: translateX(calc(-50% + 70px)) scale(1.12); }
}
@keyframes g-orb-4 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-55px,-65px) scale(.88); }
}

/* ── 7. TRUSTED BAND ───────────────────────────────────────────────────────── */
.g-trusted {
  background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 1.875rem 1.5rem; text-align: center;
}

.g-trusted-label {
  font-family: var(--font); font-size: .72rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--muted-2);
  display: block; margin-bottom: 1.375rem;
}

.g-trusted-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.25rem 3rem; }

.g-tlogo { font-family: var(--font); font-size: .875rem; font-weight: 700; color: var(--border-2); letter-spacing: .02em; transition: color var(--t-base); }
.g-tlogo:hover { color: var(--muted); }

/* ── 8. STATS BAND ─────────────────────────────────────────────────────────── */
.g-stats-band { background: var(--dark-2); padding: 4.5rem 1.5rem; position: relative; overflow: hidden; }

.g-stats-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 75% at 0% 50%, rgba(0,205,176,.10), transparent 70%),
    radial-gradient(ellipse 45% 75% at 100% 50%, rgba(14,165,233,.08), transparent 70%);
  pointer-events: none;
}

.g-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.g-stat-item { text-align: center; }
.g-stat-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: .1rem; margin-bottom: .5rem; }
.g-stat-num { font-family: var(--font); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; color: #fff; line-height: 1; }
.g-stat-suffix { font-family: var(--font); font-size: 1.5rem; font-weight: 700; color: var(--teal); }

.g-stat-dian {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--teal), var(--blue-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.g-stat-label { font-family: var(--font); font-size: .8rem; color: rgba(255,255,255,.40); font-weight: 500; }

/* ── 9. FEATURES — Bento grid ──────────────────────────────────────────────── */
.g-features { background: var(--surface); padding: 6rem 1.5rem; }
.g-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.125rem; }

.g-feat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.875rem 1.75rem;
  transition: all var(--t-base); position: relative; overflow: hidden;
}

.g-feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0; transition: opacity var(--t-base);
}

.g-feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.g-feat-card:hover::before { opacity: 1; }

.g-feat-card--wide { grid-column: span 2; display: flex; align-items: flex-start; }
.g-feat-card--dark { background: var(--dark-2) !important; border-color: var(--dark-3) !important; }
.g-feat-card--dark h3 { color: #fff !important; }
.g-feat-card--dark p  { color: rgba(255,255,255,.52) !important; }
.g-feat-card--dark:hover { background: var(--dark-3) !important; border-color: rgba(0,205,176,.25) !important; box-shadow: var(--shadow-teal) !important; }

.g-feat-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.25rem; flex-shrink: 0;
}

.g-feat-icon--orange { background: rgba(249,115,22,.10); color: var(--orange); }
.g-feat-icon--indigo { background: rgba(124,58,237,.10); color: var(--violet); }
.g-feat-icon--green  { background: rgba(34,197,94,.10);  color: var(--green); }
.g-feat-icon--teal   { background: var(--teal-xs);        color: var(--teal); }
.g-feat-icon--blue   { background: var(--blue-xs);        color: var(--blue); }
.g-feat-icon--light  { background: rgba(255,255,255,.10); color: rgba(255,255,255,.85); }

.g-feat-card h3 { font-family: var(--font) !important; font-size: 1.0625rem !important; font-weight: 700 !important; color: var(--text) !important; margin-bottom: .625rem !important; letter-spacing: -.015em; }
.g-feat-card p  { font-family: var(--font); font-size: .9rem; color: var(--muted); line-height: 1.65; margin: 0; }
.g-feat-content { flex: 1; }
.g-feat-card--wide .g-feat-content { padding-left: 1.375rem; }

.g-feat-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-top: 1.125rem; }
.g-feat-tags span { font-family: var(--font); font-size: .7rem; font-weight: 600; color: var(--teal-d); background: var(--teal-xs); padding: .2rem .625rem; border-radius: var(--r-pill); border: 1px solid rgba(0,205,176,.22); }
.g-feat-tags--dark span { color: var(--teal-l); background: rgba(0,205,176,.08); border-color: rgba(0,205,176,.20); }

/* ── 10. ECOSYSTEM / PORTFOLIO ─────────────────────────────────────────────── */
.g-ecosystem { background: var(--dark); padding: 6rem 1.5rem; position: relative; overflow: hidden; }

.g-ecosystem::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 85% 50%, rgba(14,165,233,.12), transparent 70%),
    radial-gradient(ellipse 40% 45% at 15% 50%, rgba(0,205,176,.10), transparent 70%);
  pointer-events: none;
}

.g-ecosystem > .container   { position: relative; z-index: 1; }
.g-ecosystem .g-eyebrow     { color: var(--teal-l); }
.g-ecosystem .g-section-title { color: #fff !important; }
.g-ecosystem .g-section-subtitle { color: rgba(255,255,255,.44); }

.g-ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.125rem; margin-bottom: 2.75rem; }

.g-eco-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 1.75rem 1.5rem; transition: all var(--t-base);
}
.g-eco-card:hover { background: rgba(255,255,255,.07); border-color: rgba(0,205,176,.25); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }

.g-eco-icon { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; margin-bottom: 1rem; }
.g-eco-card h4 { font-family: var(--font) !important; font-size: .9375rem !important; font-weight: 700 !important; color: #fff !important; margin-bottom: .5rem !important; }
.g-eco-card p  { font-family: var(--font); font-size: .825rem; color: rgba(255,255,255,.48); line-height: 1.6; margin: 0; }

.g-portfolio-cta {
  background: rgba(0,205,176,.05); border: 1px solid rgba(0,205,176,.15);
  border-radius: var(--r-xl); padding: 2.25rem 2.75rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; transition: all var(--t-base);
}
.g-portfolio-cta:hover { background: rgba(0,205,176,.09); border-color: rgba(0,205,176,.28); }

.g-portfolio-cta-left { display: flex; align-items: center; gap: 1.25rem; }

.g-portfolio-cta-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,205,176,.18), rgba(14,165,233,.14));
  border: 1px solid rgba(0,205,176,.25); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--teal); flex-shrink: 0;
}

.g-portfolio-cta h3 { font-family: var(--font) !important; font-size: 1.175rem !important; font-weight: 700 !important; color: #fff !important; margin-bottom: .35rem !important; }
.g-portfolio-cta p  { font-family: var(--font); font-size: .875rem; color: rgba(255,255,255,.47); margin: 0; line-height: 1.5; }

/* ── 11. (limpiado — sección g-value eliminada del HTML) ───────────────────── */

/* ── 12. TESTIMONIALS ──────────────────────────────────────────────────────── */
.g-testimonials { background: var(--surface-2); padding: 6rem 1.5rem; }

.g-quote-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.75rem; height: 100%; transition: all var(--t-base); display: flex; flex-direction: column; }
.g-quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,205,176,.22); }
.g-quote-card--featured { border-color: rgba(0,205,176,.25); box-shadow: 0 0 0 2px rgba(0,205,176,.08), var(--shadow-sm); }

.g-quote-stars { color: var(--amber); font-size: .9rem; letter-spacing: .05em; margin-bottom: 1rem; }
.g-quote-text { font-family: var(--font); font-size: .9rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; flex: 1; }
.g-quote-author { display: flex; align-items: center; gap: .875rem; }
.g-quote-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font); font-size: .75rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.g-quote-name { font-family: var(--font); font-size: .875rem; font-weight: 700; color: var(--text); }
.g-quote-role { font-family: var(--font); font-size: .775rem; color: var(--muted); }

/* ── 13. PRICING ───────────────────────────────────────────────────────────── */
.g-pricing { background: var(--surface); padding: 6rem 1.5rem; }

section.pricing { background: transparent !important; background-color: transparent !important; background-image: none !important; padding: 0 !important; }

section.pricing .card { border-radius: var(--r-lg) !important; border: 1px solid var(--border) !important; box-shadow: var(--shadow-xs) !important; font-family: var(--font); transition: all var(--t-base) !important; background: var(--white) !important; }
section.pricing .card:hover { transform: translateY(-5px) !important; box-shadow: var(--shadow-md) !important; border-color: rgba(0,205,176,.28) !important; }
section.pricing .col-lg-3:nth-child(3) .card { border-color: rgba(0,205,176,.28) !important; box-shadow: var(--shadow-teal) !important; }

section.pricing .card-title { font-family: var(--font) !important; font-size: .75rem !important; font-weight: 700 !important; letter-spacing: .1em !important; }
section.pricing .card-price { font-family: var(--font) !important; font-size: 2rem !important; font-weight: 800 !important; color: var(--text) !important; }
section.pricing .card-price .period { font-size: .7rem !important; color: var(--muted) !important; font-weight: 500 !important; }
section.pricing ul li { font-family: var(--font); font-size: .875rem; color: var(--text-2); margin-bottom: .75rem !important; }
section.pricing .fa-check { color: var(--teal-d) !important; }

section.pricing .btn.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--blue)) !important;
  border: none !important; border-radius: var(--r-pill) !important;
  font-family: var(--font) !important; font-size: .775rem !important;
  font-weight: 700 !important; padding: .75rem 1.25rem !important;
  opacity: 1 !important; box-shadow: var(--shadow-teal);
  color: var(--dark) !important; transition: all var(--t-base) !important;
}
section.pricing .btn.btn-primary:hover { transform: translateY(-2px) !important; box-shadow: 0 10px 30px rgba(0,205,176,.35) !important; }

section.pricing .separador { height: 1px; background: var(--border); margin: 1rem 0; border: none; }

section.pricing .card-footer { background: var(--surface) !important; border-top: 1px solid var(--border) !important; border-radius: 0 0 var(--r-lg) var(--r-lg) !important; font-family: var(--font); font-size: .775rem; }

.ribbon span { background: linear-gradient(135deg, var(--teal-d), var(--teal)) !important; font-family: var(--font) !important; color: var(--dark) !important; }

.g-corporate-card { background: var(--dark-2); border-radius: var(--r-xl); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.g-corporate-left { display: flex; align-items: flex-start; gap: 1.25rem; }
.g-corporate-icon { width: 52px; height: 52px; background: var(--teal-xs); border: 1px solid rgba(0,205,176,.22); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; color: var(--teal); flex-shrink: 0; }
.g-corporate-left h3 { font-family: var(--font) !important; font-size: 1.125rem !important; font-weight: 700 !important; color: #fff !important; margin-bottom: .35rem !important; }
.g-corporate-left p  { font-family: var(--font); font-size: .875rem; color: rgba(255,255,255,.48); margin: 0; }


/* ── 14. FAQ ───────────────────────────────────────────────────────────────── */
.g-faq { background: var(--white); padding: 6rem 1.5rem; }
.container-accordion { max-width: 760px !important; }

.g-faq .accordion .card { border-radius: var(--r-md) !important; border: 1px solid var(--border) !important; box-shadow: none !important; overflow: hidden; margin-bottom: .625rem !important; font-family: var(--font); }
.g-faq .accordion .card-header { background: var(--white) !important; border-bottom: none !important; padding: 0 !important; }
.g-faq .accordion .btn-link { display: flex !important; justify-content: space-between !important; align-items: center !important; width: 100% !important; text-align: left !important; font-family: var(--font) !important; font-size: .9375rem !important; font-weight: 600 !important; color: var(--text) !important; padding: 1.125rem 1.25rem !important; text-decoration: none !important; transition: color var(--t-fast); }
.g-faq .accordion .btn-link:not(.collapsed) { color: var(--teal-d) !important; }
.g-faq .accordion .btn-link i { font-size: .8rem; color: var(--muted); transition: transform var(--t-base); flex-shrink: 0; margin-left: 1rem; }
.g-faq .accordion .btn-link:not(.collapsed) i { transform: rotate(180deg); color: var(--teal-d); }
.g-faq .accordion .card-body { padding: 0 1.25rem 1.25rem !important; font-family: var(--font); font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── 15. CTA BANNER ────────────────────────────────────────────────────────── */
.g-cta-banner { background: var(--dark-2); border-radius: var(--r-xl); padding: 4rem 3rem; text-align: center; margin: 3rem 0 0; position: relative; overflow: hidden; }

.g-cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.g-cta-orb--1 { width: 320px; height: 320px; background: rgba(0,205,176,.16); top: -100px; left: -80px; }
.g-cta-orb--2 { width: 300px; height: 300px; background: rgba(14,165,233,.14); bottom: -80px; right: -60px; }
.g-cta-inner { position: relative; z-index: 1; }

.g-cta-banner h3 { font-family: var(--font) !important; font-size: clamp(1.5rem, 3vw, 2.25rem) !important; font-weight: 800 !important; color: #fff !important; letter-spacing: -.03em !important; margin-bottom: .75rem !important; }
.g-cta-banner p { font-family: var(--font); font-size: 1rem; color: rgba(255,255,255,.52); margin-bottom: 2rem; }

/* ── 16. FOOTER ────────────────────────────────────────────────────────────── */
.footer-sca { background: var(--dark) !important; background-image: none !important; padding: 3.5rem 2rem 2rem !important; border-top: 1px solid rgba(255,255,255,.06); }

.footer-sca h2 { font-family: var(--font) !important; font-size: .8125rem !important; font-weight: 700 !important; color: rgba(255,255,255,.70) !important; letter-spacing: .07em !important; text-transform: uppercase !important; margin-bottom: 1rem !important; }
.footer-sca .column-items a { font-family: var(--font) !important; font-size: .875rem !important; color: rgba(255,255,255,.42) !important; transition: color var(--t-fast); line-height: 2.2 !important; }
.footer-sca .column-items a:hover { color: rgba(255,255,255,.85) !important; }
.footer-sca .text-muted { font-family: var(--font); font-size: .775rem; color: rgba(255,255,255,.26) !important; }
.footer-sca .column { display: flex; flex-wrap: wrap; gap: 2rem 4rem; list-style: none; padding: 0; margin-bottom: 2rem; }
.footer-sca .column-inicio { min-width: 160px; }

.nav-ocult .btn-menu { color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-sm); padding: .5rem .75rem; font-size: 1.1rem; cursor: pointer; transition: all var(--t-fast); }
.nav-ocult .btn-menu:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── 17. RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .g-features-grid { grid-template-columns: repeat(2, 1fr); }
  .g-feat-card--wide { grid-column: span 2; }
}

@media (max-width: 991px) {
  .g-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .g-ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .g-hero { padding: 7rem 1rem 3rem; min-height: 100svh; }
  .g-hero-cta { width: 100%; justify-content: center; }
  .g-features-grid { grid-template-columns: 1fr; }
  .g-feat-card--wide { grid-column: span 1; flex-direction: column; }
  .g-feat-card--wide .g-feat-content { padding-left: 0; }
  .g-ecosystem-grid { grid-template-columns: 1fr; }
  .g-portfolio-cta { flex-direction: column; text-align: center; }
  .g-portfolio-cta-left { flex-direction: column; align-items: center; text-align: center; }
  .g-cta-banner { padding: 2.5rem 1.5rem; }
  header .header-right { display: none; }
}

@media (max-width: 575px) {
  .g-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .g-trusted-logos { gap: 1rem 2rem; }
  .g-app-body { height: 240px; }
}

/* ── 18. FOOTER ─────────────────────────────────────────────────────────────── */
.g-footer { font-family: var(--font); }

.g-footer-top {
  background: var(--dark);
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.g-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem 3rem;
}

.g-footer-logo { margin-bottom: 1rem; }
.g-footer-logo img { height: 36px; width: auto; }

.g-footer-tagline {
  font-size: .875rem; color: rgba(255,255,255,.42);
  line-height: 1.65; margin-bottom: 1.375rem; max-width: 280px;
}

.g-footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(37,211,102,.10); border: 1px solid rgba(37,211,102,.22);
  color: #25D366; font-size: .8125rem; font-weight: 600;
  padding: .5rem 1rem; border-radius: var(--r-pill);
  transition: all var(--t-fast); text-decoration: none !important;
  margin-bottom: 1rem;
}
.g-footer-wa:hover { background: rgba(37,211,102,.18); color: #25D366; transform: translateY(-1px); }

.g-footer-dian {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 600; color: var(--teal-d);
  background: var(--teal-xs); border: 1px solid rgba(0,205,176,.20);
  padding: .3rem .75rem; border-radius: var(--r-pill);
}

.g-footer-heading {
  font-size: .75rem !important; font-weight: 700 !important;
  letter-spacing: .09em !important; text-transform: uppercase !important;
  color: rgba(255,255,255,.65) !important; margin-bottom: 1rem !important;
}

.g-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.g-footer-links li a { font-size: .875rem !important; color: rgba(255,255,255,.40) !important; text-decoration: none !important; font-weight: 400 !important; transition: color var(--t-fast); line-height: 1.5; display: block; }
.g-footer-links li a:hover { color: rgba(255,255,255,.80) !important; }

.g-footer-cta-text { font-size: .8375rem; color: rgba(255,255,255,.40); line-height: 1.6; margin-bottom: 1.125rem; }

.g-footer-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--dark) !important; font-size: .875rem; font-weight: 700;
  padding: .75rem 1.25rem; border-radius: var(--r-md);
  text-decoration: none !important; transition: all var(--t-base);
  margin-bottom: .75rem; box-shadow: var(--shadow-teal);
}
.g-footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,205,176,.32); color: var(--dark) !important; }

.g-footer-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.20);
  color: #25D366 !important; font-size: .8375rem; font-weight: 600;
  padding: .625rem 1rem; border-radius: var(--r-md);
  text-decoration: none !important; transition: all var(--t-fast);
}
.g-footer-cta-wa:hover { background: rgba(37,211,102,.15); color: #25D366 !important; }

.g-footer-bottom {
  background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.05); padding: 1.125rem 0;
}
.g-footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.g-footer-bottom span { font-size: .775rem; color: rgba(255,255,255,.25); }
.g-footer-legal a { font-size: .775rem !important; color: rgba(255,255,255,.25) !important; text-decoration: none !important; transition: color var(--t-fast); }
.g-footer-legal a:hover { color: rgba(255,255,255,.55) !important; }

@media (max-width: 1100px) {
  .g-footer-grid { grid-template-columns: 1fr 1fr; }
  .g-footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .g-footer-grid { grid-template-columns: 1fr; }
  .g-footer-col--brand { grid-column: 1; }
  .g-footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ── 19. PORTFOLIO SECTION ─────────────────────────────────────────────────── */
.g-portfolio-section {
  background: var(--dark-2); padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* --text es #080D18 (oscuro para secciones light) — en dark se fuerza blanco */
.g-portfolio-section .g-section-title,
.g-portfolio-hero-left .g-section-title { color: #ffffff !important; }

.g-portfolio-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.g-portfolio-hero-right {
  display: flex; justify-content: flex-end;
}

.g-portfolio-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 420px;
}

.g-pf-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 1.5rem 1.25rem; text-align: left;
  transition: all var(--t-base);
}
.g-pf-card:hover {
  background: rgba(0,205,176,.06); border-color: rgba(0,205,176,.20);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.g-pf-card--lg { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }
.g-pf-card--wide { grid-column: 1 / 3; display: flex; align-items: center; gap: 1.25rem; }
.g-pf-card--wide .g-pf-num { margin-bottom: 0; }
.g-pf-card--wide .g-pf-label { margin: 0; }

.g-pf-icon { font-size: 1.375rem; color: var(--teal); margin-bottom: .75rem; }
.g-pf-num {
  font-family: var(--font); font-size: 2rem; font-weight: 900;
  color: #fff; letter-spacing: -.04em; margin-bottom: .25rem; line-height: 1;
}
.g-pf-label { font-family: var(--font); font-size: .825rem; color: rgba(255,255,255,.45); line-height: 1.4; }

@media (max-width: 900px) {
  .g-portfolio-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .g-portfolio-hero-right { justify-content: flex-start; }
  .g-portfolio-grid { max-width: 100%; }
}
@media (max-width: 480px) {
  .g-portfolio-grid { grid-template-columns: 1fr; }
  .g-pf-card--lg { grid-row: auto; }
  .g-pf-card--wide { grid-column: 1; flex-direction: column; align-items: flex-start; }
}

/* ── 21. FEAT-CARD UPGRADE — glow hover 2030 ──────────────────────────────── */
.g-feat-card {
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base) !important;
}
.g-feat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,205,176,.12) !important;
}
.g-feat-card--dark:hover {
  box-shadow: 0 0 40px rgba(0,205,176,.10), 0 16px 48px rgba(0,0,0,.4) !important;
}
.g-eco-card {
  transition: all var(--t-base) !important;
}
.g-eco-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(0,205,176,.05) !important;
  border-color: rgba(0,205,176,.22) !important;
  box-shadow: 0 0 36px rgba(0,205,176,.10), 0 12px 40px rgba(0,0,0,.35) !important;
}

/* ── 22. LEGACY SUPPRESSORS ────────────────────────────────────────────────── */
.new-header { display: none !important; }
.all-image  { background: none !important; background-image: none !important; }
body        { background: var(--white) !important; }
.g-btn { font-weight: inherit !important; font-size: inherit !important; }

section.pricing {
  background-color: transparent !important;
  background-image: none !important;
  background: transparent !important;
}
