/* ============================================================
   Code Enchanters — Hoja de estilos global
   Paleta de marca:
   --primary  #742cc4 (morado) · --accent #ACFB34 (lima)
   --dark     #2d2d2d          · fondo oscuro hero #0d0b17
   ============================================================ */

:root {
  --primary: #742cc4;
  --primary-soft: #f5edfd;
  --primary-dark: #3b1f70;
  --accent: #ACFB34;
  --accent-soft: #f1ffd6;
  --accent-dark: #4d7a06;
  --dark: #2d2d2d;
  --dark-bg: #0d0b17;
  --dark-panel: #241a3d;
  --text: #2d2d2d;
  --text-muted: #57566a;
  --text-soft: #8b8a99;
  --border: #ececec;
  --bg-alt: #faf8fd;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(20, 16, 31, .08);
  --container: 1200px;
  --header-h: 72px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip; /* elimina scroll horizontal */
}

body {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .6em; font-weight: 800; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
ul { margin: 0; }

a { color: var(--primary); transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .85; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

::selection { background: var(--accent); color: var(--dark); }

/* Iconos SVG en línea */
.icon {
  stroke: currentColor; stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  display: block; flex-shrink: 0;
  width: 18px; height: 18px;
}
.icon--accent { stroke: var(--accent); }
.icon--primary { stroke: var(--primary); }
.icon--ok { stroke: var(--accent-dark); }
.icon--bad { stroke: #c94a3a; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* Secciones: espaciado uniforme y claro entre bloques */
.section { padding-block: clamp(56px, 8vw, 88px); }
.section--tight { padding-block: clamp(36px, 5vw, 56px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: #fff; }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(32px, 5vw, 48px); }
.eyebrow {
  display: block; color: var(--primary);
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--accent); }
.section-title { font-size: clamp(26px, 3.2vw, 36px); margin: 0 0 12px; }
.section-sub { color: var(--text-muted); font-size: 16px; margin: 0; }
.text-accent { color: var(--primary); }

/* Rejillas responsivas (sin scroll horizontal, columnas fluidas) */
.grid { display: grid; gap: 22px; }
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.grid--5 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(28px, 5vw, 56px); align-items: center; }
.split > * { min-width: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
  .split--rev > :first-child { order: 2; }
  .split--rev > :last-child { order: 1; }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius); cursor: pointer;
  padding: 13px 24px; font: 700 15px 'Archivo', sans-serif;
  text-decoration: none; white-space: nowrap;
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); opacity: 1; }
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent); color: #1c1830; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--outline { background: #fff; color: var(--primary); border: 1px solid var(--primary); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.link-more { font-weight: 700; font-size: 14.5px; color: var(--primary); text-decoration: none; }

/* ---------- Header / Navegación ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 11, 23, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__logo {
  background: var(--primary); border-radius: 10px; padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.brand__logo img { width: 28px; height: 28px; }
.brand__name { color: #fff; font-weight: 800; font-size: 16px; line-height: 1.1; }

.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 30px); }
.nav__links a {
  color: #fff; text-decoration: none; font-size: 14.5px; font-weight: 600;
  padding: 6px 2px;
}
.nav__links a:hover { color: var(--accent); opacity: 1; }
.nav__links a[aria-current="page"] { color: var(--accent); font-weight: 700; }
.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px; padding: 9px 11px; cursor: pointer;
}
.nav__toggle .icon { stroke: #fff; width: 22px; height: 22px; }

@media (max-width: 920px) {
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 8px 20px 20px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 16px; }
  .nav__links .btn { margin-top: 14px; justify-content: center; }
}
@media (min-width: 921px) { .nav__links .nav__cta-mobile { display: none; } }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(115deg, rgba(13,11,23,.94) 0%, rgba(13,11,23,.72) 55%, rgba(59,31,112,.55) 100%),
    var(--dark-bg) url('../assets/hero-bg.webp') center/cover no-repeat;
  color: #fff;
}
.hero__inner { padding-block: clamp(56px, 9vw, 96px) clamp(44px, 7vw, 72px); }
.hero h1 { color: #fff; font-size: clamp(32px, 4.6vw, 50px); line-height: 1.14; margin-bottom: 18px; }
.hero h1 .text-accent, .hero .hl { color: var(--accent); }
.hero__lead { color: rgba(255,255,255,.78); font-size: clamp(16px, 1.6vw, 18px); max-width: 52ch; margin-bottom: 28px; }
.hero__content { max-width: 680px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 16px; border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px; margin-top: 36px;
}
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat .icon { width: 20px; height: 20px; }
.hero-stat strong { display: block; color: #fff; font-size: 15px; font-weight: 800; }
.hero-stat span { color: rgba(255,255,255,.6); font-size: 12.5px; }

/* ---------- Tarjetas ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #ddd0ef; }
.card h3 { font-size: 17px; margin: 0 0 8px; }
.card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }
.card .icon-box { margin-bottom: 16px; }

.icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--primary-soft);
}
.icon-box .icon { width: 21px; height: 21px; stroke: var(--primary); }
.icon-box--lime { background: var(--accent-soft); }
.icon-box--lime .icon { stroke: var(--accent-dark); }

.card--flat:hover { transform: none; box-shadow: none; }
.card--dark { background: var(--dark); border-color: var(--dark); color: #fff; }
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255,255,255,.65); }

/* Lista de checks */
.check-list { display: flex; flex-direction: column; gap: 10px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-muted); }
.check-list .icon { width: 16px; height: 16px; margin-top: 3px; }

/* ---------- Banners CTA ---------- */
.banner {
  background: linear-gradient(100deg, var(--primary-dark) 0%, var(--primary) 62%, var(--accent) 100%);
  border-radius: 14px; padding: 26px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.banner p { margin: 0; color: #fff; font-weight: 800; font-size: 16px; line-height: 1.45; }
.banner--strip { border-radius: 0; }

.strip { padding-block: 18px; }
.strip--purple { background: var(--primary); color: #fff; }
.strip--lime { background: var(--accent-soft); }
.strip .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.strip p { margin: 0; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 9px; }

/* ---------- Proceso (línea de pasos) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 165px), 1fr)); gap: 20px; position: relative; }
.step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center; }
.step__num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14.5px;
}
.step:nth-child(even) .step__num { background: var(--accent); color: var(--dark); }
.step h3 { font-size: 14.5px; margin: 0; }
.step p { margin: 0; font-size: 13px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: 12px 26px; text-align: left; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); align-items: start; }
.faq {
  border: 1px solid var(--border); border-radius: 12px; padding: 4px 18px;
  background: #fff; transition: border-color .2s ease;
}
.faq[open] { border-color: var(--primary); }
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 13px 0; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { color: var(--primary); font-weight: 800; font-size: 18px; flex-shrink: 0; }
.faq .plus::after { content: "+"; }
.faq[open] .plus::after { content: "–"; }
.faq .faq__a { padding: 0 0 16px; margin: 0; color: var(--text-muted); font-size: 14.5px; }

/* ---------- Formularios ---------- */
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.field label .req { color: var(--primary); }
.input {
  width: 100%; box-sizing: border-box;
  border: 1px solid #e2e2e6; border-radius: var(--radius);
  padding: 12px 14px; font: 400 15px 'Archivo', sans-serif;
  color: var(--text); background: #fff;
  transition: border-color .2s ease;
}
.input::placeholder { color: #a9a9b4; }
.input:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary); }
.input.is-invalid { border-color: #c94a3a; }
textarea.input { resize: vertical; min-height: 110px; }

/* Campos sobre fondo oscuro */
.form--dark .input {
  border-color: rgba(255,255,255,.18); color: #fff; background: rgba(255,255,255,.07);
}
.form--dark .input::placeholder { color: rgba(255,255,255,.4); }
.form--dark .input:focus { outline-color: var(--accent); border-color: var(--accent); }
.form--dark label { color: rgba(255,255,255,.75); }
.form-note { font-size: 12.5px; color: var(--text-soft); display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0; }

.form-status { margin: 0; font-size: 14px; font-weight: 700; display: none; }
.form-status.ok { display: block; color: var(--accent-dark); }
.form-status.err { display: block; color: #c94a3a; }

/* ---------- Tablas ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: 12px; }
table.compare { width: 100%; border-collapse: collapse; text-align: left; min-width: 640px; background: #fff; }
.compare th, .compare td { padding: 13px 16px; font-size: 14px; border-bottom: 1px solid #f0f0f2; }
.compare thead th { background: #fafafa; font-weight: 800; }
.compare th.hl-col, .compare td.hl-col { background: #f9f4fe; }
.compare thead th.hl-col { color: var(--primary); }
.compare .yes { color: var(--primary); font-weight: 800; text-align: center; }
.compare .no { color: #c9c9d1; text-align: center; }
.compare .val { color: var(--text-muted); text-align: center; }
.compare tbody tr:last-child td { border-bottom: none; }

/* ---------- Marcadores de imagen ---------- */
.img-slot {
  background: repeating-linear-gradient(45deg, #f4f2f7, #f4f2f7 10px, #edeaf3 10px, #edeaf3 20px);
  border: 1px dashed #cfc7de; border-radius: 12px;
  color: var(--text-soft); font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 10px; overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer { background: #1c1830; color: #fff; padding: clamp(44px, 6vw, 64px) 0 24px; }
.footer-grid {
  display: grid; gap: 32px 28px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.footer-grid > :first-child { grid-column: span 1; }
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.site-footer h4 {
  margin: 0 0 14px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .08em; color: rgba(255,255,255,.45); text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; padding: 0; list-style: none; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--accent); opacity: 1; }
.footer-about { margin: 0 0 18px; font-size: 14px; color: rgba(255,255,255,.55); max-width: 32ch; }

.social { display: flex; gap: 10px; padding: 0; list-style: none; }
.social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .15s ease;
}
.social a:hover { background: var(--primary); transform: translateY(-2px); opacity: 1; }
.social .icon { stroke: #fff; width: 15px; height: 15px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px; padding-top: 18px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }

/* ---------- Botones flotantes ---------- */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); opacity: 1; }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }

.to-top {
  position: fixed; right: 26px; bottom: 90px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(116, 44, 196, .4);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top .icon { stroke: #fff; width: 20px; height: 20px; }

/* ---------- Animación de aparición ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Evita que correos o URLs largas desborden en pantallas estrechas */
.card [style*="flex:1"], .card [style*="flex: 1"] { min-width: 0; }
.card span, .card p, .footer-links a, .faq__a { overflow-wrap: anywhere; }

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.muted { color: var(--text-muted); }
.stars { color: var(--accent-dark); letter-spacing: 2px; font-size: 14px; margin: 0 0 12px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  font-size: 11.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(172,251,52,.4); background: rgba(172,251,52,.08);
  color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 6px 12px; border-radius: 20px; text-transform: uppercase;
}
.tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--dark);
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 6px;
}
.tag--purple { background: var(--primary); color: #fff; }

/* ---------- Capturas de proyectos (marco de navegador) ---------- */
.browser {
  background: #fff; border: 1px solid #dcdce5; border-radius: 14px;
  overflow: hidden; box-shadow: 0 18px 50px rgba(31, 22, 50, .10);
}
.browser__bar {
  height: 34px; border-bottom: 1px solid #e8e8ee; background: #fafafa;
  display: flex; align-items: center; gap: 6px; padding: 0 12px;
}
.browser__bar i { width: 8px; height: 8px; border-radius: 50%; background: #c5c6cf; }
.browser img { width: 100%; display: block; max-height: 560px; object-fit: cover; object-position: top; }
.browser--tall img { max-height: 680px; }

.meta-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  margin-bottom: 28px; overflow: hidden;
}
.meta-strip > div { padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.meta-strip small { display: block; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; }
.meta-strip b { font-size: 13.5px; color: #fff; }

.card-media { padding: 0; overflow: hidden; }
.card-media > a.card-media__img { display: block; }
.card-media img.card-media__shot {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top;
  border-bottom: 1px solid var(--border);
  transition: transform .3s ease;
}
.card-media:hover img.card-media__shot { transform: scale(1.03); }

@media print {
  .site-header, .whatsapp-fab, .to-top, .strip, .banner { display: none !important; }
}

/* ---------- Hero de página de proyecto (réplica del diseño original) ---------- */
.hero--case {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 76%, rgba(172, 251, 52, .23), transparent 21%),
    radial-gradient(circle at 90% 26%, rgba(116, 44, 196, .29), transparent 24%),
    #070812;
}
.hero--case::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black);
  mask-image: linear-gradient(90deg, transparent, black);
}
.hero--case .hero__inner {
  position: relative; z-index: 2;
  display: grid; gap: clamp(30px, 4.5vw, 58px); align-items: center;
  padding-block: clamp(44px, 6vw, 68px) clamp(48px, 6.5vw, 72px);
}
@media (min-width: 1000px) {
  .hero--case .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}
.hero--case .hero__content { max-width: 620px; }
.hero--case h1 {
  font-size: clamp(32px, 4.3vw, 55px);
  line-height: 1.05; letter-spacing: -.035em; margin: 12px 0 18px;
}
.hero--case .hero__lead { color: #b9bbc7; font-size: 16px; line-height: 1.7; max-width: 56ch; margin-bottom: 0; }
.hero--case .crumb { color: #8f91a0; font-size: 12.5px; margin: 0 0 24px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.hero--case .crumb a { color: #8f91a0; text-decoration: none; }
.hero--case .crumb a:hover { color: var(--accent); opacity: 1; }
.hero--case .eyebrow { color: #a65cff; font-size: 12px; letter-spacing: .08em; margin-bottom: 0; }

/* Tarjetas de datos del proyecto */
.meta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.meta-card {
  border: 1px solid #2f303b; background: rgba(255, 255, 255, .03);
  border-radius: 10px; padding: 13px 16px; min-width: 118px;
}
.meta-card small { display: block; color: #8c8e99; font-size: 10.5px; font-weight: 700; margin-bottom: 5px; }
.meta-card b { font-size: 12.5px; color: #fff; }

.hero--case .btn--primary { background: linear-gradient(90deg, #742cc4, #8f39e6); }
.hero--case .btn--ghost { border-color: #41434e; }

/* Mockup de dispositivos */
.device { position: relative; width: 100%; max-width: 500px; aspect-ratio: 500/410; margin-left: auto; }
.screen {
  position: absolute; background: #0e0f16; border: 8px solid #171820;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .45); overflow: hidden;
}
.screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.screen--desktop { width: 100%; aspect-ratio: 500/315; right: 0; top: 5.4%; border-radius: 16px; }
.screen--tablet  { width: 49%;  aspect-ratio: 245/305; right: -3.2%; bottom: 0; border-radius: 18px; transform: rotate(2deg); }
.screen--mobile  { width: 24%;  aspect-ratio: 120/245; right: 44%; bottom: -1.5%; border-radius: 22px; border-width: 7px; }

@media (max-width: 999px) {
  .device { max-width: 420px; margin-inline: auto; aspect-ratio: 420/330; }
  .screen--desktop { width: 90%; right: 5%; top: 0; }
  .screen--tablet  { display: none; }
  .screen--mobile  { width: 22%; right: 70%; bottom: 0; }
}
@media (max-width: 560px) {
  .device { aspect-ratio: 360/250; }
  .screen--desktop { width: 86%; right: 0; }
  .screen--mobile  { width: 24%; right: 74%; }
}

