:root {
  /* Paleta de la portada y /plans (siempre oscuras). */
  /* El acento (--brand, --brand-text, --brand-bright) viene de theme.css; la portada es siempre oscura. */
  --brand-line: var(--brand-bright);
  --bg: #14181F;             /* fondo de la página y del campo de texto */
  --panel: #1D222C;          /* cajas y tarjetas */
  --text: #F5F1E8;           /* texto principal */
  --text-soft: #C7C2B4;      /* subtítulos y enlaces */
  --text-chip: #E7E3D6;      /* chips, menú y listas */
  --muted: #8992A3;          /* texto secundario */
  --faint: #6E7688;          /* pie de página */
  --border: #2C3340;
  --border-strong: #3A4150;
  --border-hover: #4A5263;
  --error-bg: #3A1D22;
  --error-border: #7A2E36;
  --error-text: #F5D5D8;
  /* La ventana de acceso compartida (auth.css) usa --accent: aquí, el amarillo de marca. */
  --accent: var(--brand);
  --accent-text: var(--brand-text);
  --accent-ink: var(--brand-bright);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Work Sans', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 90px;
  position: relative;
}
.glow {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-line) 18%, transparent), transparent 68%);
  pointer-events: none;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 14px;
}
.logo { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.logo img { width: 30px; height: 30px; display: block; border-radius: 8px; }
.logo span { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--text-chip); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--brand-line); }
/* Botones de la cabecera: relleno para la acción principal (Probar, para quien llega; Entrar, para quien ya está probando) y con
   borde para la otra; igual que en las demás páginas públicas (.nav-btn.nav-primary en login.css) */
.nav a.fill {
  background: var(--brand);
  color: var(--brand-text);
  padding: 9px 18px;
  border-radius: 999px;
}
.nav a.line {
  padding: 7px 16px;
  border-radius: 999px;
  border: 2px solid var(--brand-line);
}
.nav a.line:hover { color: var(--text); background: color-mix(in srgb, var(--brand) 25%, transparent); }
.nav a.fill:hover { filter: brightness(1.1); color: var(--brand-text); }
.nav a:focus-visible { outline: 2px solid var(--brand-line); outline-offset: 3px; }
h1 {
  margin: 0 0 22px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(38px, 6.5vw, 74px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  position: relative;
  text-wrap: balance;
}
h1 .hl { color: var(--brand-line); }
h1 .slot { transition: opacity .3s ease; }
h1 .slot.out { opacity: 0; }
.lead {
  margin: 0 0 30px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 560px;
}
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.chip {
  font-weight: 700;
  font-size: 14px;
  padding: 10px 19px;
  border-radius: 999px;
  border: 2px solid var(--border-strong);
  color: var(--text-chip);
  background: transparent;
}
.chip.r1 { transform: rotate(1deg); }
.chip.r2 { transform: rotate(-1deg); }
.chip.r3 { transform: rotate(2deg); }
.chip.r4 { transform: rotate(-2deg); }
.chip.dashed { border-style: dashed; color: var(--muted); }
.chip.on {
  background: var(--brand);
  color: var(--brand-text);
  border-color: var(--brand-line);
  border-style: solid;
  transform: rotate(-2deg);
}
.chip { cursor: pointer; font-family: inherit; }
.chip:hover { border-color: var(--brand-line); }
.chip:focus-visible { outline: 2px solid var(--brand-line); outline-offset: 3px; }
.chip.on::before { content: "✓ "; }
.cta-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-box form { flex: 1 1 260px; min-width: 0; }
.go {
  flex: none;
  background: var(--brand);
  color: var(--brand-text);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 24px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.go:hover { filter: brightness(1.1); }
/* Cuando baja bajo la caja (móvil), el botón queda a la derecha. */
.go { margin-left: auto; }
.go:disabled { opacity: .4; cursor: not-allowed; filter: none; }
/* Campo de texto: reserva el alto de la frase más larga (no cambia de tamaño al cambiar de oficio) y el texto va
   centrado en vertical dentro. */
.cta-box .own-wrap {
  flex: 1 1 260px;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  cursor: text;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cta-box .own-wrap:hover { border-color: var(--border-hover); }
.cta-box .own-wrap:focus-within { border-color: var(--brand-line); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 35%, transparent); }
.cta-box .own {
  display: block;
  flex: 1;
  min-width: 0;
  resize: none;
  overflow: hidden;
  background: transparent;
  border: none;
  padding: 2px 0;
  color: var(--text);
  font: inherit;
  font-size: 17px;
  line-height: 1.45;
}
.cta-box .own:focus { outline: none; }
.cta-box .own::placeholder { color: var(--muted); }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
#plans, #start { scroll-margin-top: 24px; }
.plans { margin-top: 90px; }
.plans h2 {
  margin: 0 0 10px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}
.plans-lead { margin: 0 0 30px; color: var(--text-soft); font-size: 17px; line-height: 1.5; max-width: 560px; }
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; align-items: stretch; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px 24px;
}
.plan.popular { border: 2px solid var(--brand-line); box-shadow: 0 18px 44px color-mix(in srgb, var(--brand-line) 12%, transparent); }
.plan .ribbon {
  position: absolute;
  top: -13px; left: 22px;
  background: var(--brand);
  color: var(--brand-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  transform: rotate(-2deg);
}
.plan h3 { margin: 0 0 6px; font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }
.plan .price { font-family: 'Anton', sans-serif; font-size: 44px; line-height: 1.1; margin-bottom: 18px; }
.plan .price small { font-family: 'Work Sans', sans-serif; font-size: 15px; color: var(--muted); margin-left: 4px; }
.plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; flex: 1; align-content: start; }
.plan li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.4; color: var(--text-chip); }
.plan li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-line); font-weight: 700; }
.plan-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid var(--border-strong);
  color: var(--text);
}
.plan-btn:hover { border-color: var(--brand-line); }
.plan.popular .plan-btn, .plan-btn.primary { background: var(--brand); border-color: var(--brand); color: var(--brand-text); }
.plan-btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }
.plan-btn:focus-visible { outline: 2px solid var(--brand-line); outline-offset: 3px; }
.plans-note, .plans-fallback { margin: 20px 0 0; font-size: 14px; color: var(--muted); }
.plans-fallback a, .plans-note a { color: var(--text-soft); }
.foot {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: var(--muted); /* con --faint no llegaba al contraste mínimo */
}
.foot { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.foot a { color: var(--text-soft); text-decoration: none; }
.foot a:hover { color: var(--brand-line); }
.alert { margin: 0 0 16px; padding: 12px 16px; border-radius: 10px; background: var(--error-bg); border: 1px solid var(--error-border); color: var(--error-text); font-size: 15px; }
.devices {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* La base del portátil sobresale a la izquierda: se compensa para que el conjunto quede centrado a la vista. */
  padding: 20px 0 10px 30px;
}
.devices::before {
  content: "";
  position: absolute;
  inset: 10% 5% 0 20%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--brand-line) 22%, transparent), transparent);
  filter: blur(20px);
  pointer-events: none;
}
/* Portátil */
.laptop { position: relative; flex: 1 1 auto; min-width: 0; max-width: 820px; }
.laptop .lid {
  position: relative;
  background: linear-gradient(#20252F, #0B0D11);
  border: 1px solid #353C4A;
  border-radius: 20px 20px 6px 6px;
  padding: 22px 14px 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
}
.laptop .lid::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 6px; height: 6px; margin-left: -3px;
  border-radius: 50%;
  background: #2A3140;
  box-shadow: 0 0 0 2px #151920;
}
.laptop .screen { border-radius: 6px; overflow: hidden; background: #F5F1E8; }
.laptop .base {
  position: relative;
  height: 16px;
  margin: 0 -5%;
  background: linear-gradient(#3A414F, #1C2029 70%, #111419);
  border-radius: 2px 2px 16px 16px;
  box-shadow: 0 18px 30px rgba(0,0,0,0.5);
}
.laptop .base::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 16%; height: 6px;
  transform: translateX(-50%);
  background: #151920;
  border-radius: 0 0 8px 8px;
}
.preview-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  padding: 0 12px;
  background: #E4DFD1;
  border-bottom: 1px solid #D3CDBC;
}
.preview-tab .dots { display: inline-flex; gap: 6px; }
.preview-tab .dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.preview-tab .dots i:nth-child(1) { background: #E5534B; }
.preview-tab .dots i:nth-child(2) { background: #E6B53A; }
.preview-tab .dots i:nth-child(3) { background: #4CB861; }
.preview-tab .url {
  margin: 0 auto;
  font-size: 11.5px;
  color: #6B6152;
  background: #F5F1E8;
  border-radius: 999px;
  padding: 3px 14px;
}
/* Escritorio: la demo se pinta a 1280px reales y se encoge a la pantalla del portátil. */
.preview-scale { width: 100%; aspect-ratio: 1280 / 800; overflow: hidden; }
.preview-scale iframe {
  display: block;
  width: 1280px;
  height: 800px;
  border: none;
  transform: scale(var(--pv-scale, 0.5));
  transform-origin: 0 0;
}
/* Teléfono */
.phone {
  position: relative;
  z-index: 2;
  flex: none;
  width: 290px;
  margin-left: -70px;
  margin-bottom: -10px;
  padding: 11px;
  background: #0B0D11;
  border-radius: 48px;
  box-shadow: 0 0 0 2px #3A414F, 0 0 0 4px var(--bg), -20px 34px 70px rgba(0,0,0,0.6);
  transform: rotate(2deg);
}
.phone::before, .phone::after {
  content: "";
  position: absolute;
  width: 4px;
  background: #3A414F;
  border-radius: 2px;
}
.phone::before { left: -5px; top: 110px; height: 56px; box-shadow: 0 -40px 0 -12px #3A414F; }
.phone::after { right: -5px; top: 140px; height: 80px; }
.phone .screen { position: relative; border-radius: 38px; overflow: hidden; background: #fff; }
.phone .status {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 26px 0 30px;
  background: #0B0D11;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.phone .status::after {
  content: "";
  position: absolute;
  top: 9px; left: 50%;
  width: 86px; height: 24px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 999px;
}
.phone .status .icons { display: inline-flex; gap: 4px; align-items: flex-end; }
.phone .status .icons i { display: block; width: 3px; background: #fff; border-radius: 1px; }
.phone .status .icons i:nth-child(1) { height: 4px; }
.phone .status .icons i:nth-child(2) { height: 6px; }
.phone .status .icons i:nth-child(3) { height: 8px; }
.phone .status .icons b { display: block; width: 20px; height: 10px; margin-left: 4px; border: 1.5px solid #fff; border-radius: 3px; background: linear-gradient(90deg, #fff 70%, transparent 70%); background-clip: content-box; padding: 1px; }
/* Móvil: la demo se pinta a 390px (ancho de un iPhone) y se encoge a la pantalla del teléfono. */
.phone .preview-scale { aspect-ratio: 390 / 800; }
.phone .preview-scale iframe { width: 390px; height: 800px; }
.phone .home { position: absolute; bottom: 8px; left: 50%; width: 100px; height: 4px; margin-left: -50px; border-radius: 2px; background: rgba(0,0,0,0.55); }
@media (max-width: 760px) {
  .wrap { overflow-x: clip; }
  .devices { flex-direction: column; align-items: center; gap: 36px; padding-left: 0; }
  .laptop { display: none; }
  .phone { margin: 0; transform: none; width: min(290px, 100%); }
}

/* Tarjetas de plan con botones de verdad (formularios de pago, plan actual) y avisos: portada y /plans. */
.plan-action { display: grid; gap: 10px; }
.plan-action form { margin: 0; }
button.plan-btn { width: 100%; background: transparent; font-family: inherit; cursor: pointer; }
.plan-btn:disabled { opacity: .55; cursor: default; }
.plan-btn:disabled:hover { border-color: var(--border-strong); }
.plan-link { background: none; border: none; padding: 0; width: 100%; font: inherit; font-size: 14px; color: var(--brand-line); cursor: pointer; text-decoration: underline; }
.plan.current { border: 2px solid var(--brand-line); }
.plan .ribbon.current-ribbon { background: var(--border); color: var(--text); }
.banner { margin: 0 0 20px; padding: 12px 16px; border-radius: 10px; background: var(--panel); border: 1px solid var(--brand-line); font-size: 15px; }
.banner.warn { background: var(--error-bg); border-color: var(--error-border); color: var(--error-text); }
.plans.plans-page { margin-top: 20px; }
/* Móvil: logo y los tres enlaces de la cabecera en una sola línea. */
@media (max-width: 480px) {
  .nav { gap: 10px; }
  .nav a { font-size: 14px; }
  .nav a.fill, .nav a.line { padding: 7px 12px; }
  .nav a.line { padding: 5px 10px; }
  .logo span { font-size: 15px; }
}
/* Ventajas que llegarán pronto: se ven, pero marcadas y más apagadas. */
.plan li.soon { color: var(--muted); }
.plan li.soon::before { color: var(--muted); }
.soon-tag { display: inline-block; margin-left: 4px; padding: 1px 7px; border-radius: 999px; border: 1px solid var(--border-strong); font-size: 11px; font-weight: 600; letter-spacing: .02em; color: var(--text-soft); vertical-align: 1px; }
.plan-body { flex: 1; display: flex; flex-direction: column; }
.plan-body > ul { flex: none; }
.soon-h { margin: 4px 0 10px; padding-top: 14px; border-top: 1px dashed var(--border-strong); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.plan .soon-list li { color: var(--muted); font-size: 14px; }
.plan .soon-list li::before { content: "+"; color: var(--muted); }
.legal { max-width: 720px; margin: 20px 0 0; color: var(--text-soft); font-size: 16px; line-height: 1.65; }
.legal h1 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(34px, 6vw, 48px); line-height: 1.1; margin: 0 0 6px; color: var(--text); text-transform: uppercase; }
.legal h2 { margin: 32px 0 8px; font-size: 19px; color: var(--text); }
.legal-date { margin: 0 0 24px; font-size: 14px; color: var(--muted); }
.legal a { color: var(--brand-line); }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal-note { color: var(--muted); font-size: 14px; }
.legal-holder { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; margin: 16px 0; padding: 16px 18px; border: 1px solid var(--border); border-radius: 10px; }
.legal-holder dt { font-weight: 600; color: var(--text); }
.legal-holder dd { margin: 0; }
.plan-body > ul:not(:last-child) { margin-bottom: 14px; }
/* Esqueleto de la pantalla mientras carga la demo (la clase ready la pone home.html al primer load). */
.demo-frame { opacity: 0; transition: opacity .3s; }
.demo-frame.ready { opacity: 1; }
.laptop .screen, .phone .screen { background-color: #1c212b; background-image: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.06) 50%, transparent 70%); background-size: 200% 100%; animation: pv-skel 1.4s linear infinite; }
@keyframes pv-skel { from { background-position: 150% 0; } to { background-position: -50% 0; } }
@media (prefers-reduced-motion: reduce) { .laptop .screen, .phone .screen { animation: none; } }

/* Cómo funciona: tres pasos en fila (en columna en el móvil); el número grande es el orden real. */
.how { margin-top: 90px; }
.how h2, .faq h2 { margin: 0 0 28px; font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(34px, 5vw, 56px); line-height: 1; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px 36px; counter-reset: step; }
.steps li { counter-increment: step; padding-top: 16px; border-top: 2px solid var(--border-strong); }
.steps li::before { content: counter(step); display: block; font-family: 'Anton', sans-serif; font-size: 44px; line-height: 1; color: var(--brand-line); margin-bottom: 12px; }
.steps h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.3; color: var(--text); }
.steps p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--text-soft); }

/* Preguntas frecuentes: desplegables nativos. */
.faq { margin-top: 90px; max-width: 780px; }
.faq details { border-bottom: 1px solid var(--border); }
.faq details:first-of-type { border-top: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 2px; font-weight: 600; font-size: 17px; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-size: 24px; font-weight: 400; line-height: 1; color: var(--brand-line); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--brand-line); }
.faq summary:focus-visible { outline: 2px solid var(--brand-line); outline-offset: 2px; border-radius: 4px; }
.faq details p { margin: 0 0 20px; padding-right: 36px; font-size: 16px; line-height: 1.6; color: var(--text-soft); }

/* Tarjetas de plan a la misma altura con los botones alineados abajo (en el móvil van apiladas y cada una mide lo suyo). */
@media (max-width: 760px) { .plan-grid { align-items: start; } }

@media (max-width: 760px) {
  .how, .faq { margin-top: 64px; }
  .plans { margin-top: 64px; }
  /* Chips de oficio en una sola fila deslizable, pegada a los bordes de la pantalla. */
  .chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: 0 -24px 22px; padding: 6px 24px 8px; gap: 10px; scroll-padding-inline: 24px; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
  /* Caja del mensaje más compacta. */
  .cta-box { padding: 14px; gap: 12px; }
  .cta-box .own-wrap { padding: 8px 12px; }
  .cta-box .own { font-size: 16px; line-height: 1.4; }
  .go { padding: 13px 20px; }
}
@media (max-width: 760px) {
  .steps { gap: 22px; }
  .steps li { display: grid; grid-template-columns: 40px 1fr; column-gap: 12px; padding-top: 14px; }
  .steps li::before { grid-row: span 2; font-size: 36px; margin: 0; }
}
/* Titular: «Tu web con IA» en su propia línea y debajo «para quien…» con los oficios que rotan. */
h1 .h1-top { display: block; font-size: .6em; margin-bottom: .12em; }

/* Más que una web: ejemplos de lo que se puede pedir, cada uno con su oficio. */
.more { margin-top: 90px; }
.more h2 { margin: 0 0 10px; font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(34px, 5vw, 56px); line-height: 1; }
.more-lead { margin: 0 0 28px; color: var(--text-soft); font-size: 17px; line-height: 1.5; max-width: 560px; }
.uses { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .uses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .uses { grid-template-columns: 1fr; gap: 10px; } }
.uses li { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; font-size: 17px; line-height: 1.4; font-weight: 600; color: var(--text); }
.use-trade { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-line); }
.uses li:last-child { border-style: dashed; }
@media (max-width: 760px) {
  .more { margin-top: 64px; }
  .uses li { font-size: 16px; padding: 14px 16px; }
}
/* Enlace de copia (/copy/<código>) */
.copy-card { max-width: 560px; margin: 60px auto 0; text-align: center; display: grid; justify-items: center; gap: 16px; }
.copy-card h1 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(30px, 6vw, 44px); line-height: 1.1; text-wrap: balance; }
.copy-lead { margin: 0; color: var(--text-soft); font-size: 17px; line-height: 1.55; }
.copy-note { margin: 0; color: var(--muted); font-size: 14px; }
.copy-card form { margin: 0; }
.copy-btn { display: inline-block; border: none; cursor: pointer; font: inherit; font-weight: 700; font-size: 16px; padding: 14px 26px; border-radius: 12px; background: var(--brand); color: var(--brand-text); text-decoration: none; }
.copy-btn:hover { filter: brightness(1.1); }
.copy-ic { width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center; font-size: 40px; background: color-mix(in srgb, var(--ic) 30%, transparent); }
.ic-rojo { --ic: #e5484d; } .ic-naranja { --ic: #f76b15; } .ic-ambar { --ic: #f5b400; } .ic-verde { --ic: #30a46c; } .ic-turquesa { --ic: #12a594; }
.ic-azul { --ic: #0090ff; } .ic-indigo { --ic: #3e63dd; } .ic-morado { --ic: #8e4ec6; } .ic-rosa { --ic: #d6409f; } .ic-gris { --ic: #8b8d98; }
