@charset "UTF-8";
/* FiscalGo — Paleta azul marca + estilo landing moderno */
:root {
  --primary: #003466;
  --primary-dark: #002244;
  --primary-mid: #0d5a9e;
  --primary-bright: #1a7fd4;
  --primary-light: #3d9ee8;
  --accent: #fbbf24;
  --accent-hover: #f59e0b;
  --bg: #ffffff;
  --bg-soft: #f0f7ff;
  --bg-muted: #e8f2fc;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 52, 102, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 52, 102, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 52, 102, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.container--narrow { width: min(720px, 92vw); }

/* Top bar */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__badge {
  background: rgba(26, 127, 212, 0.35);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
}

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 500;
  transition: opacity var(--transition);
}

.top-bar__link:hover { opacity: 0.85; }

.top-bar__link--wa {
  background: rgba(37, 211, 102, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.top-bar__link--wa:hover { background: rgba(37, 211, 102, 0.35); opacity: 1; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-sm); }

.header .container {
  width: min(1320px, 96vw);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  flex-wrap: nowrap;
  min-width: 0;
}

@media (min-width: 769px) and (max-width: 1240px) {
  .header__inner {
    gap: 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .header__inner::-webkit-scrollbar { display: none; }

  .nav { gap: 0.875rem; }
  .nav a { font-size: 0.75rem; }
  .header__actions { gap: 0.4rem; }
  .header__actions .btn { font-size: 0.75rem; padding: 0.45rem 0.75rem; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.logo strong { color: var(--primary-bright); }

.logo img { border-radius: 8px; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex-shrink: 0;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.nav a:hover { color: var(--primary); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header__actions .btn {
  white-space: nowrap;
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
}

.header__actions .btn--primary {
  padding: 0.5rem 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-bright));
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 127, 212, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 127, 212, 0.45);
}

.btn--ghost {
  color: var(--primary);
  background: transparent;
}

.btn--ghost:hover { background: var(--bg-soft); }

.btn--outline {
  border-color: var(--primary-light);
  color: var(--primary);
  background: #fff;
}

.btn--outline:hover {
  background: var(--bg-soft);
  border-color: var(--primary-bright);
}

.btn--accent {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
}

.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--lg { padding: 0.85rem 1.75rem; font-size: 1rem; }

.btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn--wa:hover {
  background: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn--wa svg { flex-shrink: 0; }

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(26, 127, 212, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 52, 102, 0.08), transparent),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 3rem;
  row-gap: 1.25rem;
  align-items: start;
}

.hero__title {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 0.25rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 920px;
  justify-self: center;
}

.hero__eyebrow {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}

.hero__content {
  grid-column: 1;
  grid-row: 3;
}

.hero__visual {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: start;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-bright);
  background: rgba(26, 127, 212, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1,
.hero__title {
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-features {
  list-style: none;
  margin-top: 0;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-features__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero-features__item strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-features__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid rgba(26, 127, 212, 0.45);
  border-radius: 10px;
  color: #1a7fd4;
  box-shadow: 0 2px 8px rgba(0, 52, 102, 0.08);
}

.hero-features__icon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  display: block;
  flex-shrink: 0;
  stroke: #0d5a9e !important;
  color: #0d5a9e !important;
}

.hero-features__item:hover .hero-features__icon {
  background: linear-gradient(145deg, #1a7fd4 0%, #0d5a9e 100%);
  border-color: #003466;
  color: #fff;
}

.hero-features__item:hover .hero-features__icon svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

/* WordPress: tamaño y color azul de iconos hero */
.fiscalgo-landing .hero-features__icon {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  overflow: hidden;
  background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%) !important;
  border: 1px solid rgba(26, 127, 212, 0.45) !important;
  color: #1a7fd4 !important;
}

.fiscalgo-landing .hero-features__icon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  stroke: #0d5a9e !important;
  color: #0d5a9e !important;
  fill: none !important;
}

.fiscalgo-landing .hero-features__item:hover .hero-features__icon {
  background: linear-gradient(145deg, #1a7fd4 0%, #0d5a9e 100%) !important;
}

.fiscalgo-landing .hero-features__item:hover .hero-features__icon svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

.fiscalgo-landing .top-bar__link svg,
.fiscalgo-landing .btn--wa svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.fiscalgo-landing .btn--wa.btn--lg svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

.fiscalgo-landing .check-list svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
}

.fiscalgo-landing .whatsapp-float svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
}

.fiscalgo-landing .dgii-cert-badge__icon {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.22) !important;
}

.fiscalgo-landing .dgii-cert-badge__icon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  stroke: #15803d !important;
}

.fiscalgo-landing .dgii-cert-badge__icon svg path {
  stroke: #15803d !important;
}

.fiscalgo-landing .dgii-cert-badge__label {
  font-size: 0.6875rem !important;
}

.fiscalgo-landing .dashboard-card__body--cert {
  min-height: 100px !important;
  padding: 0.85rem 1rem !important;
}

.fiscalgo-landing .dgii-cert-badge {
  gap: 0.35rem !important;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
  justify-content: center;
  width: 100%;
}

.hero__visual .hero__ctas .btn {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__trust svg { color: var(--primary-bright); flex-shrink: 0; }

/* Dashboard mockup */
.dashboard-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.dashboard-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #ef4444; }
.dot--yellow { background: #fbbf24; }
.dot--green { background: #22c55e; }

.dashboard-card__title {
  margin-left: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dashboard-card__body { padding: 1.5rem; }

.dashboard-card__body--cert {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 0.85rem 1rem;
}

.dgii-cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.dgii-cert-badge__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.08) 100%);
  color: #15803d;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.22);
}

.dgii-cert-badge__icon svg {
  width: 22px;
  height: 22px;
  stroke: #15803d;
}

.dgii-cert-badge__label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stat {
  background: var(--bg-soft);
  padding: 1rem;
  border-radius: var(--radius);
}

.stat--success { background: rgba(34, 197, 94, 0.08); }

.stat__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat--success .stat__value { color: #16a34a; }

.invoice-preview { display: flex; flex-direction: column; gap: 0.65rem; }

.invoice-preview__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--bg-muted);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge--ok { background: rgba(34, 197, 94, 0.15); color: #15803d; }
.badge--pending { background: rgba(251, 191, 36, 0.2); color: #b45309; }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid var(--border);
}

.floating-badge svg { color: var(--primary-bright); }

.floating-badge--1 { top: -12px; right: -8px; animation: float 4s ease-in-out infinite; }
.floating-badge--2 { bottom: 24px; left: -20px; animation: float 4s ease-in-out infinite 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Social proof */
.social-proof {
  padding: 2.5rem 0;
  background: var(--primary-dark);
  color: #fff;
}

.social-proof__text {
  text-align: center;
  font-size: 0.9375rem;
  opacity: 0.85;
  margin-bottom: 1.75rem;
}

.social-proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.proof-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.proof-stat span {
  font-size: 0.8125rem;
  opacity: 0.8;
}

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-soft); }

.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header--center { text-align: center; margin-inline: auto; }
.section-header--center p { margin-inline: auto; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-bright);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* Cards */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.section--alt .card { border-color: transparent; box-shadow: var(--shadow-sm); }

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 127, 212, 0.2);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-muted), var(--bg-soft));
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--primary-bright);
}

.card__icon svg { width: 26px; height: 26px; }

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.9375rem; color: var(--text-muted); }

.card--feature { position: relative; padding-left: 2.5rem; }

.card__num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(26, 127, 212, 0.15);
  line-height: 1;
}

/* Steps */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 0 0.5rem;
}

.step__circle {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-bright));
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 52, 102, 0.25);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.step p { font-size: 0.875rem; color: var(--text-muted); }

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-bright));
  margin-top: 24px;
  flex-shrink: 0;
  opacity: 0.4;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse .split__visual { order: -1; }

.check-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.check-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary-bright);
  margin-top: 2px;
}

.check-list strong {
  display: block;
  font-weight: 700;
  color: var(--primary-dark);
}

.check-list span { font-size: 0.9375rem; color: var(--text-muted); }

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.image-card--rounded { border-radius: var(--radius-lg); }

.image-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 34, 68, 0.85));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-block;
  background: var(--bg-muted);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), background var(--transition);
}

a.pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }

.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item[open] { border-color: var(--primary-light); }

.faq__item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary-bright);
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  padding: 0 1.5rem 1.15rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA banner */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  color: #fff;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-banner p {
  margin-top: 0.5rem;
  opacity: 0.9;
  font-size: 1.0625rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.logo--light { color: #fff; }
.logo--light strong { color: var(--accent); }

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.75;
  max-width: 280px;
}

.footer__links h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: #fff;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  opacity: 0.75;
  margin-bottom: 0.5rem;
  transition: opacity var(--transition);
}

.footer__links a:hover { opacity: 1; color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.65;
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #25d366;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  opacity: 1 !important;
}

.footer__wa:hover { background: #1fb855; }

/* Hero extras */
.hero__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__note a {
  color: var(--primary-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trust-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  background: rgba(26, 127, 212, 0.12);
  color: var(--primary-bright);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.track-flow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.track-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: var(--bg-soft);
}

.track-step span {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--border);
  font-size: 0.7rem;
  font-weight: 800;
}

.track-step--ok { color: var(--primary-dark); }
.track-step--ok span { background: rgba(34, 197, 94, 0.2); color: #15803d; }
.track-step--live { background: rgba(26, 127, 212, 0.1); color: var(--primary); }
.track-step--live span { background: var(--primary-bright); color: #fff; }

/* Trust strip */
.trust-strip {
  padding: 2rem 0;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-strip__grid strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.trust-strip__grid span { font-size: 0.8125rem; opacity: 0.85; }

/* Steps row (Alegra style) */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-card__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-bright));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 52, 102, 0.25);
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.step-card p { font-size: 0.9375rem; color: var(--text-muted); text-align: left; }

.step-card__lines {
  list-style: none;
  text-align: left;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.step-card__lines li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.45;
  padding-left: 1.1rem;
  position: relative;
}

.step-card__lines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--primary-bright);
  border-radius: 50%;
}

.step-card__lines li strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.lead { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.feature-list li {
  font-size: 0.9375rem;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--primary-bright);
  border-radius: 50%;
}

.feature-list code {
  font-size: 0.8em;
  background: var(--bg-muted);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.env-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }

.pill--dev {
  background: var(--bg-muted);
  color: var(--primary);
  border: 1px dashed var(--primary-light);
}

.pill--highlight { background: var(--primary); color: #fff; }
.pill--highlight:hover { background: var(--primary-mid); color: #fff; }

.pill--prod { background: var(--primary-bright); color: #fff; }
.pill--prod:hover { background: #0d6ecd; color: #fff; }

.ecf-types-card {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary-mid));
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ecf-types-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.ecf-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.ecf-grid li {
  font-size: 0.8125rem;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.ecf-grid strong { color: var(--accent); margin-right: 0.25rem; }

/* Modos Retail / Ecommerce / Administrativo */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mode-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.mode-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.mode-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.mode-card--retail .mode-card__icon { background: linear-gradient(135deg, #0d5a9e, #1a7fd4); }
.mode-card--ecommerce .mode-card__icon { background: linear-gradient(135deg, #003466, #0d5a9e); }
.mode-card--admin .mode-card__icon { background: linear-gradient(135deg, #002244, #003466); }

.mode-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary-dark); }
.mode-card__tag { font-size: 0.75rem; font-weight: 600; color: var(--primary-bright); text-transform: uppercase; letter-spacing: 0.05em; margin: 0.25rem 0 1rem; }

.mode-card ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.mode-card ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
}

.mode-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-bright);
  font-weight: 700;
}

.mode-card__channels {
  font-size: 0.8125rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.mode-card__channels span {
  display: inline-block;
  background: var(--bg-muted);
  color: var(--primary);
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.35rem;
}

/* Comparison table */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--primary-dark);
}

.compare-table tbody tr:hover { background: rgba(240, 247, 255, 0.5); }

.compare-label {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.8125rem;
}

.compare-label--web { background: var(--primary); color: #fff; }
.compare-label--app { background: #25d366; color: #fff; }

.compare-table .yes { color: #15803d; font-weight: 600; }
.compare-table .no { color: #94a3b8; }
.compare-table .partial { color: #b45309; font-weight: 500; }
.compare-table .exclusive { color: var(--primary-bright); font-weight: 700; }

.portal-modules__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.module-chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.module-chip strong { display: block; color: var(--primary-dark); margin-bottom: 0.25rem; }

/* Numbered values */
.numbered-values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.numbered-values li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.numbered-values li > span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 8px;
}

.numbered-values strong { display: block; color: var(--primary-dark); margin-bottom: 0.2rem; }
.numbered-values div { font-size: 0.9375rem; color: var(--text-muted); }

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.info-card--edu { border-left: 4px solid var(--primary-bright); }

.info-card h3 { font-size: 1.125rem; color: var(--primary-dark); margin-bottom: 0.75rem; }
.info-card h4 { font-size: 0.9375rem; color: var(--primary); margin: 1rem 0 0.5rem; }
.info-card p { font-size: 0.9375rem; color: var(--text-muted); }
.info-card hr { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.info-card__link { display: inline-block; margin-top: 1rem; font-weight: 700; color: #25d366; }

/* API teaser */
.api-teaser {
  background: var(--primary-dark);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.api-teaser .section-tag { color: var(--accent); }
.api-teaser h3 { font-size: 1.25rem; margin: 0.5rem 0 1rem; }

.code-block {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  overflow-x: auto;
}

.code-block code { font-family: "Fira Code", Consolas, monospace; color: #a5d8ff; }

.api-teaser p { font-size: 0.875rem; opacity: 0.85; margin-bottom: 1rem; }

.api-teaser .btn--outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #0f172a;
  background: #fff;
}

.api-teaser .btn--outline:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(251, 191, 36, 0.45);
}

/* Values gradient section */
.section--gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  color: #fff;
}

.section-header--light h2 { color: #fff; }
.section-header--light .section-tag { color: var(--accent); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.value-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  transition: background var(--transition);
}

.value-item:hover { background: rgba(255, 255, 255, 0.15); }

/* Pricing */
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
  max-width: 1000px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.price-card:hover { box-shadow: var(--shadow-md); }

.price-card--featured {
  border-color: var(--primary-bright);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  z-index: 1;
}

.price-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.price-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  min-height: 2.5em;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}

.price-card__currency {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-card__amount--custom { font-size: 1.75rem; }

.price-card__period { font-size: 0.875rem; color: var(--text-muted); }

.price-card__note {
  font-size: 0.75rem;
  color: var(--primary-bright);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.price-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.price-card__features li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.4rem 0 0.4rem 1.15rem;
  position: relative;
  border-bottom: 1px solid var(--bg-soft);
}

.price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-bright);
  font-weight: 700;
}

.price-card__cta { width: 100%; text-align: center; }

.pricing-foot {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.pricing-cta-center { text-align: center; margin-top: 2rem; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--transition);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  background: #1fb855;
}

.whatsapp-float__label { display: none; }

@media (min-width: 769px) {
  .whatsapp-float__label { display: inline; }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 1rem;
  }

  .hero__title {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(1.35rem, 5vw, 1.85rem);
    text-align: left;
    max-width: none;
    justify-self: stretch;
  }

  .hero__eyebrow { grid-column: 1; grid-row: 2; }
  .hero__content { grid-column: 1; grid-row: 3; }
  .hero__visual {
    grid-column: 1;
    grid-row: 4;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    justify-self: center;
  }

  .hero__visual .hero__ctas {
    justify-content: stretch;
  }

  .hero__visual .hero__ctas .btn {
    flex: 1 1 100%;
  }
  .cards-grid--3 { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__visual { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card--featured { transform: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav, .header__actions { display: none; }
  .menu-toggle { display: flex; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--header-h) + 36px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .header__actions.is-open {
    display: flex;
    position: fixed;
    top: calc(var(--header-h) + 36px + 280px);
    left: 0;
    right: 0;
    padding: 0 1.5rem 1.5rem;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
  }

  .header__actions.is-open .btn { justify-content: center; }

  .menu-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .cards-grid--2 { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 24px; margin: 0; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .floating-badge--2 { left: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .ecf-grid { grid-template-columns: 1fr; }
  .header__actions.is-open { top: auto; position: relative; padding: 1rem 1.5rem 1.5rem; box-shadow: none; }
  .whatsapp-float { padding: 0.85rem; border-radius: 50%; }
}
