/* =========================================================
   ORGULLO Y FUTURO
   Hoja de estilos consolidada
   ========================================================= */

/* ---------- Variables ---------- */

:root {
  --ink: #0d0d0d;
  --paper: #f4f0df;
  --white: #ffffff;

  --red: #ef3b36;
  --orange: #ff8a00;
  --yellow: #f4d62c;
  --green: #06946b;
  --blue: #1468b0;
  --purple: #6a1b9a;
  --pink: #ed1976;
  --cyan: #19bfc4;
  --lime: #b7ff00;

  --border: rgba(13, 13, 13, 0.16);
  --max-width: 1240px;
}

/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

/* ---------- Tipografía ---------- */

h1,
h2,
h3 {
  margin: 0 0 24px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.7rem, 7.1vw, 6.9rem);
}

h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

p {
  margin: 0 0 20px;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Accesibilidad ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 10px;
  background: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ---------- Botones y enlaces ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 var(--red);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.text-link {
  border-bottom: 2px solid currentColor;
  font-weight: 800;
  text-decoration: none;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(244, 240, 223, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 30px;
  padding: 10px 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-lockup {
  display: block;
  width: 285px;
  max-width: 30vw;
  max-height: 76px;
  object-fit: contain;
}

/* ---------- Navegación ---------- */

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.main-nav > a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}



/* ---------- Header sólido en páginas interiores ---------- */

.site-header--solid,
.page-registro .site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(244, 240, 223, 0.98);
  backdrop-filter: blur(14px);
}

.site-header--solid .header-inner,
.page-registro .site-header .header-inner {
  background: transparent;
}

.main-nav .is-active {
  box-shadow: 6px 6px 0 var(--red);
}

.page-registro {
  background: var(--paper);
}

.page-registro .oyf-registro {
  padding-top: 132px;
}

@media (max-width: 900px) {
  .page-registro .oyf-registro {
    padding-top: 104px;
  }
}

@media (max-width: 620px) {
  .page-registro .oyf-registro {
    padding-top: 92px;
  }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 76px;
  background: var(--paper);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 42px;
}

.hero h1 {
  max-width: 860px;
  line-height: 0.92;
}

.hero h1 span {
  color: var(--red);
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.orbital {
  position: relative;
  display: grid;
  place-items: center;
  width: min(420px, 100%);
  aspect-ratio: 1;
}

.hero-symbol,
.hero-logo {
  width: 66%;
  max-width: 330px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(20px 22px 0 rgba(237, 25, 118, 0.18));
}

.orbital-ring {
  position: absolute;
  border: 1px solid rgba(13, 13, 13, 0.22);
  border-radius: 50%;
}

.ring-one {
  inset: 6%;
  animation: spin 24s linear infinite;
}

.ring-two {
  inset: 18%;
  animation: spin 18s linear infinite reverse;
}

.ring-one::before,
.ring-two::before {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: var(--cyan);
  content: "";
}

.ring-two::before {
  top: auto;
  right: 15%;
  bottom: 8%;
  left: auto;
  background: var(--red);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   MANIFIESTO
   ========================================================= */

.manifesto {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.statement {
  max-width: 850px;
  margin: 0 auto 46px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.manifesto-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.manifesto-words span {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 800;
  text-transform: uppercase;
}

.manifesto-words span:nth-child(1) {
  background: var(--red);
  color: var(--ink);
}

.manifesto-words span:nth-child(2) {
  background: var(--cyan);
  color: var(--ink);
}

.manifesto-words span:nth-child(3) {
  background: var(--lime);
  color: var(--ink);
}

/* =========================================================
   PROPÓSITO
   ========================================================= */

.purpose {
  background: var(--white);
}

.purpose-grid,
.ac-grid,
.participate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.purpose-copy > p {
  font-size: 1.35rem;
}

.impact-sequence {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.impact-sequence li {
  padding: 15px 0;
  border-top: 1px solid var(--border);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.impact-sequence li:last-child {
  border-bottom: 1px solid var(--border);
}

.impact-sequence li::before {
  margin-right: 20px;
  color: var(--red);
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  counter-increment: step;
  content: "0" counter(step);
}

/* =========================================================
   ECOSISTEMA
   ========================================================= */

.ecosystem {
  background: var(--paper);
}

.section-heading {
  max-width: 950px;
  margin-bottom: 55px;
}

.section-heading h2,
.priorities h2,
.positions h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.ecosystem-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 30px;
  border: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 var(--ink);
}

.ecosystem-card:nth-child(1) {
  grid-column: span 5;
  background: var(--cyan);
}

.ecosystem-card:nth-child(2) {
  grid-column: span 7;
  background: var(--pink);
}

.ecosystem-card:nth-child(3) {
  grid-column: span 4;
  background: var(--yellow);
}

.ecosystem-card:nth-child(4) {
  grid-column: span 4;
  background: var(--lime);
}

.ecosystem-card:nth-child(5) {
  grid-column: span 4;
  background: var(--orange);
}

.card-number {
  margin-bottom: auto;
  font-weight: 800;
}

.card-kicker {
  font-size: 1.1rem;
  font-weight: 800;
}

.ecosystem-card strong {
  display: block;
  margin-top: 18px;
}

/* =========================================================
   PROYECTOS PRIORITARIOS
   ========================================================= */

.focus-projects {
  background: var(--ink);
  color: var(--paper);
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.focus-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 34px;
  border: 2px solid var(--paper);
}

.focus-card h3 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.focus-label {
  margin-bottom: auto;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.focus-observatorio {
  background: var(--cyan);
  color: var(--ink);
}

.focus-red {
  background: var(--pink);
  color: var(--ink);
}

.focus-card .text-link {
  align-self: flex-start;
}

/* =========================================================
   ASOCIACIÓN CIVIL
   ========================================================= */

.ac-vehicle {
  background: var(--red);
  color: var(--ink);
}

.ac-copy {
  font-size: 1.25rem;
}

blockquote {
  margin: 40px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

/* =========================================================
   PRIORIDADES
   ========================================================= */

.priorities {
  background: var(--white);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.priority-card {
  min-height: 270px;
  padding: 34px;
  border: 2px solid var(--ink);
}

.priority-card span {
  color: var(--red);
  font-weight: 800;
}

/* =========================================================
   CONVOCATORIA
   ========================================================= */

.callout {
  background: var(--ink);
  color: var(--paper);
}

.callout-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 70px;
}

.callout h2 {
  max-width: 800px;
}

.callout p {
  max-width: 750px;
  font-size: 1.2rem;
}

.notice {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.callout-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.callout-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 24px,
    var(--paper) 24px 27px
  );
  transform: skewY(-5deg) scale(1.1);
}

/* =========================================================
   POSICIONES
   ========================================================= */

.positions {
  background: var(--paper);
}

.positions-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 25px;
}

.positions-toolbar label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

select,
input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.position-list {
  border-top: 2px solid var(--ink);
}

.position-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.position-item h3 {
  margin: 4px 0 0;
  font-size: 2rem;
}

.position-item span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.position-item a {
  font-weight: 800;
}

/* =========================================================
   FORMULARIO
   ========================================================= */

.participate {
  background: var(--cyan);
}

.interest-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.interest-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.interest-form label small {
  font-weight: 500;
  opacity: 0.72;
}

.interest-form .full {
  grid-column: 1 / -1;
}

.interest-form input[type="file"] {
  background: var(--white);
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
}

.consent input {
  width: auto;
  margin-top: 5px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 70px 0 28px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}

.footer-grid h3 {
  font-size: 1.4rem;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-lockup {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
}

/* =========================================================
   ANIMACIONES
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVE — PANTALLAS MEDIANAS
   ========================================================= */

@media (max-width: 1100px) {
  .header-inner {
    min-height: 88px;
    padding: 9px 24px;
  }

  .brand-lockup {
    width: 260px;
    max-width: 29vw;
    max-height: 70px;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.96rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.8rem);
  }

  .orbital {
    width: min(360px, 100%);
  }

  .hero-logo {
    width: 63%;
    max-width: 300px;
  }
}

/* =========================================================
   RESPONSIVE — TABLETAS
   ========================================================= */

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 80px;
    padding: 8px 18px;
  }

  .brand-lockup {
    width: 230px;
    max-width: 58vw;
    max-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 68px;
  }

  .hero-layout,
  .purpose-grid,
  .ac-grid,
  .participate-grid,
  .callout-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: 0;
  }

  .hero-logo {
    width: 60%;
    max-width: 280px;
  }

  .focus-grid,
  .priority-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card:nth-child(n) {
    grid-column: span 12;
  }

  .position-item {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   RESPONSIVE — MÓVILES
   ========================================================= */

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner {
    min-height: 74px;
    padding: 8px 14px;
  }

  .brand-lockup {
    width: 205px;
    max-width: 68vw;
    max-height: 58px;
  }

  h1,
  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-logo {
    width: 58%;
    max-width: 250px;
  }

  .interest-form {
    grid-template-columns: 1fr;
    padding: 22px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .interest-form > * {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-lockup {
    width: 280px;
  }
}

/* ---------- Movimiento reducido ---------- */

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 88px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 80px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 74px;
  }
}

/* Reduce el espacio superior de la sección Ecosistema */
.ecosystem {
  padding-top: 70px;
}

@media (max-width: 900px) {
  .ecosystem {
    padding-top: 56px;
  }
}


/* =========================================================
   REGISTRO | ORGULLO Y FUTURO
   Homologado con la página principal
   ========================================================= */

.oyf-registro,
.oyf-registro * {
  box-sizing: border-box;
}

.oyf-registro {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 138px 0 90px;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(13, 13, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 13, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--ink);
}

.oyf-registro::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(244, 240, 223, 0.18),
      rgba(244, 240, 223, 0.78) 420px,
      var(--paper) 100%
    );
  pointer-events: none;
  content: "";
}

.oyf-registro__contenedor {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

/* ---------- Encabezado ---------- */

.oyf-registro__encabezado {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: left;
}

.oyf-registro__eyebrow {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oyf-registro__titulo {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.7rem, 6.2vw, 6.4rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.oyf-registro__titulo span {
  display: inline;
  color: var(--red);
}

.oyf-registro__descripcion {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

/* ---------- Layout ---------- */

.oyf-registro__layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.55fr);
  gap: 24px;
  align-items: start;
}

.oyf-registro__info,
.oyf-registro__formulario {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
  backdrop-filter: none;
}

/* ---------- Columna informativa ---------- */

.oyf-registro__info {
  position: sticky;
  top: 112px;
  padding: 32px;
}

.oyf-registro__info h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.oyf-registro__info > p {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.oyf-registro__beneficios {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.oyf-registro__beneficio {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.oyf-registro__icono {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--cyan);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.oyf-registro__beneficio:nth-child(2) .oyf-registro__icono {
  background: var(--pink);
}

.oyf-registro__beneficio:nth-child(3) .oyf-registro__icono {
  background: var(--yellow);
}

.oyf-registro__beneficio:nth-child(4) .oyf-registro__icono {
  background: var(--lime);
}

.oyf-registro__beneficio strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.35;
}

.oyf-registro__beneficio span {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.5;
}

.oyf-registro__privacidad {
  margin-top: 28px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ---------- Formulario ---------- */

.oyf-registro__formulario {
  padding: 38px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
}

.oyf-form__aviso-demo {
  margin: 0 0 28px;
  padding: 12px 15px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}

.oyf-form__progreso {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 34px;
}

.oyf-form__paso {
  height: 7px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.oyf-form__paso span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width 0.3s ease;
}

.oyf-form__paso.is-active span,
.oyf-form__paso.is-complete span {
  width: 100%;
}

.oyf-form__seccion {
  display: none;
  animation: oyfFade 0.3s ease;
}

.oyf-form__seccion.is-active {
  display: block;
}

@keyframes oyfFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.oyf-form__numero {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.oyf-form__titulo {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.oyf-form__intro {
  margin: 16px 0 30px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.oyf-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.oyf-form__campo {
  min-width: 0;
}

.oyf-form__campo--completo {
  grid-column: 1 / -1;
}

.oyf-form__campo label,
.oyf-form__etiqueta {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.oyf-form__campo small,
.oyf-form__ayuda {
  display: block;
  margin-top: 7px;
  color: rgba(13, 13, 13, 0.68);
  font-size: 0.75rem;
  line-height: 1.45;
}

.oyf-form__campo input,
.oyf-form__campo select,
.oyf-form__campo textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 2px solid var(--ink);
  border-radius: 0;
  outline: none;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.oyf-form__campo input:focus,
.oyf-form__campo select:focus,
.oyf-form__campo textarea:focus {
  background: #fffef8;
  box-shadow: 5px 5px 0 var(--cyan);
}

.oyf-form__campo input.is-invalid,
.oyf-form__campo select.is-invalid {
  border-color: var(--red);
  box-shadow: 5px 5px 0 rgba(239, 59, 54, 0.25);
}

/* ---------- Opciones ---------- */

.oyf-form__opciones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.oyf-form__opcion {
  position: relative;
}

.oyf-form__opcion input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.oyf-form__opcion label {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 15px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.oyf-form__opcion label:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.oyf-form__opcion label::before {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  content: "";
}

.oyf-form__opcion input:checked + label {
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.oyf-form__opcion input:checked + label::before {
  border-color: var(--ink);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230d0d0d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 15px no-repeat,
    var(--yellow);
}

.oyf-form__separador {
  height: 2px;
  margin: 32px 0;
  background: var(--ink);
}

/* ---------- Consentimientos ---------- */

.oyf-form__consentimiento {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 17px;
}

.oyf-form__consentimiento input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.oyf-form__consentimiento label {
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.55;
}

.oyf-form__consentimiento a {
  color: var(--red);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ---------- Botones ---------- */

.oyf-form__acciones {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 34px;
}

.oyf-form__boton {
  width: auto;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.oyf-form__boton:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--red);
}

.oyf-form__boton--primario {
  margin-left: auto;
  background: var(--ink);
  color: var(--white);
}

.oyf-form__boton--secundario {
  background: var(--white);
  color: var(--ink);
}

.oyf-form__boton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- Mensajes ---------- */

.oyf-form__error {
  display: none;
  margin-top: 20px;
  padding: 14px 16px;
  border: 2px solid var(--red);
  border-radius: 0;
  background: rgba(239, 59, 54, 0.1);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.oyf-form__error.is-visible {
  display: block;
}

.oyf-form__confirmacion {
  display: none;
  min-height: 470px;
  place-items: center;
  text-align: left;
}

.oyf-form__confirmacion.is-visible {
  display: grid;
}

.oyf-form__confirmacion-icono {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 0 25px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--lime);
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
  box-shadow: 8px 8px 0 var(--ink);
}

.oyf-form__confirmacion h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.oyf-form__confirmacion p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.oyf-form__demostracion {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .oyf-registro {
    padding: 112px 0 70px;
  }

  .oyf-registro__layout {
    grid-template-columns: 1fr;
  }

  .oyf-registro__info {
    position: static;
  }

  .oyf-registro__encabezado {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .oyf-registro {
    padding: 96px 0 54px;
  }

  .oyf-registro__contenedor {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .oyf-registro__titulo {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .oyf-registro__formulario,
  .oyf-registro__info {
    padding: 22px;
  }

  .oyf-registro__formulario {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .oyf-form__grid,
  .oyf-form__opciones {
    grid-template-columns: 1fr;
  }

  .oyf-form__acciones {
    flex-direction: column-reverse;
  }

  .oyf-form__boton {
    width: 100%;
  }

  .oyf-form__boton--primario {
    margin-left: 0;
  }
}