.metodo2 {
  padding: 72px var(--page-pad) 100px;
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}

.m2-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(255,214,1,0.05) 0%, transparent 100%);
  pointer-events: none;
}

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

.metodo2 .m2-header {
  margin: 0 auto 52px;
  max-width: 760px;
  position: relative;
  text-align: center;
}

.metodo2 .m2-header h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--c-white);
}

.metodo2 .m2-header p {
  color: #c9c9c9;
  font-size: var(--text-sm);
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.7;
}

.tl-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.tl-track {
  position: absolute;
  top: 15px;
  left: calc(12.5% - 5.25px);
  right: calc(12.5% - 5.25px);
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.tl-progress {
  position: absolute;
  top: 15px;
  left: calc(12.5% - 5.25px);
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, var(--c-accent-dark), var(--c-accent));
  box-shadow: 0 0 10px rgba(255,214,1,0.45);
  transition: width 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.tl-progress.in {
  width: calc(75% + 10.5px);
}

.tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 14px;
  position: relative;
  z-index: 1;
}

.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-node {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-black);
  border: 1.5px solid rgba(255,255,255,0.25);
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.tl-item.active .tl-node {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  box-shadow: 0 0 0 5px rgba(255,214,1,0.14);
}

.tl-card {
  width: 100%;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 17px 17px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s ease, background 0.28s ease;
}

.tl-item:hover .tl-card {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  border-color: rgba(255,214,1,0.45);
  background: rgba(255,214,1,0.055);
}

.tl-item:hover .tl-card p {
  color: #f0f0f0;
}

.tl-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.tl-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}

.tl-item:hover .tl-num {
  color: var(--c-accent);
}

.tl-icon2 {
  width: 19px;
  height: 19px;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.tl-item:hover .tl-icon2 {
  opacity: 1;
  transform: scale(1.08);
}

.tl-icon2 svg {
  width: 100%;
  height: 100%;
  stroke: var(--c-white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tl-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.tl-card p {
  font-size: 11.5px;
  color: #d8d8d8;
  font-weight: 300;
  line-height: 1.55;
  transition: color 0.28s ease;
}

.lfc-timeline {
  background: #0E0E0E;
  color: #fff;
  padding: 72px 0;
  margin-top: 8px;
}

.lfc-timeline .lfc-h2 {
  color: #fff;
}

.lfc-tl-list {
  list-style: none;
  margin: 0;
  padding: 26px 0 0;
  display: grid;
  gap: 20px;
  position: relative;
}

.lfc-tl-4 {
  grid-template-columns: repeat(4, 1fr);
}

.lfc-tl-3 {
  grid-template-columns: repeat(3, 1fr);
}

.lfc-tl-list::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--c-accent), rgba(255,214,1,.25));
  border-radius: 2px;
}

.lfc-tl-item {
  position: relative;
  padding: 24px 22px 26px;
  border-radius: 16px;
  background: #171717;
  border: 1px solid #262626;
  transition: transform .28s var(--ease), border-color .28s var(--ease);
}

.lfc-tl-dot {
  position: absolute;
  top: -27px;
  left: 22px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 5px #0E0E0E;
}

.lfc-tl-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.lfc-tl-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 9px;
  letter-spacing: -0.2px;
}

.lfc-tl-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.66);
  margin: 0;
}

.lfc-tl-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
}

.lfc-tl-intro {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 900px;
  margin: 0 0 46px;
  text-wrap: pretty;
}

.lfc-tl-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,214,1,.55);
}
