/* ==========================================================================
   MIRALOS — V8 Collabs definitivo: "Ficha de convocatoria" (Opción 03)
   Trasplante literal de opciones-collabs.html#opt-03 a la sección #collabs
   de v8.html. Reutiliza los tokens ya presentes (styles.css + v8.css:
   crema/paper/línea, --f-head/--f-body = Inter Tight en v8). Prefijo cfx-
   para no chocar con el .collabs__* heredado de styles.css ni con v8.css.
   Cero border-radius, cero emojis — retícula suiza sobre fondo claro.
   ========================================================================== */

.cfx-collabs{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
  color: var(--text);
}

/* Retícula suiza — 6 columnas, líneas finas sobre el fondo claro */
.cfx-grid-lines{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to right,
    var(--line-2) 0, var(--line-2) 1px,
    transparent 1px, transparent calc(100% / 6)
  );
  opacity: .55;
}

.cfx-stage{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* ---------- Placa tipo documento oficial ---------- */
.cfx-plate{
  width: min(720px, 100%);
  border: 1px solid var(--line-2);
  background: var(--crema);
  padding: clamp(1.8rem, 4vw, 3.2rem);
}

.cfx-plate__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line-2);
}
.cfx-folio{
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-dim);
}
.cfx-seal{
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: .35rem .6rem;
  border: 1px solid var(--text);
  color: var(--text);
}

.cfx-title{
  margin-top: .6rem;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}
.cfx-body{
  margin-top: 1rem;
  max-width: 52ch;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
}

.cfx-foot{
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* CTA de corchetes "[ ESCRÍBENOS ]" — min-height (sin tocar el padding
   visual .2rem del subrayado) le da zona táctil ≥44px sin engordar el
   look de línea fina del botón. */
.cfx-cta{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  font-family: inherit;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 0 .2rem;
  border: 0;
  border-bottom: 1px solid var(--text);
}
.cfx-bracket{
  display: inline-block;
  font-weight: 400;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.cfx-cta:hover .cfx-bracket--l{ transform: translateX(-5px); }
.cfx-cta:hover .cfx-bracket--r{ transform: translateX(5px); }

.cfx-mail{
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .84rem;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}
.cfx-mail:hover{ color: var(--text); border-color: var(--line-2); }

@media (max-width: 480px){
  .cfx-foot{ align-items: flex-start; }
}
