
:root {
  --verde-oscuro: #0d2b1a;
  --verde-medio: #15803d;
  --verde-claro: #16a34a;
  --verde-brillante: #4ade80;
  --crema: #fafaf7;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #1a2e22; background: var(--crema); }
.font-heading { font-family: 'Poppins', system-ui, sans-serif; }
.gradient-hero {
  background: linear-gradient(135deg, #0d2b1a 0%, #1a4a2e 50%, #0f3520 100%);
}
.gradient-btn {
  background: linear-gradient(135deg, #16a34a, #15803d);
}
.gradient-btn:hover { filter: brightness(1.08); }
.card-hover { transition: transform .2s ease, box-shadow .2s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 12px 28px -8px rgba(13,43,26,.25); }
.prose-banano h2 { font-family: 'Poppins', system-ui, sans-serif; font-weight: 700; font-size: 1.5rem; margin-top: 2rem; margin-bottom: .75rem; color: #0d2b1a; }
.prose-banano p { margin-bottom: 1rem; line-height: 1.75; color: #374151; }
.prose-banano ul { margin-bottom: 1rem; padding-left: 1.25rem; list-style: disc; color: #374151; }
.prose-banano li { margin-bottom: .4rem; line-height: 1.6; }

/* ===== Carrusel de interfaz en marco de celular ===== */
.phone-frame {
  width: 260px;
  aspect-ratio: 9 / 19.5;
  background: #14171a;
  border-radius: 2.75rem;
  padding: 12px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -15px rgba(13, 43, 26, .35), 0 0 0 2px rgba(255,255,255,.04) inset;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 16px;
  background: #14171a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-frame__screen {
  width: 100%; height: 100%;
  background: #fff;
  border-radius: 2.1rem;
  overflow: hidden;
  position: relative;
}
.phone-slides {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.65,0,.35,1);
}
.phone-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app-topbar {
  background: var(--verde-oscuro);
  color: #fff;
  padding: 16px 14px 10px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  flex-shrink: 0;
}
.app-screen-body {
  padding: 10px 12px 16px;
  font-size: 10.5px;
  color: #1a2e22;
  overflow-y: auto;
}
.app-card { background: #fff; border: 1px solid #eef0ee; border-radius: 10px; padding: 9px 10px; margin-bottom: 7px; }
.app-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
.app-stat-num { font-size: 16px; font-weight: 800; color: var(--verde-oscuro); font-family: 'Poppins', system-ui, sans-serif; }
.app-stat-label { font-size: 8px; color: #6b7280; text-transform: uppercase; letter-spacing: .03em; }
.app-chip-row { display: flex; gap: 5px; margin-bottom: 8px; flex-wrap: wrap; }
.app-chip { flex: 1 1 0; min-width: 50px; border-radius: 8px; padding: 5px 6px; color: #fff; font-weight: 700; }
.app-chip .num { font-size: 13px; display: block; font-family: 'Poppins', system-ui, sans-serif; }
.app-chip .lbl { font-size: 7px; opacity: .85; }
.app-table { width: 100%; border-collapse: collapse; font-size: 9px; }
.app-table th { text-align: left; color: #9ca3af; font-weight: 600; padding: 3px 2px; border-bottom: 1px solid #eee; font-size: 8px; text-transform: uppercase; }
.app-table td { padding: 4px 2px; border-bottom: 1px solid #f3f4f6; }
.app-censored { display: inline-block; background: #d1d5db; border-radius: 3px; padding: 0 5px; color: transparent; user-select: none; }
.app-field-label { font-size: 8.5px; color: #6b7280; margin-bottom: 2px; display: block; }
.app-field { border: 1px solid #e5e7eb; border-radius: 6px; padding: 6px 7px; font-size: 9px; color: #9ca3af; margin-bottom: 8px; background: #fafafa; }
.app-btn { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; text-align: center; font-weight: 700; font-size: 10px; padding: 8px; border-radius: 8px; margin-top: 4px; }
.app-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; margin-right: 4px; flex-shrink: 0; }

.phone-dots { display: flex; gap: 6px; justify-content: center; margin-top: 18px; }
.phone-dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; cursor: pointer; border: none; padding: 0; transition: background .2s, width .2s; }
.phone-dot.active { background: var(--verde-claro); width: 22px; border-radius: 4px; }
.phone-nav-btn { background: #fff; border: 1px solid #e5e7eb; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--verde-oscuro); transition: background .15s; flex-shrink: 0; }
.phone-nav-btn:hover { background: #f3f4f6; }
