﻿:root {
  --blue: #000033;
  --green: #33ff99;
  --cyan: #33ccff;
  --purple: #6666ff;
  --pink: #ff9999;
  --yellow: #ffcc00;
  --gray: #cccccc;
  --white: #ffffff;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Red Hat Display', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--blue); color: var(--white); overflow-x: hidden; }

/* SIDE NAV */
.side-nav { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 10px; }
.nav-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; border: none; position: relative; display: block; }
.nav-dot:hover, .nav-dot.active { background: var(--green); transform: scale(1.5); }
.nav-dot::before { content: attr(data-label); position: absolute; right: 18px; top: 50%; transform: translateY(-50%); background: rgba(0,0,51,0.97); color: var(--green); font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; padding: 4px 8px; border: 1px solid rgba(51,255,153,0.3); opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.nav-dot:hover::before { opacity: 1; }

/* SECTIONS */
.section { min-height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 80px 140px 80px 80px; overflow: hidden; scroll-margin-top: 52px; }
.section + .section { border-top: 1px solid rgba(255,255,255,0.06); }

/* DECORACIÓN */
.bg-pattern { position: absolute; opacity: 0.15; pointer-events: none; }

/* TAG LABEL */
.tag-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.tag-label::before { content: ''; display: block; width: 24px; height: 2px; background: currentColor; flex-shrink: 0; }
.c-green { color: var(--green); }
.c-cyan { color: var(--cyan); }
.c-purple { color: var(--purple); }
.c-pink { color: var(--pink); }
.c-yellow { color: var(--yellow); }

/* TIPOGRAFÍA */
h1 { font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 700; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 28px; }
h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 20px; }
h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
p { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.72); }
p + p { margin-top: 12px; }
p strong { color: var(--white); font-weight: 700; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* CARD */
.card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 24px 22px; transition: border-color 0.3s, background 0.3s; }
.card:hover { background: rgba(255,255,255,0.07); border-color: rgba(51,255,153,0.2); }
.card p { font-size: 1rem; line-height: 1.65; }

/* CHECK LIST */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.75); }
.check-list li::before { content: ''; display: block; width: 5px; height: 5px; background: var(--green); flex-shrink: 0; margin-top: 8px; }
.x-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.x-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; line-height: 1.6; color: rgba(255,153,153,0.72); }
.x-list li::before { content: ''; display: block; width: 5px; height: 5px; background: var(--pink); flex-shrink: 0; margin-top: 8px; }

/* TABLE */
.table-wrap { margin-top: 28px; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
thead th { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); text-align: left; padding: 12px 20px; background: rgba(51,255,153,0.05); border-bottom: 1px solid rgba(51,255,153,0.15); }
tbody td { font-size: 1rem; color: rgba(255,255,255,0.78); padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.6; vertical-align: top; }
tbody tr:last-of-type td { border-bottom: none; }
tfoot td { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--white); padding: 16px 20px; border-top: 1px solid rgba(51,255,153,0.3); }
.price { font-family: var(--font-display); font-weight: 700; white-space: nowrap; color: var(--white); }
.optional { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); background: rgba(255,204,0,0.1); padding: 2px 7px; border-radius: 2px; }

/* FAQ */
.faq-list { margin-top: 28px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-question { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; user-select: none; }
.faq-question .icono { font-size: 1.3rem; color: var(--green); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-question .icono { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-size: 1rem; padding-bottom: 16px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.step { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.step:not(:last-child)::before { content: ''; position: absolute; left: 14px; top: 30px; bottom: 0; width: 1px; background: rgba(255,255,255,0.08); }
.step-num { width: 30px; height: 30px; border-radius: 50%; background: rgba(51,255,153,0.1); border: 1px solid rgba(51,255,153,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
.step-content h4 { font-size: 1rem; }
.step-content p { font-size: 1rem; margin-top: 4px; }

/* CTA */
.btn-primary { display: inline-block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--blue); background: var(--green); padding: 13px 26px; transition: background 0.2s, transform 0.2s; cursor: pointer; border: none; }
.btn-primary:hover { background: #5fffb3; transform: translateY(-2px); }
.btn-secondary { display: inline-block; font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,0.55); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; transition: color 0.2s; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; }
.btn-secondary:hover { color: var(--white); }

/* CONDITION */
.condition { padding: 18px 22px; border-left: 2px solid var(--purple); background: rgba(102,102,255,0.06); margin-bottom: 14px; }
.condition h4 { color: var(--purple); font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 7px; }
.condition p { font-size: 1rem; line-height: 1.65; }

/* SECTION FOOTER */
.section-footer { position: absolute; bottom: 28px; left: 80px; right: 140px; display: flex; justify-content: space-between; align-items: center; }
.section-footer .pag { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.18); text-transform: uppercase; }
.section-footer .marca { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,255,255,0.15); text-transform: uppercase; }

/* BACKGROUND NUMBER */
.bg-number { position: absolute; right: 80px; bottom: 40px; font-family: var(--font-display); font-size: 9rem; font-weight: 700; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -0.05em; }

/* COVER META */
.cover-meta { margin-top: 48px; display: flex; gap: 40px; flex-wrap: wrap; }
.meta-item .label { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 4px; }
.meta-item .meta-value { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.82); }

/* BIG NUMBER */
.big-number { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 700; line-height: 1; color: var(--green); display: block; margin-bottom: 5px; }

/* CASE STUDY */
.case-item { padding: 28px; border: 1px solid rgba(255,255,255,0.07); margin-bottom: 20px; }
.case-item:hover { border-color: rgba(51,255,153,0.2); background: rgba(255,255,255,0.02); }
.case-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.case-link { color: inherit; text-decoration: none; }
.case-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.case-subtitle { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--green); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.case-project-link { display: inline-block; margin-top: 16px; color: var(--cyan); font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.case-project-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.case-item p { font-size: 1rem; line-height: 1.65; }
.case-item ul { list-style: none; margin: 10px 0; display: flex; flex-direction: column; gap: 6px; }
.case-item ul li { font-size: 1rem; color: rgba(255,255,255,0.68); display: flex; gap: 10px; align-items: flex-start; }
.case-item ul li::before { content: ''; display: block; width: 4px; height: 4px; background: var(--green); flex-shrink: 0; margin-top: 8px; }

/* PROFILE PHOTO */
.profile-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(51,255,153,0.3); }
.inl-0011 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); gap: 56px; align-items: center; margin-bottom: 36px; }
.inl-0012 { display: none; }
.inl-0013 { max-width: 64ch; }
.welcome-right-photo-wrap { width: 100%; align-self: center; }
.welcome-right-photo { width: 100%; height: auto; display: block; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 36px rgba(0,0,0,0.28); object-fit: cover; }

/* BADGE WP */
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; margin: 3px; }
.badge-green { background: rgba(51,255,153,0.1); color: var(--green); border: 1px solid rgba(51,255,153,0.2); }
.badge-cyan { background: rgba(51,204,255,0.1); color: var(--cyan); border: 1px solid rgba(51,204,255,0.2); }
.badge-purple { background: rgba(102,102,255,0.1); color: var(--purple); border: 1px solid rgba(102,102,255,0.2); }

/* HERO BIKE PHOTO */
.bike-photo { position: absolute; right: 0; top: 0; height: 100%; width: 42%; object-fit: cover; opacity: 0.18; mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 100%); -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .section { padding: 60px 48px 60px 32px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .side-nav { display: none; }
  .bg-number { display: none; }
  .section-footer { left: 32px; right: 48px; }
  .bike-photo { display: none; }
  .welcome-right-photo-wrap { display: none; }
}

@media (max-width: 1200px) {
  .inl-0011 { grid-template-columns: 1fr; gap: 24px; }
  .welcome-right-photo-wrap { display: none; }
  .inl-0012 { display: inline-flex; }
}

/* NAV TOP */
.nav-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(0,0,51,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 52px;
}

.nav-top-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-top-logo svg {
  height: 22px;
  width: auto;
}

.nav-top-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-top-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0 14px;
  height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-top-links a:hover,
.nav-top-links a.active-link {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* Offset fixed nav on scroll */
.section {
  scroll-margin-top: 52px;
}

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

.l1{fill:#dce4ef}.l2{fill:#28e8a3}.l3{fill:#725bff}.l4{fill:#ff7480}.l5{fill:#fbce13}.l6{fill:#11d9ed}

/* CHECKBOXES INVERSIÓN */
.investment-table { width: 100%; border-collapse: collapse; }
.investment-table thead th { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); text-align: left; padding: 12px 16px; background: rgba(51,255,153,0.05); border-bottom: 1px solid rgba(51,255,153,0.15); }
.investment-table thead th:last-child { text-align: right; }
.investment-table td { font-size: 1rem; color: rgba(255,255,255,0.78); padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.5; vertical-align: middle; }
.investment-table tr:last-of-type td { border-bottom: none; }
.investment-table td:last-child { text-align: right; white-space: nowrap; }

.investment-row { cursor: pointer; transition: background 0.2s; }
.investment-row:hover { background: rgba(255,255,255,0.04); }
.investment-row.selected { background: rgba(51,255,153,0.06); }
.investment-row.selected td { color: rgba(255,255,255,0.95); }

.investment-check { width: 18px; height: 18px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; cursor: pointer; }
.investment-row.selected .investment-check { background: var(--green); border-color: var(--green); }
.investment-check::after { content: ''; display: block; width: 5px; height: 9px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg) translate(-1px, -1px); opacity: 0; transition: opacity 0.15s; }
.investment-row.selected .investment-check::after { opacity: 1; }

.investment-fixed { background: rgba(51,255,153,0.04); }
.investment-fixed td { color: rgba(255,255,255,0.9); }

/* TOTAL BOX */
.total-box { margin-top: 24px; padding: 20px 24px; border: 1px solid rgba(51,255,153,0.25); background: rgba(51,255,153,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.total-box-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.total-box-detail { font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.total-box-amount { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--green); line-height: 1; }
.total-box-monthly { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--cyan); margin-top: 4px; text-align: right; }

.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}.skip-link:focus{position:fixed;left:16px;top:12px;width:auto;height:auto;padding:10px 14px;background:#000033;color:#33ff99;border:1px solid rgba(51,255,153,.5);z-index:1000}.nav-dot:focus-visible,.nav-top-links a:focus-visible,.btn-primary:focus-visible,.btn-secondary:focus-visible,.faq-question[role='button']:focus-visible,.investment-row[role='button']:focus-visible{outline:2px solid #33ff99;outline-offset:3px}

/* Extracted former inline styles */
.inl-0001{display:flex;align-items:center;gap:10px;text-decoration:none;}
.inl-0002{font-family:var(--font-display);font-size:0.82rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:rgba(220,228,239,0.9);}
.inl-0003{display:none;}
.inl-0004{position:absolute;left:50%;bottom:-6px;top:auto;transform:translateX(-50%);width:100%;height:auto;max-width:1920px;opacity:0.66;pointer-events:none;z-index:0;-webkit-mask-image:linear-gradient(to bottom, transparent 0%, transparent 36%, rgba(0,0,0,0.4) 54%, rgba(0,0,0,0.9) 70%, #000 100%);mask-image:linear-gradient(to bottom, transparent 0%, transparent 36%, rgba(0,0,0,0.4) 54%, rgba(0,0,0,0.9) 70%, #000 100%);}
.inl-0005{position:relative;z-index:1;}
.inl-0006{width:300px;max-width:80%;margin-bottom:48px;}
.inl-0007{font-family:'Red Hat Display',sans-serif;font-size:0.82rem;font-weight:500;letter-spacing:0.22em;color:#28e8a3;margin-top:-36px;margin-bottom:44px;}
.inl-0008{font-family:var(--font-display);font-size:1.05rem;font-weight:500;letter-spacing:0.18em;text-transform:uppercase;color:var(--cyan);margin-bottom:18px;}
.inl-0009{font-size:1.05rem;line-height:1.75;color:rgba(255,255,255,0.72);max-width:42ch;}
.inl-0010{position:relative;z-index:1;width:100%;}
.inl-0011{display:flex;gap:32px;align-items:center;flex-wrap:nowrap;margin-bottom:32px;}
.inl-0012{width:96px;height:96px;flex-shrink:0;}
.inl-0013{flex:1;min-width:0;}
.inl-0014{margin-bottom:14px;}
.inl-0015{font-size:1.1rem;max-width:52ch;}
.inl-0016{max-width:52ch;margin-top:10px;}
.inl-0017{gap:40px;}
.inl-0018{font-size:1.1rem;}
.inl-0019{font-size:1.1rem;margin-top:10px;}
.inl-0020{margin-top:36px;padding:20px 24px;border:1px solid rgba(51,255,153,0.15);background:rgba(51,255,153,0.04);}
.inl-0021{margin-bottom:12px;}
.inl-0022{font-size:1.1rem;margin-bottom:14px;}
.inl-0023{display:flex;flex-wrap:wrap;column-gap:28px;row-gap:16px;margin-top:16px;align-items:flex-start;}
.inl-0024{display:flex;flex-direction:column;align-items:center;gap:8px;width:84px;}
.inl-0025{font-family:var(--font-display);font-size:0.65rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;color:rgba(255,255,255,0.5);text-align:center;line-height:1.3;}
.inl-0026{max-width:56ch;}
.inl-0027{margin-top:32px;}
.inl-0028{margin-top:28px;padding:20px 24px;border:1px solid rgba(255,255,255,0.07);background:rgba(255,255,255,0.02);}
.inl-0029{display:flex;flex-wrap:wrap;gap:8px;}
.inl-0030{margin-top:32px;gap:40px;}
.inl-0031{margin-top:24px;margin-bottom:14px;}
.inl-0032{margin-top:28px;padding:18px 22px;border-left:2px solid rgba(255,204,0,0.5);background:rgba(255,204,0,0.05);}
.inl-0033{font-size:1.05rem;color:rgba(255,255,255,0.7);}
.inl-0034{color:var(--yellow);}
.inl-0035{max-width:52ch;}
.inl-0036{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:28px;}
.inl-0037{padding:18px 20px;border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.02);}
.inl-0038{font-family:var(--font-display);font-size:0.8rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:var(--cyan);margin-bottom:8px;display:block;}
.inl-0039{font-size:1.05rem;color:rgba(255,255,255,0.78);}
.inl-0040{padding:18px 20px;border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.02);grid-column:1/-1;}
.inl-0041{margin-top:28px;padding:20px 24px;border:1px solid rgba(51,255,153,0.15);background:rgba(51,255,153,0.04);}
.inl-0042{display:flex;gap:20px;flex-wrap:wrap;}
.inl-0043{flex:1;min-width:220px;}
.inl-0044{font-size:1.05rem;margin-top:6px;}
.inl-0045{max-width:54ch;}
.inl-0046{margin-top:28px;gap:28px;align-items:start;}
.inl-0047{margin-top:0;}
.inl-0048{width:32px;}
.inl-0049{color:#fff}
.inl-0050{font-size:0.9rem;color:rgba(255,255,255,0.5);}
.inl-0051{color:var(--green)}
.inl-0052{margin-top:24px;margin-bottom:12px;}
.inl-0053{font-size:0.85rem;font-weight:400;color:rgba(255,255,255,0.5)}
.inl-0054{font-size:0.88rem;color:rgba(255,255,255,0.4)}
.inl-0055{margin-top:16px;padding:14px 18px;border-left:2px solid rgba(102,102,255,0.4);background:rgba(102,102,255,0.06);}
.inl-0056{font-size:1rem;color:rgba(255,255,255,0.6);}
.inl-0057{text-align:right;}
.inl-0058{display:none;}
.inl-0059{max-width:54ch;margin-bottom:32px;}
.inl-0060{width:100%;height:180px;object-fit:cover;object-position:top center;margin-bottom:16px;opacity:0.9;border:1px solid rgba(255,255,255,0.08);}
.inl-0061{margin-top:12px;padding:10px 14px;background:rgba(51,255,153,0.06);border-left:2px solid var(--green);}
.inl-0062{font-size:1.05rem;color:rgba(255,255,255,0.65);}
.inl-0063{margin-top:12px;padding:10px 14px;background:rgba(51,204,255,0.06);border-left:2px solid var(--cyan);}
.inl-0064{margin-top:12px;padding:10px 14px;background:rgba(102,102,255,0.08);border-left:2px solid var(--purple);}
.inl-0065{margin-top:28px;gap:40px;}
.inl-0066{margin-bottom:20px;}
.inl-0067{padding:14px 18px;border:1px solid rgba(255,255,255,0.07);background:rgba(255,255,255,0.02);}
.inl-0068{font-size:1.05rem;color:rgba(255,255,255,0.6);}
.inl-0069{margin-top:16px;padding:14px 18px;border-left:2px solid rgba(255,153,153,0.4);background:rgba(255,153,153,0.05);}
.inl-0070{font-size:1.05rem;color:rgba(255,153,153,0.8);}
.inl-0071{width:100%;position:relative;z-index:1;}
.inl-0072{max-width:34ch;}
.inl-0073{max-width:52ch;margin-bottom:28px;}
.inl-0074{gap:16px;}
.inl-0075{position:relative;}
.inl-0076{position:absolute;left:0;top:0;height:100%;width:36%;object-fit:cover;object-position:top center;opacity:0.1;mask-image:linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 100%);-webkit-mask-image:linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 100%);pointer-events:none;}
.inl-0077{max-width:36ch;margin-bottom:24px;}
.inl-0078{display:flex;flex-direction:column;gap:12px;}
.inl-0079{font-size:1.05rem;margin-top:4px;}
.inl-0080{margin-bottom:16px;}
.inl-0081{padding-bottom:0;}
.inl-0082{position:absolute;right:0;top:0;height:100%;width:45%;object-fit:cover;object-position:center;opacity:0.13;mask-image:linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);-webkit-mask-image:linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);pointer-events:none;}
.inl-0083{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;margin-top:36px;background:rgba(255,255,255,0.05);}
.inl-0084{background:var(--blue);padding:28px 22px;}
.inl-0085{font-family:var(--font-display);font-size:0.85rem;font-weight:700;letter-spacing:0.15em;color:var(--green);margin-bottom:14px;}
.inl-0086{font-size:1.05rem;color:var(--white);text-transform:none;letter-spacing:0;margin-bottom:8px;}
.inl-0087{background:rgba(255,255,255,0.02);padding:28px 22px;}
.inl-0088{margin-top:36px;display:flex;gap:16px;flex-wrap:wrap;}
.inl-0089{margin-top:48px;padding-top:24px;border-top:1px solid rgba(255,255,255,0.07);display:flex;gap:36px;flex-wrap:wrap;align-items:center;}
.inl-0090{font-family:var(--font-display);font-size:0.75rem;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.4);margin-bottom:4px;}
.inl-0091{font-size:1.05rem;color:rgba(255,255,255,0.72);}

/* Hero cleanup: keep only top-nav logo */
#portada .inl-0006 { display: none; }
#portada .inl-0007 { display: none; }
#portada .inl-0008 { margin-top: 0; margin-bottom: 14px; }
#portada h1 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600 !important;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}


/* Welcome section hotfix: avoid conflicts with extracted inline classes */
#bienvenida .inl-0011 {
  display: grid !important;
  grid-template-columns: 96px minmax(0, 1fr) minmax(340px, 420px) !important;
  gap: 36px !important;
  align-items: start !important;
  margin-bottom: 36px !important;
}

#bienvenida .inl-0012 {
  display: block !important;
  width: 96px !important;
  height: 96px !important;
  margin-top: 58px;
}

#bienvenida .inl-0013,
#bienvenida .inl-0015,
#bienvenida .inl-0016 {
  max-width: 68ch !important;
}

#bienvenida .welcome-right-photo-wrap {
  display: block;
  width: 100%;
  max-width: 380px;
  justify-self: end;
  position: relative;
  overflow: visible;
}

#bienvenida .welcome-right-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 22%;
  border: none;
  box-shadow: none;
  border-radius: 50%;
  opacity: 1;
  filter: saturate(0.8) contrast(0.9);
}

#bienvenida .welcome-right-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 50%;
  background: none;
}

@media (max-width: 1200px) {
  #bienvenida .inl-0011 {
    display: flex !important;
    gap: 24px !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
  }

  #bienvenida .welcome-right-photo-wrap {
    display: none !important;
  }

  #bienvenida .inl-0012 {
    display: inline-flex !important;
    margin-top: 0;
  }
}

/* Bienvenida: identity graphic background (no right photo block) */
#bienvenida {
  position: relative;
  overflow: hidden;
}

#bienvenida::before { display: none; }

#bienvenida .inl-0010 {
  position: relative;
  z-index: 1;
}

#bienvenida .inl-0011 {
  display: flex !important;
  align-items: flex-start !important;
  gap: 24px !important;
  flex-wrap: nowrap !important;
}

#bienvenida .inl-0012 {
  display: inline-flex !important;
  margin-top: 56px;
}

#bienvenida .welcome-right-photo-wrap {
  display: none !important;
}

@media (max-width: 900px) {
  #bienvenida .inl-0012 {
    margin-top: 0;
  }
}

/* Body copy normalization */
.section p,
.section li,
.section td,
.section .faq-question,
.section .total-box-detail,
.section .meta-item .meta-value {
  font-size: 1.1rem;
}


