/* Fire Orange — columnadigital.cl */
:root {
  --bg: #0F1218;
  --accent: #FF5A00;
  --panel: #1E222B;
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 90, 0, 0.22);
  --glass: rgba(30, 34, 43, 0.55);
  --glow: rgba(255, 90, 0, 0.35);
  --radius: 22px;
  --max: 1120px;
  --header-h: 72px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body.fo-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
.fo-btn {
  font-family: inherit;
}

.fo-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10000;
}

.fo-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Ambient fire field */
.fo-firefield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fo-firefield__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: fo-drift 18s ease-in-out infinite alternate;
}

.fo-firefield__orb--a {
  width: 42vw;
  height: 42vw;
  top: -12vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.55), transparent 70%);
}

.fo-firefield__orb--b {
  width: 36vw;
  height: 36vw;
  bottom: 8%;
  left: -10vw;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.28), transparent 70%);
  animation-delay: -6s;
}

.fo-firefield__orb--c {
  width: 28vw;
  height: 28vw;
  top: 42%;
  left: 40%;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.16), transparent 70%);
  animation-delay: -11s;
}

.fo-firefield__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 20%, transparent 75%);
  opacity: 0.35;
}

@keyframes fo-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3%, 4%, 0) scale(1.08); }
}

.fo-wrap {
  position: relative;
  z-index: 1;
}

.fo-container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.fo-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(15, 18, 24, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.fo-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(15, 18, 24, 0.88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.fo-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fo-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.fo-logo img {
  height: 40px;
  width: auto;
}

.fo-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.fo-nav a {
  font-size: 0.92rem;
  font-weight: 560;
  color: var(--muted);
  transition: color 0.2s ease;
}

.fo-nav a:hover,
.fo-nav a:focus-visible {
  color: var(--text);
}

.fo-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 0;
}

.fo-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.fo-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fo-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.fo-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fo-mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 999;
  background: rgba(15, 18, 24, 0.96);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.fo-mobile-panel.is-open {
  display: flex;
}

.fo-mobile-panel a {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--line);
}

/* Buttons */
.fo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.fo-btn:hover {
  transform: translateY(-1px);
}

.fo-btn--primary {
  background: linear-gradient(135deg, #FF5A00, #ff7a33);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 90, 0, 0.35), 0 12px 36px var(--glow);
}

.fo-btn--primary:hover {
  box-shadow: 0 0 0 1px rgba(255, 90, 0, 0.5), 0 16px 44px rgba(255, 90, 0, 0.45);
}

.fo-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.fo-btn--ghost:hover {
  border-color: rgba(255, 90, 0, 0.55);
  background: rgba(255, 90, 0, 0.08);
}

.fo-btn--sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Hero — diagonal glass ribbon, no image */
.fo-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.fo-hero__ribbon {
  position: absolute;
  inset: 8% -10% auto auto;
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  border-radius: 36% 64% 42% 58% / 48% 38% 62% 52%;
  background:
    linear-gradient(145deg, rgba(255, 90, 0, 0.18), transparent 55%),
    rgba(30, 34, 43, 0.35);
  border: 1px solid rgba(255, 90, 0, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: rotate(12deg);
  animation: fo-morph 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes fo-morph {
  from { border-radius: 36% 64% 42% 58% / 48% 38% 62% 52%; }
  to { border-radius: 58% 42% 64% 36% / 42% 58% 42% 58%; transform: rotate(8deg) scale(1.04); }
}

.fo-hero__inner {
  position: relative;
  display: grid;
  gap: 1.5rem;
  max-width: 760px;
}

.fo-kicker {
  display: inline-flex;
  width: fit-content;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 90, 0, 0.35);
  border-radius: 999px;
  background: rgba(255, 90, 0, 0.08);
}

.fo-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.15rem, 5.2vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(255, 90, 0, 0.18);
}

.fo-hero__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.fo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.fo-hero__glowline {
  width: min(220px, 40%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  box-shadow: 0 0 24px var(--glow);
}

/* Sections */
.fo-section {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.fo-section--tight {
  padding-top: 1.5rem;
}

.fo-section__head {
  margin-bottom: 1.35rem;
}

.fo-section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  line-height: 1.2;
}

.fo-section h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.fo-section p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.fo-section p:last-child {
  margin-bottom: 0;
}

.fo-glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 50px rgba(0, 0, 0, 0.28);
}

.fo-panel {
  padding: clamp(1.25rem, 3vw, 1.85rem);
}

.fo-split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .fo-split--media-end {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .fo-split--media-start {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

.fo-figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.fo-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fo-figure figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fo-media-plain {
  margin: 1.25rem 0 0;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.fo-media-plain img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Steps strip for registro */
.fo-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

@media (min-width: 720px) {
  .fo-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.fo-step {
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(15, 18, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fo-step__n {
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.fo-step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Table */
.fo-table-wrap {
  margin: 1.25rem 0;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(15, 18, 24, 0.55);
}

.fo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.fo-table th,
.fo-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fo-table th {
  background: rgba(255, 90, 0, 0.12);
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fo-table td {
  color: var(--muted);
  font-size: 0.95rem;
}

.fo-table tr:last-child td {
  border-bottom: 0;
}

.fo-table tbody tr:hover td {
  background: rgba(255, 90, 0, 0.05);
}

/* Cómo funciona — numbered rails */
.fo-rails {
  display: grid;
  gap: 1rem;
}

.fo-rail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
}

.fo-rail__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(255, 90, 0, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 90, 0, 0.35);
}

.fo-rail p {
  margin: 0;
}

/* Error chips */
.fo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.15rem;
}

.fo-chip {
  border: 1px solid var(--line);
  background: rgba(30, 34, 43, 0.7);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.fo-chip:hover,
.fo-chip:focus-visible {
  border-color: rgba(255, 90, 0, 0.55);
  color: var(--text);
}

.fo-chip.is-active {
  background: rgba(255, 90, 0, 0.18);
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 24px rgba(255, 90, 0, 0.2);
}

.fo-chip-panel {
  min-height: 4.5rem;
}

.fo-chip-panel[hidden] {
  display: none;
}

/* FAQ */
.fo-faq {
  display: grid;
  gap: 0.75rem;
}

.fo-faq__item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--glass);
  overflow: hidden;
}

.fo-faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 1.05rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.fo-faq__q::after {
  content: "+";
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.fo-faq__item.is-open .fo-faq__q::after {
  transform: rotate(45deg);
}

.fo-faq__a {
  display: none;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

.fo-faq__item.is-open .fo-faq__a {
  display: block;
}

.fo-faq__a p {
  margin: 0;
}

/* Footer */
.fo-footer {
  padding: 3rem 0 6.5rem;
  border-top: 1px solid var(--line);
  background: rgba(15, 18, 24, 0.85);
}

.fo-footer__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .fo-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.fo-footer__brand p {
  color: var(--muted);
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}

.fo-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.fo-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.fo-footer a {
  color: var(--muted);
}

.fo-footer a:hover {
  color: var(--text);
}

.fo-footer__legal {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

/* Floating CTA */
.fo-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(30, 34, 43, 0.88);
  border: 1px solid rgba(255, 90, 0, 0.45);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 90, 0, 0.2);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.fo-float.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.fo-float span {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--muted);
}

.fo-float .fo-btn {
  min-height: 40px;
}

/* Reveal */
.fo-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fo-reveal.is-in {
  opacity: 1;
  transform: none;
}

.fo-veredicto-empty {
  min-height: 0;
}

/* Utility bands */
.fo-band {
  position: relative;
}

.fo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 90, 0, 0.04), transparent);
  pointer-events: none;
}

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

  .fo-burger {
    display: grid;
  }

  .fo-hero__ribbon {
    opacity: 0.55;
    width: 80vw;
    height: 80vw;
  }
}


.fo-cookie{position:fixed;left:1rem;bottom:1rem;z-index:90;max-width:420px;display:flex;gap:.75rem;align-items:center;flex-wrap:wrap;padding:1rem;border-radius:16px;background:rgba(15,18,24,.96);border:1px solid rgba(255,90,0,.35);color:#fff}
.fo-cookie p{margin:0;flex:1 1 220px;font-size:.9rem;color:rgba(255,255,255,.8)}
.fo-cookie button{border:0;border-radius:999px;padding:.65rem 1rem;background:#FF5A00;color:#fff;font-weight:700;cursor:pointer}