/* ============================================
   VARIABLES & RESET
============================================ */
:root {
  --blue: #1877f2;
  --blue-h: #166fe5;
  --blue-dark: #0a3d7c;
  --blue-light: #e8f0fe;
  --teal: #0ea5e9;
  --green: #10b981;
  --orange: #f59e0b;
  --white: #ffffff;
  --off-white: #f8faff;
  --txt: #0f1923;
  --txt2: #374151;
  --txt3: #6b7280;
  --border: #e5e7eb;
  --r: 16px;
  --r-pill: 100px;
  --sh: 0 4px 24px rgba(0,0,0,.08);
  --sh-lg: 0 20px 60px rgba(0,0,0,.13);
  --tr: .25s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: #fff; color: var(--txt); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 5%; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229,231,235,.6);
  transition: box-shadow var(--tr);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nb-brand { cursor: pointer; }
.nb-brand-text { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--blue); letter-spacing: -.4px; }
.nb-brand-text span { color: #0ea5e9; }
.nb-links { display: flex; gap: 6px; }
.nb-link { padding: 8px 16px; border-radius: var(--r-pill); font-size: 14px; font-weight: 500; color: var(--txt2); cursor: pointer; border: none; background: transparent; font-family: 'Plus Jakarta Sans', sans-serif; transition: background var(--tr); }
.nb-link:hover { background: var(--blue-light); color: var(--blue); }
.nb-cta { padding: 10px 18px; background: linear-gradient(135deg, var(--blue) 0%, #0ea5e9 100%); color: #fff; border: none; border-radius: var(--r-pill); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 32px rgba(24,119,242,.28); transition: all var(--tr); display: flex; align-items: center; gap: 6px; }
.nb-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(24,119,242,.35); }
.cta-icon { font-size: 16px; animation: pulse-icon 2s ease-in-out infinite; }
@keyframes pulse-icon { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

.nb-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nb-hamburger span { display: block; width: 24px; height: 2px; background: var(--txt); border-radius: 2px; transition: .3s; }
.nb-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nb-hamburger.open span:nth-child(2) { opacity: 0; }
.nb-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nb-mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px 5% 24px; z-index: 499; flex-direction: column; gap: 4px; }
.nb-mobile-menu.open { display: flex; }
.nb-mobile-menu .nb-link { text-align: left; padding: 12px 16px; border-radius: 10px; }
.nb-mobile-menu .nb-cta { margin-top: 8px; text-align: center; }

/* ============================================
   HERO
============================================ */
.hero-section { min-height: 100vh; display: grid; grid-template-columns: 1fr 440px; position: relative; overflow: hidden; padding-top: 68px; }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { position: absolute; inset: 0; background: url("https://www.bdilatam.com/undostres/wp-content/uploads/2016/11/jovenes-profesionales.jpg") center/cover; transform: scale(1.04); animation: bg-drift 18s ease-in-out infinite alternate; }
@keyframes bg-drift { from { transform: scale(1.04); } to { transform: scale(1.08); } }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(0,40,120,.82) 0%, rgba(24,80,190,.72) 38%, rgba(10,55,150,.62) 65%, rgba(4,18,60,.78) 100%); backdrop-filter: blur(3px); }
.hero-bg-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 50% at 20% 40%, rgba(100,160,255,.16) 0%, transparent 65%); }

.hero-left { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 64px 52px 64px 72px; }

.brand { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; opacity: 0; animation: slide-up .7s ease forwards .05s; }
.brand-text { display: flex; flex-direction: column; }
.brand-tagline { font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .06em; margin-top: 4px; }
.brand-name-txt { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -.3px; }
.brand-name-txt span { color: #a8c8ff; }

.hero-headline { font-family: 'Sora', sans-serif; font-size: clamp(36px, 4.2vw, 62px); font-weight: 700; color: #fff; margin-bottom: 18px; opacity: 0; animation: slide-up .7s ease forwards .15s; }
.hero-headline .accent { color: #a8c8ff; display: block; }

.hero-body { font-size: 16px; color: rgba(255,255,255,.85); max-width: 430px; margin-bottom: 24px; opacity: 0; animation: slide-up .7s ease forwards .25s; }

.free-shares-highlight { background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.35); border-radius: 14px; padding: 16px; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; opacity: 0; animation: slide-up .7s ease forwards .35s; }
.fsh-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.fsh-content { flex: 1; }
.fsh-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.fsh-desc { font-size: 12px; color: rgba(255,255,255,.75); line-height: 1.6; background: rgba(0,0,0,.2); padding: 10px; border-radius: 8px; margin-bottom: 8px; }
.fsh-desc strong { color: #fff; }
.fsh-desc ul { list-style: none; }
.fsh-desc li { margin: 2px 0; }
.fsh-sub { font-size: 10px; color: rgba(255,255,255,.5); font-weight: 500; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 12px; }
.stat-box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 12px 10px; text-align: center; }
.stat-number { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.8); font-weight: 500; line-height: 1.3; }

.features { display: flex; flex-wrap: wrap; gap: 10px; opacity: 0; animation: slide-up .7s ease forwards .45s; }
.feature-chip { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-pill); font-size: 13px; font-weight: 500; color: rgba(255,255,255,.88); }
.feature-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: #a8c8ff; }

.hero-stat-line { margin-top: 48px; font-size: 12px; color: rgba(255,255,255,.6); opacity: 0; animation: slide-up .7s ease forwards .55s; }

.hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 32px 28px; background: rgba(220,230,248,.14); backdrop-filter: blur(26px); border-left: 1px solid rgba(255,255,255,.11); opacity: 0; animation: panel-in .8s cubic-bezier(.22,1,.36,1) forwards .1s; }
@keyframes panel-in { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; } }

.panel-card { background: #fff; border-radius: 18px; box-shadow: 0 4px 40px rgba(0,0,0,.16); padding: 36px 32px 28px; width: 100%; max-width: 388px; }

/* ============================================
   FORMULARIOS
============================================ */
.form { display: none; }
.form.activo { display: block; animation: form-in .3s ease; }
@keyframes form-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; } }

.form-header { text-align: center; margin-bottom: 22px; }
.form-logo-text { display: inline-block; font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 14px; }
.form-logo-emoji { font-size: 28px; }
.form-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--txt); }
.form-desc { font-size: 13.5px; color: var(--txt3); margin-top: 4px; }
.form-sep { height: 1px; background: linear-gradient(to right, transparent, rgba(0,0,0,.08), transparent); margin: 18px 0 20px; }

.input-group { margin-bottom: 13px; }
.input-group label { display: block; font-size: 12.5px; font-weight: 600; color: #444950; margin-bottom: 6px; }
.input-wrap { position: relative; }
.input-wrap .icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 17px; color: #aab0b7; pointer-events: none; }
.input-wrap input { width: 100%; padding: 12px 14px 12px 40px; background: #f5f6f7; border: 1.5px solid #ccd0d5; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px; color: var(--txt); outline: none; transition: all var(--tr); }
.input-wrap input::placeholder { color: #bec3c9; }
.input-wrap input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(24,119,242,.22); }

.forgot-link { text-align: right; margin-bottom: 14px; }
.forgot-link a { font-size: 12.5px; font-weight: 500; color: var(--blue); cursor: pointer; }

.btn-primary { width: 100%; padding: 13px; background: linear-gradient(180deg, #2d8aff 0%, var(--blue) 100%); border: none; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: #fff; cursor: pointer; box-shadow: 0 2px 12px rgba(24,119,242,.38); transition: all var(--tr); }
.btn-primary:hover { background: linear-gradient(180deg, #4096ff 0%, var(--blue-h) 100%); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(24,119,242,.45); }

.or-divider { display: flex; align-items: center; gap: 10px; margin: 17px 0 14px; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: #e4e6eb; }
.or-divider span { font-size: 12px; color: var(--txt3); }

.btn-secondary { width: 100%; padding: 12px; background: transparent; border: 1.5px solid #ccd0d5; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--blue); cursor: pointer; transition: all var(--tr); }
.btn-secondary:hover { background: var(--blue-light); border-color: #a8c4f0; }

.form-links { text-align: center; margin-top: 15px; }
.form-links a { font-size: 13px; color: var(--txt3); cursor: pointer; }
.form-links a strong { color: var(--blue); }

.legal-note { margin-top: 18px; font-size: 11px; color: var(--txt3); text-align: center; }

.reg-tabs { display: flex; background: #f5f6f7; border-radius: 12px; padding: 4px; gap: 4px; margin-bottom: 18px; border: 1px solid #e4e6eb; }
.reg-tab { flex: 1; padding: 9px 10px; border: none; background: transparent; border-radius: 9px; font-size: 13px; font-weight: 600; color: var(--txt3); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; }
.reg-tab svg { width: 15px; height: 15px; }
.reg-tab.activo { background: #fff; color: var(--blue); box-shadow: 0 1px 6px rgba(0,0,0,.1); }

.reg-fields { display: none; }
.reg-fields.activo { display: block; }

.auth-notice { margin-top: 14px; padding: 11px 13px; background: linear-gradient(135deg, #fffbeb, #fef3c7); border: 1px solid #fcd34d; border-radius: 10px; display: flex; gap: 10px; align-items: flex-start; }
.auth-notice-icon { font-size: 16px; margin-top: 1px; }
.auth-notice-text { font-size: 11.5px; color: #92400e; line-height: 1.6; }
.auth-notice-text strong { display: block; font-weight: 700; margin-bottom: 2px; }

/* ============================================
   SECCIONES
============================================ */
section.land { padding: 96px 5%; }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--blue); background: var(--blue-light); padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 16px; }
.section-title { font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.2vw, 46px); font-weight: 800; color: var(--txt); line-height: 1.1; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--txt3); line-height: 1.75; max-width: 560px; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

.what-inner { max-width: 1200px; margin: 0 auto; }
.what-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.feat-card { background: #fff; border-radius: 20px; padding: 30px 26px; border: 1.5px solid var(--border); box-shadow: var(--sh); transition: all var(--tr); position: relative; overflow: hidden; }
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.fc-blue::before { background: linear-gradient(90deg, var(--blue), var(--teal)); }
.fc-green::before { background: linear-gradient(90deg, var(--green), #34d399); }
.fc-orange::before { background: linear-gradient(90deg, var(--orange), #fbbf24); }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.fc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.fci-blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.fci-green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.fci-orange { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.fc-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--txt); margin-bottom: 10px; }
.fc-desc { font-size: 13.5px; color: var(--txt3); margin-bottom: 18px; line-height: 1.7; }
.fc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fc-list li { font-size: 13px; color: var(--txt2); padding-left: 20px; position: relative; }
.fc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ============================================
   FASES
============================================ */
.phases { background: var(--off-white); }
.phases-inner { max-width: 1060px; margin: 0 auto; }
.phases-timeline { position: relative; margin-top: 56px; display: flex; flex-direction: column; }
.phases-timeline::before { content: ''; position: absolute; left: 50px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--teal), var(--green)); }

.phase-item { display: flex; align-items: flex-start; gap: 28px; padding-bottom: 42px; }
.phase-num { width: 100px; min-width: 100px; display: flex; flex-direction: column; align-items: center; gap: 5px; position: relative; z-index: 1; }
.pn-circle { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800; color: #fff; box-shadow: 0 4px 14px rgba(24,119,242,.35); border: 3px solid #fff; }
.pn-circle.active { background: linear-gradient(135deg, var(--green), #34d399); }
.pn-duration { font-size: 10px; font-weight: 700; color: var(--txt3); }

.phase-card { flex: 1; background: #fff; border-radius: var(--r); padding: 22px 26px; border: 1.5px solid var(--border); transition: all var(--tr); }
.phase-card:hover { transform: translateX(5px); box-shadow: var(--sh-lg); }
.phase-card.active-card { border-color: rgba(16,185,129,.3); background: #f0fdf4; }

.pc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pc-title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--txt); }
.pc-badge { padding: 4px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; }
.pb-active { background: #dcfce7; color: #166534; }
.pb-next { background: #fef3c7; color: #92400e; }
.pb-future { background: #f3f4f6; color: #6b7280; }

.pc-desc { font-size: 13.5px; color: var(--txt3); margin-bottom: 12px; line-height: 1.75; }
.pc-items { display: flex; flex-wrap: wrap; gap: 7px; }
.pc-item { padding: 4px 12px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-pill); font-size: 12px; color: var(--txt2); }

/* ============================================
   INVERSIÓN
============================================ */
.invest { background: linear-gradient(160deg, #0a1628 0%, #0d2044 50%, #0a1628 100%); position: relative; overflow: hidden; }
.invest::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 20% 30%, rgba(24,119,242,.18) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 80% 70%, rgba(14,165,233,.12) 0%, transparent 55%); }
.invest-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.invest .section-label { background: rgba(24,119,242,.2); color: #93c5fd; }
.invest .section-title { color: #fff; }
.invest .section-sub { color: rgba(255,255,255,.6); }

.free-shares-banner { margin-top: 40px; background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(245,158,11,.08)); border: 1px solid rgba(16,185,129,.3); border-radius: 20px; padding: 28px 32px; }
.fsb-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.fsb-sub { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.fsb-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 20px; }
.fsb-tier { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 16px; text-align: center; }
.fsb-tier-badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 11px; font-weight: 700; margin-bottom: 8px; }
.tier-gold { background: rgba(245,158,11,.2); color: #fbbf24; }
.tier-silver { background: rgba(148,163,184,.2); color: #94a3b8; }
.tier-bronze { background: rgba(180,120,60,.2); color: #c9966a; }
.tier-action { background: rgba(14,165,233,.2); color: #7dd3fc; }
.tier-referral { background: rgba(139,92,246,.2); color: #c4b5fd; }
.fsb-tier-num { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: #fff; }
.fsb-tier-label { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 4px; }
.fsb-total { background: rgba(255,255,255,.05); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.fsb-total-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; background: linear-gradient(135deg, #60a5fa, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.fsb-total-text { font-size: 13px; color: rgba(255,255,255,.55); }
.fsb-note { margin-top: 16px; padding: 14px 16px; background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2); border-radius: 12px; font-size: 12.5px; color: rgba(255,255,255,.6); }

.invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.invest-info {}
.ii-points { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.ii-point { display: flex; gap: 16px; align-items: flex-start; }
.iip-icon { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; border: 1px solid rgba(255,255,255,.1); }
.iip-blue { background: rgba(24,119,242,.15); }
.iip-green { background: rgba(16,185,129,.15); }
.iip-orange { background: rgba(245,158,11,.15); }
.iip-purple { background: rgba(139,92,246,.15); }
.iip-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.iip-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }

.stock-card { background: rgba(255,255,255,.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 32px; position: relative; overflow: hidden; }
.stock-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--teal), var(--green)); }
.sc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.sc-name { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; color: #fff; }
.sc-ticker { font-size: 12px; color: rgba(255,255,255,.4); }
.sc-price { font-family: 'Sora', sans-serif; font-size: 44px; font-weight: 800; background: linear-gradient(135deg, #60a5fa, #38bdf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sc-currency { font-size: 17px; color: rgba(255,255,255,.5); margin-left: 10px; }
.sc-label { font-size: 12.5px; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.sc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.sc-stat { background: rgba(255,255,255,.06); border-radius: 11px; padding: 14px; }
.sc-stat-num { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: #fff; }
.sc-stat-lbl { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.sc-bar-wrap { margin-bottom: 22px; }
.sc-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 7px; }
.sc-bar { height: 9px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; }
.sc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: 99px; }

.equity-chart { margin-top: 48px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; padding: 32px; }
.eq-title { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 24px; text-align: center; }
.eq-items { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 560px; margin: 0 auto; }
.eq-item { text-align: center; }
.eq-circle { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; }
.ec-blue { background: linear-gradient(135deg, rgba(24,119,242,.3), rgba(24,119,242,.6)); color: #93c5fd; }
.ec-green { background: linear-gradient(135deg, rgba(16,185,129,.3), rgba(16,185,129,.6)); color: #6ee7b7; }
.eq-label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.8); }
.eq-sub { font-size: 11.5px; color: rgba(255,255,255,.4); margin-top: 3px; }

/* ============================================
   CTA FINAL
============================================ */
.cta-final { background: linear-gradient(135deg, var(--blue) 0%, #0a3d7c 50%, #0ea5e9 100%); padding: 96px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,255,255,.06) 0%, transparent 60%); }
.cta-final-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-final h2 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.8vw, 48px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-white { padding: 14px 36px; background: #fff; color: var(--blue); border: none; border-radius: var(--r-pill); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; cursor: pointer; transition: all var(--tr); }
.cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.3); }
.cta-btn-outline { padding: 14px 36px; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.4); border-radius: var(--r-pill); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: #fff; cursor: pointer; transition: all var(--tr); }
.cta-btn-outline:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ============================================
   FOOTER
============================================ */
footer { background: var(--txt); padding: 56px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 36px; align-items: center; }
.fg-tagline { font-size: 13.5px; color: rgba(255,255,255,.42); line-height: 1.7; }
.fg-title { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.fb-copy { font-size: 12px; color: rgba(255,255,255,.28); }
.fb-copy span { color: rgba(255,255,255,.48); font-weight: 600; }

/* ============================================
   ANIMACIONES
============================================ */
@keyframes slide-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width:1024px) {
  .invest-grid, .what-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-right { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding: 36px 20px 48px; }
  .hero-left { padding: 52px 28px 44px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width:768px) {
  section.land { padding: 64px 5%; }
  .nb-links { display: none; }
  .nb-hamburger { display: flex; }
  .nb-cta { display: none; }
  .what-features { grid-template-columns: 1fr; }
  .phases-timeline::before { left: 22px; }
  .phase-num { min-width: 44px; width: 44px; }
  .pn-duration { display: none; }
  .hero-headline { font-size: 34px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-box { padding: 14px 10px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 11px; }
}
@media (max-width:480px) {
  .hero-headline { font-size: 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .panel-card { padding: 24px 18px 20px; }
  .stats-row { grid-template-columns: 1fr; gap: 8px; }
  .stat-box { padding: 12px 8px; }
  .stat-number { font-size: 24px; }
}

/* ============================================
   FORM FEEDBACK (Mensajes de error/éxito)
============================================ */
.form-feedback {
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-feedback.form-error {
  background-color: #fee;
  border-left: 4px solid #c33;
  color: #c33;
}

.form-feedback.form-ok {
  background-color: #efe;
  border-left: 4px solid #3c3;
  color: #3c3;
}

/* ============================================
   CREADORES
============================================ */
.creators {
  background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.creators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.creators-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.creators .centered {
  color: inherit;
}

.creators .section-label {
  color: #667eea;
}

.creators .section-title {
  color: #fff;
}

.creators .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.creator-card {
  background: rgba(20, 25, 40, 0.6);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(102, 126, 234, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.creator-card:hover {
  transform: translateY(-12px);
  border-color: rgba(102, 126, 234, 0.8);
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.3),
              0 0 60px rgba(118, 75, 162, 0.15),
              0 20px 40px rgba(0, 0, 0, 0.4);
}

.creator-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #2a2f45;
  position: relative;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.creator-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  padding: 15px;
  background: #2a2f45;
}

.creator-card:hover .creator-image img {
  transform: scale(1.05);
}

.creator-content {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.creator-name {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.creator-bio {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .creators {
    padding: 60px 5%;
  }
  .creators-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .creator-image {
    height: 260px;
  }
  .creator-content {
    padding: 20px;
  }
  .creator-name {
    font-size: 16px;
  }
  .creator-bio {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .creators {
    padding: 40px 5%;
  }
  .creators-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .creator-image {
    height: 220px;
  }
  .creator-content {
    padding: 16px;
  }
  .creator-name {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .creator-bio {
    font-size: 11px;
    line-height: 1.6;
  }
}

/* ============================================
   CAMPO DE REFERIDO BLOQUEADO
============================================ */
input[name="referido"][data-referido-bloqueado="true"],
input[name="referido"][readonly],
input[name="referido"][disabled] {
  background-color: #e0e0e0 !important;
  color: #666 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 0.6 !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}
