/* [project]/app/globals.css [app-client] (css) */
:root {
  --ilga: #e40046;
  --ilga-osc: #b8003a;
  --ilga-claro: #fff1f5;
  --grafito: #111;
  --gris-1: #424242;
  --gris-2: #676767;
  --gris-3: #9aa3ad;
  --papel: #f5f5f5;
  --tarjeta: #fff;
  --borde: #e5e8ec;
  --borde-2: #eff2f5;
  --verde: #128c4a;
  --verde-claro: #e8f7ee;
  --ambar: #d98324;
  --ambar-claro: #fdf3e6;
  --azul: #2563c9;
  --azul-claro: #eaf0fc;
  --violeta: #6d43c8;
  --violeta-claro: #f1ebfc;
  --s1: 0 1px 2px #1111110d;
  --s2: 0 3px 12px #11111114;
  --s3: 0 16px 44px #1111112b;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --sans: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
  background: var(--papel);
  color: var(--grafito);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
}

.tira {
  background: var(--grafito);
  color: #fff;
  padding: 7px 0;
  font-size: 12.5px;
}

.tira .interior {
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  display: flex;
}

.tira a {
  color: #fff;
  opacity: .85;
  text-decoration: none;
}

.tira a:hover {
  opacity: 1;
}

.tira .der {
  gap: 16px;
  margin-left: auto;
  display: flex;
}

.interior {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.cabecera {
  border-bottom: 1px solid var(--borde);
  z-index: 30;
  background: #fff;
  position: sticky;
  top: 0;
}

.cabecera .interior {
  align-items: center;
  gap: 30px;
  height: 76px;
  display: flex;
}

.logo {
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  display: flex;
}

.logo-texto {
  color: var(--ilga);
  letter-spacing: -.03em;
  font-size: 27px;
  font-weight: 800;
}

.logo-sub {
  color: var(--gris-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.nav {
  gap: 26px;
  margin-left: auto;
  display: flex;
}

.nav a {
  color: var(--gris-1);
  white-space: nowrap;
  border-bottom: 2px solid #0000;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover, .nav a.activo {
  color: var(--ilga);
  border-bottom-color: var(--ilga);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

.hero {
  background: linear-gradient(105deg, #1a1a1a 0%, #2b2b2b 52%, var(--ilga-osc) 165%);
  color: #fff;
  padding: 66px 0 74px;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  background: radial-gradient(circle, #e4004647, #0000 68%);
  border-radius: 50%;
  width: 460px;
  height: 460px;
  position: absolute;
  top: -90px;
  right: -90px;
}

.hero .interior {
  z-index: 1;
  position: relative;
}

.hero-etiqueta {
  background: var(--ilga);
  color: #fff;
  letter-spacing: .11em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 18px;
  padding: 5px 13px;
  font-size: 11.5px;
  font-weight: 650;
  display: inline-block;
}

.hero h1 {
  letter-spacing: -.03em;
  max-width: 660px;
  font-size: 44px;
  font-weight: 750;
  line-height: 1.14;
}

.hero p {
  opacity: .8;
  max-width: 560px;
  margin-top: 16px;
  font-size: 17px;
}

.hero-botones {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  display: flex;
}

.boton {
  background: var(--ilga);
  color: #fff;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 620;
  font-family: var(--sans);
  border: 0;
  border-radius: 4px;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  text-decoration: none;
  display: inline-flex;
}

.boton:hover {
  background: var(--ilga-osc);
}

.boton.fantasma {
  background: none;
  border: 1.5px solid #fff6;
}

.boton.fantasma:hover {
  background: #ffffff1a;
  border-color: #fff;
}

.seccion {
  padding: 54px 0;
}

.seccion-titulo {
  text-align: center;
  margin-bottom: 34px;
}

.seccion-titulo h2 {
  letter-spacing: -.025em;
  font-size: 29px;
  font-weight: 720;
}

.seccion-titulo h2 em {
  color: var(--ilga);
  font-style: normal;
}

.seccion-titulo p {
  color: var(--gris-2);
  margin-top: 7px;
  font-size: 15px;
}

.lineas {
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 15px;
  display: grid;
}

.linea {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  color: inherit;
  border-top: 3px solid var(--ilga);
  border-radius: 8px;
  padding: 20px 18px;
  text-decoration: none;
  transition: all .16s;
  display: block;
}

.linea:hover {
  box-shadow: var(--s2);
  transform: translateY(-2px);
}

.linea-nombre {
  font-size: 15.5px;
  font-weight: 620;
}

.linea-conteo {
  color: var(--gris-3);
  margin-top: 3px;
  font-size: 13px;
}

.franja-servicio {
  background: var(--grafito);
  color: #fff;
  padding: 42px 0;
}

.franja-servicio .interior {
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  display: flex;
}

.franja-servicio h3 {
  font-size: 22px;
  font-weight: 680;
}

.franja-servicio p {
  opacity: .72;
  max-width: 480px;
  margin-top: 5px;
  font-size: 14.5px;
}

.franja-contactos {
  flex-wrap: wrap;
  gap: 30px;
  margin-left: auto;
  display: flex;
}

.franja-contacto span {
  color: var(--gris-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11.5px;
  display: block;
}

.franja-contacto b {
  font-size: 16px;
  font-weight: 620;
}

.pie {
  color: #8b8b8b;
  background: #0d0d0d;
  padding: 26px 0;
  font-size: 13px;
}

.pie .interior {
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  display: flex;
}

.flotante {
  z-index: 70;
  background: var(--ilga);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 62px;
  height: 62px;
  transition: transform .18s;
  display: grid;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 6px 22px #e400466b;
}

.flotante:hover {
  transform: scale(1.07);
}

.flotante:active {
  transform: scale(.96);
}

.flotante svg {
  width: 28px;
  height: 28px;
}

.flotante:after {
  content: "";
  border: 2px solid var(--ilga);
  border-radius: 50%;
  animation: 2.4s ease-out infinite pulso;
  position: absolute;
  inset: 0;
}

.flotante.abierto:after {
  display: none;
}

@keyframes pulso {
  0% {
    opacity: .55;
    transform: scale(1);
  }

  70% {
    opacity: 0;
    transform: scale(1.55);
  }

  100% {
    opacity: 0;
  }
}

.globo-aviso {
  z-index: 69;
  border: 1px solid var(--borde);
  box-shadow: var(--s2);
  max-width: 244px;
  color: var(--gris-1);
  cursor: pointer;
  background: #fff;
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 13.5px;
  animation: .35s both entrar;
  position: fixed;
  bottom: 36px;
  right: 98px;
}

.globo-aviso b {
  color: var(--grafito);
}

@keyframes entrar {
  from {
    opacity: 0;
    transform: translateY(9px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.widget {
  z-index: 71;
  width: 392px;
  max-width: calc(100vw - 34px);
  height: min(618px, 100vh - 140px);
  box-shadow: var(--s3);
  background: #fff;
  border-radius: 14px;
  flex-direction: column;
  animation: .24s cubic-bezier(.16, 1, .3, 1) both subir;
  display: flex;
  position: fixed;
  bottom: 98px;
  right: 24px;
  overflow: hidden;
}

@keyframes subir {
  from {
    opacity: 0;
    transform: translateY(18px)scale(.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.widget-cabecera {
  background: var(--ilga);
  color: #fff;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  display: flex;
}

.widget-avatar {
  background: #fff3;
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 17px;
  display: grid;
}

.widget-nombre {
  font-size: 14.5px;
  font-weight: 650;
}

.widget-estado {
  opacity: .88;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  display: flex;
}

.widget-estado i {
  background: #7ee2a8;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.widget-cerrar {
  color: #fff;
  opacity: .8;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 5px;
  margin-left: auto;
  padding: 2px 7px;
  font-size: 22px;
  line-height: 1;
}

.widget-cerrar:hover {
  background: #ffffff26;
}

.widget-cuerpo {
  background: var(--papel);
  flex: 1;
  min-height: 0;
  padding: 15px;
  overflow-y: auto;
}

.widget-cuerpo::-webkit-scrollbar {
  width: 7px;
}

.widget-cuerpo::-webkit-scrollbar-thumb {
  background: #d3d8de;
  border-radius: 4px;
}

.burbuja {
  flex-direction: column;
  max-width: 88%;
  margin-bottom: 11px;
  display: flex;
}

.burbuja.cliente {
  align-items: flex-end;
  margin-left: auto;
}

.burbuja-texto {
  white-space: pre-wrap;
  word-break: break-word;
  border-radius: 14px;
  padding: 9px 13px;
  font-size: 13.5px;
  line-height: 1.5;
}

.cliente .burbuja-texto {
  background: var(--ilga);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.bot .burbuja-texto {
  border: 1px solid var(--borde);
  box-shadow: var(--s1);
  background: #fff;
  border-bottom-left-radius: 4px;
}

.burbuja-pie {
  color: var(--gris-3);
  margin-top: 4px;
  font-size: 10.5px;
}

.fuentes {
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
  display: flex;
}

.fuente {
  background: var(--azul-claro);
  color: #1e50a8;
  border: 1px solid #cfdcf7;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 10.5px;
  text-decoration: none;
}

.escribiendo {
  gap: 4px;
  display: flex;
}

.escribiendo i {
  background: var(--gris-3);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 1.3s ease-in-out infinite rebote;
  display: block;
}

.escribiendo i:nth-child(2) {
  animation-delay: .16s;
}

.escribiendo i:nth-child(3) {
  animation-delay: .32s;
}

@keyframes rebote {
  0%, 60%, 100% {
    opacity: .4;
    transform: none;
  }

  30% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

.sugerencias {
  background: var(--papel);
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 10px;
  display: flex;
}

.sugerencia {
  cursor: pointer;
  border: 1px solid var(--borde);
  color: var(--gris-1);
  background: #fff;
  border-radius: 18px;
  padding: 6px 11px;
  font-size: 12px;
}

.sugerencia:hover {
  border-color: var(--ilga);
  color: var(--ilga);
  background: var(--ilga-claro);
}

.compositor {
  border-top: 1px solid var(--borde);
  background: #fff;
  gap: 8px;
  padding: 11px 13px;
  display: flex;
}

.compositor input {
  background: var(--papel);
  border: 1px solid var(--borde);
  color: var(--grafito);
  font-family: var(--sans);
  border-radius: 22px;
  flex: 1;
  padding: 10px 14px;
  font-size: 13.5px;
}

.compositor input:focus {
  border-color: var(--ilga);
  background: #fff;
  outline: none;
}

.compositor button {
  background: var(--ilga);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  width: 40px;
  height: 40px;
  display: grid;
}

.compositor button:disabled {
  opacity: .35;
}

.compositor button svg {
  width: 18px;
  height: 18px;
}

.abrir-backstage {
  writing-mode: vertical-rl;
  z-index: 65;
  background: var(--grafito);
  color: #fff;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: .07em;
  box-shadow: var(--s2);
  border: 0;
  border-radius: 8px 0 0 8px;
  padding: 16px 9px;
  font-size: 12px;
  font-weight: 600;
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%)rotate(180deg);
}

.abrir-backstage:hover {
  background: var(--ilga);
}

.abrir-backstage b {
  color: #ffd0dd;
}

.backstage {
  background: var(--papel);
  min-height: 100vh;
  animation: .2s both aparecer;
}

@keyframes aparecer {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.backstage-barra {
  background: var(--grafito);
  color: #fff;
  z-index: 40;
  border-bottom: 3px solid var(--ilga);
  position: sticky;
  top: 0;
}

.backstage-barra .interior {
  align-items: center;
  gap: 16px;
  height: 64px;
  display: flex;
}

.backstage-titulo {
  letter-spacing: -.02em;
  font-size: 16px;
  font-weight: 700;
}

.backstage-titulo small {
  color: #9aa3ad;
  font-size: 11.5px;
  font-weight: 500;
  display: block;
}

.volver {
  color: #fff;
  cursor: pointer;
  font-family: var(--sans);
  background: #ffffff1a;
  border: 1px solid #ffffff38;
  border-radius: 7px;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 550;
  display: inline-flex;
}

.volver:hover {
  background: #ffffff30;
}

.pestanas {
  border-bottom: 1px solid var(--borde);
  z-index: 39;
  background: #fff;
  position: sticky;
  top: 64px;
}

.pestanas .interior {
  gap: 4px;
  display: flex;
}

.pestana {
  cursor: pointer;
  font-family: var(--sans);
  color: var(--gris-2);
  background: none;
  border: 0;
  border-bottom: 2px solid #0000;
  margin-bottom: -1px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 550;
}

.pestana:hover {
  color: var(--grafito);
}

.pestana.activa {
  color: var(--ilga);
  border-bottom-color: var(--ilga);
}

.pestana .globito {
  background: var(--ilga);
  color: #fff;
  border-radius: 10px;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 10.5px;
  font-weight: 650;
}

.backstage-cuerpo {
  padding: 26px 0 60px;
}

.rejilla {
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  align-items: start;
  gap: 16px;
  display: grid;
}

.rejilla .ancho-total {
  grid-column: 1 / -1;
}

.barra-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  display: flex;
}

.pastilla {
  color: #d5dae0;
  font-variant-numeric: tabular-nums;
  background: #ffffff14;
  border: 1px solid #ffffff29;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-size: 11.5px;
  display: inline-flex;
}

.pastilla b {
  color: #fff;
  font-weight: 650;
}

.pastilla.ok {
  color: #7ee2a8;
  background: #128c4a38;
  border-color: #128c4a80;
}

.selector {
  color: #9aa3ad;
  background: #ffffff14;
  border: 1px solid #ffffff29;
  border-radius: 20px;
  align-items: center;
  gap: 7px;
  padding: 3px 5px 3px 12px;
  font-size: 11.5px;
  display: inline-flex;
}

.selector select {
  font-family: var(--sans);
  color: var(--grafito);
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 16px;
  max-width: 250px;
  padding: 5px 9px;
  font-size: 11.5px;
  font-weight: 600;
}

.tarjeta {
  border: 1px solid var(--borde);
  background: #fff;
  border-radius: 11px;
  margin-bottom: 15px;
  padding: 17px 19px;
}

.bloque {
  margin-bottom: 20px;
}

.bloque:last-child {
  margin-bottom: 0;
}

.bloque-titulo {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gris-3);
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.bloque-titulo:after {
  content: "";
  background: var(--borde-2);
  flex: 1;
  height: 1px;
}

.metricas {
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 9px;
  display: grid;
}

.metrica {
  background: var(--papel);
  border: 1px solid var(--borde-2);
  border-radius: 9px;
  padding: 10px 12px;
}

.metrica-valor {
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  font-weight: 700;
}

.metrica-etiqueta {
  color: var(--gris-3);
  margin-top: 1px;
  font-size: 10.5px;
}

.fichas {
  flex-wrap: wrap;
  gap: 5px;
  display: flex;
}

.ficha {
  font-family: var(--mono);
  background: var(--papel);
  border: 1px solid var(--borde);
  color: var(--gris-1);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 11px;
}

.ficha.nueva {
  background: var(--violeta-claro);
  color: #55309f;
  border-color: #ddd0f5;
}

.candidato {
  border-bottom: 1px solid var(--borde-2);
  grid-template-columns: 22px 1fr auto;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  display: grid;
}

.candidato:last-child {
  border-bottom: 0;
}

.candidato-pos {
  color: var(--gris-3);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}

.candidato-titulo {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.candidato-score {
  color: var(--gris-1);
  background: var(--papel);
  border: 1px solid var(--borde-2);
  font-variant-numeric: tabular-nums;
  border-radius: 5px;
  padding: 1px 7px;
  font-size: 11.5px;
}

.candidato-tipo {
  color: var(--gris-3);
  font-size: 10.5px;
}

.candidato.citado .candidato-titulo {
  color: var(--verde);
  font-weight: 600;
}

.candidato.citado .candidato-score {
  background: var(--verde-claro);
  color: #0b6135;
  border-color: #bfe5cd;
}

.candidato-ajuste {
  color: var(--gris-3);
  grid-column: 2 / -1;
  font-size: 11px;
}

.aviso {
  color: #a32e20;
  font-size: 12px;
  font-family: var(--mono);
  background: #fdecea;
  border: 1px solid #f5c6c0;
  border-radius: 9px;
  margin-bottom: 6px;
  padding: 8px 11px;
}

.expansion {
  color: var(--gris-1);
  margin-bottom: 5px;
  font-size: 13.5px;
}

.expansion b {
  color: var(--ilga);
  font-weight: 620;
}

.campo {
  border-bottom: 1px solid var(--borde-2);
  grid-template-columns: 122px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  font-size: 13.5px;
  display: grid;
}

.campo:last-child {
  border-bottom: 0;
}

.campo-nombre {
  color: var(--gris-3);
  font-size: 11.5px;
}

.campo.vacio .campo-valor {
  color: #c3c9d0;
}

.campo.lleno .campo-valor {
  font-weight: 500;
}

.campo.lleno .campo-nombre:before {
  content: "●";
  color: var(--verde);
  vertical-align: middle;
  margin-right: 5px;
  font-size: 8px;
}

.campo.recien .campo-valor {
  animation: 1.5s ease-out destello;
}

@keyframes destello {
  0% {
    background: #fff3c4;
  }

  100% {
    background: none;
  }
}

.barra-progreso {
  background: var(--borde-2);
  border-radius: 4px;
  height: 8px;
  margin: 10px 0 6px;
  overflow: hidden;
}

.barra-progreso div {
  background: linear-gradient(90deg, var(--ilga), #ff5c8d);
  border-radius: 4px;
  height: 100%;
  transition: width .55s cubic-bezier(.16, 1, .3, 1);
}

.escalado {
  background: var(--ambar-claro);
  border: 1px solid #f2ddba;
  border-left: 3px solid var(--ambar);
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 13px 15px;
}

.escalado-titulo {
  color: #92560f;
  margin-bottom: 3px;
  font-size: 13.5px;
  font-weight: 700;
}

pre.json {
  font-family: var(--mono);
  border: 1px solid var(--borde-2);
  color: var(--gris-1);
  white-space: pre;
  background: #fbfcfd;
  border-radius: 10px;
  padding: 13px;
  font-size: 11.5px;
  line-height: 1.6;
  overflow-x: auto;
}

pre.json .k {
  color: var(--azul);
}

.nota {
  color: var(--gris-3);
  margin-top: 9px;
  font-size: 11.5px;
  line-height: 1.55;
}

.vacio-estado {
  color: var(--gris-3);
  text-align: center;
  padding: 44px 20px;
  font-size: 13.5px;
  line-height: 1.65;
}

.vacio-estado strong {
  color: var(--gris-1);
  margin-bottom: 6px;
  font-weight: 600;
  display: block;
}

.correo-marco {
  border: 1px solid var(--borde);
  background: #fff;
  border-radius: 11px;
  overflow: hidden;
}

.correo-encabezado {
  border-bottom: 1px solid var(--borde-2);
  padding: 13px 16px;
  font-size: 13px;
}

.correo-encabezado div {
  gap: 9px;
  padding: 2px 0;
  display: flex;
}

.correo-encabezado span {
  color: var(--gris-3);
  flex-shrink: 0;
  width: 62px;
}

.correo-marco iframe {
  background: var(--papel);
  border: 0;
  width: 100%;
  height: 640px;
  display: block;
}

.wa-espejo {
  border-left: 3px solid var(--verde-wa);
}

.wa-espejo .canal-marca {
  margin-left: auto;
}

.wa-hilo {
  background: var(--papel);
  border: 1px solid var(--borde-2);
  border-radius: 9px;
  max-height: 320px;
  margin-top: 4px;
  padding: 10px 12px;
  overflow-y: auto;
}

.wa-hilo::-webkit-scrollbar {
  width: 7px;
}

.wa-hilo::-webkit-scrollbar-thumb {
  background: #d3d8de;
  border-radius: 4px;
}

.wa-hilo .cliente .burbuja-texto {
  background: var(--verde-wa);
  color: #05331b;
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/