:root {
  --bg: #090b11;
  --bg-soft: #0e111a;
  --surface: #131722;
  --surface-2: #191e2b;
  --text: #f4f6fb;
  --muted: #a8afbe;
  --muted-2: #737b8d;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .18);
  --accent: #a3f0d2;
  --accent-strong: #65d8b4;
  --accent-dark: #08231d;
  --lavender: #b7a9ff;
  --max: 1180px;
  --header: 78px;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }

.site-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .042;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.container { width: min(calc(100% - 64px), var(--max)); margin: 0 auto; }
.section { position: relative; padding: 118px 0; }
.section--dark { background: var(--bg-soft); border-block: 1px solid var(--line); }

.scroll-progress { position: fixed; left: 0; top: 0; z-index: 100; width: 100%; height: 3px; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--lavender)); transition: width .12s linear; }

.site-header {
  height: var(--header); position: sticky; top: 0; z-index: 80; border-bottom: 1px solid transparent;
  background: rgba(9, 11, 17, .72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: border-color .28s ease, background .28s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(9, 11, 17, .9); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  min-width: 0;
  padding: 4px 2px;
  border-radius: 12px;
  transition: background .22s ease, transform .22s ease;
}
.brand:hover { background: rgba(163,240,210,.045); transform: translateY(-1px); }
.brand-icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(163,240,210,.34);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(163,240,210,.12), rgba(183,169,255,.09));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 8px 19px rgba(0,0,0,.20);
}
.brand-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 36%, rgba(101,216,180,.11));
}
.brand-icon__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s ease, transform .3s ease;
}
.brand-icon--ready .brand-icon__image { opacity: 1; }
.brand:hover .brand-icon--ready .brand-icon__image { transform: scale(1.055); }
.brand-icon__fallback {
  z-index: 0;
  color: var(--accent);
  font-family: "DM Mono", monospace;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.brand-icon--ready .brand-icon__fallback { opacity: 0; }
.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.72px;
  line-height: 1;
  white-space: nowrap;
}
.brand-name__halos { color: #f7f9fc; }
.brand-name__webs {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(163,240,210,.18);
}
.brand--footer .brand-icon { width: 40px; height: 40px; flex-basis: 40px; border-radius: 11px; }
.brand--footer .brand-name { font-size: 18px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); margin-left: auto; }
.nav-link { color: var(--muted); font-size: 13px; font-weight: 600; position: relative; padding: 8px 0; transition: color .2s ease; }
.nav-link::after { content: ""; position: absolute; width: 0; height: 1px; background: var(--accent); bottom: 3px; left: 0; transition: width .25s ease; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle { color: var(--muted); background: transparent; padding: 8px 4px; font-family: "DM Mono", monospace; font-size: 12px; transition: color .2s; }
.language-toggle:hover { color: var(--accent); }
.language-toggle__current { color: var(--accent); }.language-toggle__divider { margin: 0 2px; color: var(--muted-2); }
.header-cta { padding: 10px 15px; border: 1px solid rgba(163,240,210,.45); border-radius: 9px; color: var(--accent); font-size: 12px; font-weight: 700; transition: .25s ease; }
.header-cta:hover { color: var(--accent-dark); background: var(--accent); border-color: var(--accent); }
.menu-toggle { display: none; width: 40px; height: 40px; padding: 9px; background: transparent; border: 1px solid var(--line); border-radius: 9px; }
.menu-toggle span { display: block; height: 1.5px; width: 100%; background: var(--text); margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }.menu-toggle.is-active span:nth-child(2) { opacity: 0; }.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; }

.eyebrow { margin: 0 0 18px; color: var(--accent); font-family: "DM Mono", monospace; font-size: 11px; font-weight: 500; letter-spacing: .095em; display: flex; align-items: center; gap: 9px; }
.eyebrow > span:first-child { width: 22px; height: 1px; background: var(--accent); display: inline-block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-weight: 800; letter-spacing: -0.057em; line-height: 1.03; }
h1 { max-width: 740px; margin-bottom: 26px; font-size: clamp(43px, 6.05vw, 83px); }
h2 { margin-bottom: 0; font-size: clamp(34px, 4.1vw, 57px); }
h1 em, h2 em { color: var(--accent); font-style: normal; }

.hero { min-height: calc(100vh - var(--header)); display: flex; align-items: center; padding: 88px 0 48px; isolation: isolate; overflow: clip; }
.hero::before { content: ""; position: absolute; width: 650px; height: 650px; top: -240px; right: -180px; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(100,216,180,.12), transparent 67%); filter: blur(10px); }
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(46px, 5.2vw, 74px); }
.hero__content { padding-left: clamp(0px, 1.15vw, 16px); }
/* Texto introductorio del hero: estructura visual para una lectura más clara. */
.hero__lead {
  position: relative;
  max-width: 54ch;
  margin: 0 0 34px;
  padding: 3px 0 3px 18px;
  border-left: 1px solid rgba(163, 240, 210, .5);
  color: #b9c1cf;
  font-size: clamp(15px, 1.32vw, 17px);
  line-height: 1.82;
  letter-spacing: -.012em;
  text-wrap: pretty;
}
.hero__lead::before {
  content: "//";
  position: absolute;
  top: -14px;
  left: 17px;
  color: var(--accent);
  font: 10px "DM Mono", monospace;
  letter-spacing: .08em;
  opacity: .82;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; padding: 13px 19px; border-radius: 11px; font-size: 13px; font-weight: 800; transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease; }
.button:hover { transform: translateY(-3px); }
.button--primary { color: var(--accent-dark); background: var(--accent); box-shadow: 0 10px 28px rgba(101,216,180,.14); }
.button--primary:hover { background: #c4fae4; box-shadow: 0 14px 34px rgba(101,216,180,.25); }
.button--ghost { color: var(--text); background: rgba(255,255,255,.02); border: 1px solid var(--line-strong); }
.button--ghost:hover { border-color: rgba(163,240,210,.58); background: rgba(163,240,210,.06); }
.button--light { width: 100%; color: var(--accent-dark); background: #edf2f7; }.button--light:hover { background: #fff; }
.button-arrow { font-size: 17px; line-height: 1; }
.hero__pills { display: flex; max-width: 610px; gap: 9px; flex-wrap: wrap; padding: 0; margin: 30px 0 0; list-style: none; }
.hero__pills li { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 700; }
.hero__pills li::before { content: "•"; color: var(--accent); margin-right: 7px; }

.hero__visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }.orb--one { width: 330px; height: 330px; top: 44px; right: 11px; background: radial-gradient(circle, rgba(183,169,255,.21), rgba(183,169,255,0) 69%); }.orb--two { width: 310px; height: 310px; left: 3px; bottom: 8px; background: radial-gradient(circle, rgba(101,216,180,.16), rgba(101,216,180,0) 67%); }
.browser-window { width: min(100%, 520px); position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: #111522; box-shadow: 0 32px 70px rgba(0,0,0,.4); transform: rotate(-3.5deg); }
.browser-window__top { display: flex; align-items: center; gap: 5px; height: 37px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.08); background: #0d1018; }.browser-window__top > span { width: 6px; height: 6px; border-radius: 50%; background: #555f72; }.browser-window__top > span:nth-child(1) { background: #ef817a; }.browser-window__top > span:nth-child(2) { background: #eec676; }.browser-window__top > span:nth-child(3) { background: #83d49f; }.browser-window__url { width: 54%; margin-left: 10px; padding: 3px 9px; border-radius: 5px; color: #8790a4; background: #161b27; font: 8px "DM Mono", monospace; text-align: center; }
.browser-window__body { min-height: 337px; padding: 18px 20px 22px; background: linear-gradient(145deg, #151c2c, #10141e); }.fake-nav { display: grid; grid-template-columns: 22px 1fr 1fr 1fr; gap: 11px; align-items: center; }.fake-nav > span:not(.fake-logo) { height: 4px; border-radius: 2px; background: rgba(255,255,255,.24); }.fake-logo { width: 20px; height: 20px; display: grid; place-items: center; color: var(--accent); border: 1px solid rgba(163,240,210,.6); border-radius: 6px; font: 10px "DM Mono", monospace; }.fake-hero { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 20px; padding: 38px 4px 31px; }.fake-copy i { display: block; width: 47px; height: 4px; margin-bottom: 10px; border-radius: 4px; background: var(--accent); }.fake-copy strong { display: block; height: 13px; margin: 7px 0; border-radius: 3px; background: #ebeff5; }.fake-copy strong:nth-of-type(2) { width: 75%; }.fake-copy b { display: block; width: 62px; height: 20px; margin-top: 17px; border-radius: 5px; background: var(--accent); }.fake-art { height: 158px; position: relative; border-radius: 16px; overflow: hidden; background: linear-gradient(145deg, #b6a6ff, #60cfae); }.fake-art div { position: absolute; width: 170px; height: 170px; top: -36px; right: -36px; border: 12px solid rgba(255,255,255,.36); border-radius: 45% 55% 60% 40%; }.fake-art span { position: absolute; width: 100px; height: 100px; bottom: -25px; left: -20px; border: 18px solid rgba(10,17,28,.42); border-radius: 50%; }.fake-art small { position: absolute; width: 10px; height: 10px; bottom: 33px; right: 32px; border-radius: 50%; background: #eefdf7; }.fake-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }.fake-cards span { height: 43px; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; background: rgba(255,255,255,.04); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: rgba(17,23,34,.86); box-shadow: 0 15px 36px rgba(0,0,0,.3); backdrop-filter: blur(12px); }.floating-card strong { display: block; color: #f8f9fd; font-size: 10px; line-height: 1.2; }.floating-card small { display: block; color: var(--muted); font-size: 9px; }.floating-card__icon, .floating-card__check { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; color: var(--accent); background: rgba(163,240,210,.12); font-weight: 800; }.floating-card--one { top: 71px; right: -9px; animation: float 5s ease-in-out infinite; }.floating-card--two { left: -13px; bottom: 67px; animation: float 5.8s 1.2s ease-in-out infinite; }.floating-card__check { color: #d6ceff; background: rgba(183,169,255,.14); }
@keyframes float { 50% { transform: translateY(-11px); } }
.trust-bar { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 76px; padding: 28px 0 0; border-top: 1px solid var(--line); }
/* Texto inferior tipo código: se aplica tanto en escritorio como en celular. */
.trust-bar p {
  max-width: 390px;
  margin: 0;
  color: #9ca8ba;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .025em;
  line-height: 1.78;
  text-wrap: balance;
}
.trust-bar__items { display: flex; align-items: center; gap: 15px; color: rgba(255,255,255,.42); font: 10px "DM Mono", monospace; letter-spacing: .12em; }.trust-bar__items i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.intro-strip { border-bottom: 1px solid var(--line); background: #0c0f16; }.intro-strip__content { padding: 61px 0 65px; }.intro-strip__content > p:last-child { max-width: 920px; margin: 0; color: #d8dce6; font-size: clamp(22px, 3.05vw, 39px); font-weight: 600; letter-spacing: -.042em; line-height: 1.28; }.intro-strip strong { color: var(--accent); }
.section-heading { display: grid; grid-template-columns: 1.1fr .72fr; align-items: end; gap: 42px; margin-bottom: 56px; }.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.72; }.section-heading--center { display: block; max-width: 780px; margin-inline: auto; text-align: center; }.section-heading--center .eyebrow { justify-content: center; }.section-heading--center > p { max-width: 640px; margin: 21px auto 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }.feature-card { min-height: 268px; position: relative; padding: 26px 23px 23px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.035), transparent); transition: transform .3s ease, border-color .3s ease, background .3s ease; }.feature-card:hover { transform: translateY(-7px); border-color: rgba(163,240,210,.44); background: linear-gradient(145deg, rgba(163,240,210,.11), rgba(255,255,255,.025)); }.feature-card__number { position: absolute; top: 20px; right: 21px; color: rgba(255,255,255,.26); font: 10px "DM Mono", monospace; }.feature-card__icon { width: 39px; height: 39px; display: grid; place-items: center; margin-bottom: 47px; border: 1px solid rgba(163,240,210,.4); border-radius: 11px; color: var(--accent); background: rgba(163,240,210,.07); font-size: 18px; }.feature-card h3 { margin-bottom: 10px; font-size: 16px; letter-spacing: -.025em; }.feature-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.72; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 16px; }.plan-card { min-height: 658px; position: relative; display: flex; flex-direction: column; padding: 30px 27px 27px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }.plan-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.24); box-shadow: var(--shadow); }.plan-card--featured { border-color: rgba(163,240,210,.6); background: linear-gradient(165deg, rgba(163,240,210,.11), var(--surface) 39%); }.plan-card--featured:hover { border-color: var(--accent); }.plan-card__ribbon { position: absolute; top: 0; right: 20px; transform: translateY(-50%); padding: 6px 10px; border-radius: 999px; color: #08231d; background: var(--accent); font: 9px "DM Mono", monospace; letter-spacing: .08em; }.plan-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 38px; }.plan-card__level { color: var(--accent); font: 12px "DM Mono", monospace; }.plan-card__tag { padding: 5px 9px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 700; }.plan-card h3 { margin-bottom: 11px; font-size: 25px; letter-spacing: -.05em; line-height: 1.15; }.plan-card__summary { min-height: 65px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.68; }.plan-card__price { position: relative; display: grid; gap: 2px; min-height: 96px; margin: 0 0 24px; padding: 14px 15px 13px; border: 1px solid rgba(163,240,210,.24); border-radius: 12px; background: linear-gradient(135deg, rgba(163,240,210,.1), rgba(183,169,255,.055)); overflow: hidden; }.plan-card__price::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: var(--accent); }.plan-card__price-label, .plan-card__price small { padding-left: 1px; color: var(--muted); font: 10px "DM Mono", monospace; letter-spacing: .035em; }.plan-card__price strong { color: var(--accent); font-size: clamp(25px, 2.3vw, 31px); font-weight: 800; letter-spacing: -.055em; line-height: 1.02; }.plan-card__price small { color: var(--muted-2); font-size: 9px; }.plan-card__list { display: grid; gap: 13px; padding: 0; margin: 0 0 29px; list-style: none; }.plan-card__list li { position: relative; padding-left: 20px; color: #d4d8e1; font-size: 12px; line-height: 1.45; }.plan-card__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-size: 11px; }.text-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-top: auto; color: var(--accent); font-size: 12px; font-weight: 800; }.text-link b { font-size: 17px; line-height: 1; transition: transform .2s ease; }.text-link:hover b { transform: translateX(4px); }
.service-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }.service-note { display: flex; gap: 15px; padding: 21px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.018); }.service-note__icon { width: 37px; height: 37px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; color: var(--lavender); background: rgba(183,169,255,.12); font-size: 18px; }.service-note h3 { margin: 0 0 5px; font-size: 14px; letter-spacing: -.02em; }.service-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.66; }.service-note strong { color: #e2e5ec; }.plans-footnote { max-width: 850px; margin: 18px auto 0; color: var(--muted-2); font: 10px/1.65 "DM Mono", monospace; text-align: center; }

.portfolio-section { background: #0c0f16; border-block: 1px solid var(--line); }.portfolio-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }.project-card { grid-column: span 6; min-height: 360px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #151a26; isolation: isolate; }.project-card:nth-child(3), .project-card:nth-child(4) { grid-column: span 6; }.project-card__image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .3s; opacity: .84; }.project-card__fallback { position: absolute; inset: 0; z-index: -3; background: linear-gradient(135deg, #273048, #1a5448 63%, #ab9fea); }.project-card:nth-child(2) .project-card__fallback { background: linear-gradient(135deg, #2c2642, #687b57 64%, #d9c48c); }.project-card:nth-child(3) .project-card__fallback { background: linear-gradient(135deg, #2a2021, #795048 62%, #bca087); }.project-card:nth-child(4) .project-card__fallback { background: linear-gradient(135deg, #222d3e, #456677 61%, #c39d64); }.project-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5,7,12,0) 24%, rgba(5,7,12,.82) 100%); }.project-card:hover .project-card__image { transform: scale(1.07); opacity: .96; }.project-card__content { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 26px; }.project-card__type { display: block; margin-bottom: 6px; color: var(--accent); font: 10px "DM Mono", monospace; letter-spacing: .1em; }.project-card h3 { margin: 0; max-width: 310px; color: #fff; font-size: 24px; letter-spacing: -.05em; line-height: 1.1; }.project-card__arrow { width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.27); border-radius: 50%; color: #fff; font-size: 19px; transition: color .25s, background .25s, transform .25s; }.project-card:hover .project-card__arrow { color: var(--accent-dark); background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }.portfolio-note { display: flex; align-items: center; justify-content: center; gap: 11px; max-width: 740px; margin: 33px auto 0; padding: 15px 22px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.025); text-align: center; }.portfolio-note span { color: var(--accent); }.portfolio-note p { margin: 0; font-size: 12px; }


/* Sección "Conóceme". La foto se coloca en /img y se configura desde index.html. */
.about-section { background: linear-gradient(180deg, #0b0e15 0%, #0d111a 100%); border-bottom: 1px solid var(--line); }
.about-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(48px, 7vw, 104px); align-items: center; }
.about-photo { display: block; }
.about-photo__frame { min-height: 510px; position: relative; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 21px; background: linear-gradient(145deg, #17283a, #132419 61%, #3b3159); box-shadow: var(--shadow); isolation: isolate; }
.about-photo__frame::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(6,8,14,.02) 35%, rgba(6,8,14,.28) 100%); }
.about-photo__frame::after { content: ""; position: absolute; width: 300px; height: 300px; top: -130px; right: -115px; z-index: 0; border: 1px solid rgba(163,240,210,.38); border-radius: 50%; box-shadow: 0 0 0 38px rgba(163,240,210,.055), 0 0 0 76px rgba(183,169,255,.035); }
.about-photo__fallback { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; color: rgba(255,255,255,.88); font: 800 clamp(126px, 18vw, 200px) / 1 "Manrope", sans-serif; letter-spacing: -.12em; transform: translateX(-6px); text-shadow: 0 22px 40px rgba(0,0,0,.22); }
.about-photo__image { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-photo__caption { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 3; display: grid; gap: 4px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(17, 22, 31, .52); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 18px 30px rgba(0,0,0,.20); }
.about-photo__caption strong { color: #fff; font-size: 24px; letter-spacing: -.045em; line-height: 1.1; }
.about-photo__caption span { color: #d5dde4; font-size: 11px; font-weight: 700; font-family: "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.about-content h2 { max-width: 690px; }
.about-content__lead { max-width: 690px; margin: 24px 0 28px; color: var(--muted); font-size: 15px; line-height: 1.82; }
.about-expertise { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.about-expertise li { display: flex; align-items: center; gap: 12px; min-height: 49px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.022); transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.about-expertise li:hover { transform: translateX(5px); border-color: rgba(163,240,210,.46); background: rgba(163,240,210,.06); }
.about-expertise span { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 8px; color: var(--accent); background: rgba(163,240,210,.1); font: 10px "DM Mono", monospace; }
.about-expertise strong { color: #e9edf3; font-size: 12px; letter-spacing: -.01em; }
.about-content__availability { max-width: 630px; margin: 27px 0 17px; color: #d7dde6; font-size: 13px; font-weight: 700; line-height: 1.65; }
.about-actions { display: flex; flex-wrap: wrap; gap: 11px; }

.process-section { overflow: hidden; }.process-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: clamp(50px, 8vw, 130px); align-items: start; }.process-layout__intro { position: sticky; top: 114px; }.process-layout__intro > p:not(.eyebrow) { margin: 22px 0 30px; color: var(--muted); font-size: 15px; line-height: 1.76; }.process-steps { position: relative; display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }.process-steps::before { content: ""; position: absolute; top: 30px; bottom: 30px; left: 20px; width: 1px; background: linear-gradient(var(--accent), rgba(163,240,210,.1)); }.process-steps li { position: relative; display: grid; grid-template-columns: 41px 1fr; gap: 23px; padding: 0 0 46px; }.process-steps li:last-child { padding-bottom: 0; }.process-steps li > span { width: 41px; height: 41px; z-index: 1; display: grid; place-items: center; border: 1px solid rgba(163,240,210,.6); border-radius: 50%; color: var(--accent); background: var(--bg); font: 10px "DM Mono", monospace; }.process-steps h3 { margin: 6px 0 8px; font-size: 19px; letter-spacing: -.035em; }.process-steps p { max-width: 460px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.faq-section { background: var(--bg-soft); border-block: 1px solid var(--line); }.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 120px); }.faq-layout h2 { max-width: 370px; }.faq-layout > div > p:not(.eyebrow) { max-width: 330px; margin-top: 20px; color: var(--muted); font-size: 14px; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 21px 2px; list-style: none; color: #edf0f6; cursor: pointer; font-size: 14px; font-weight: 700; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary b { color: var(--accent); font-size: 18px; font-weight: 400; transition: transform .24s ease; }.faq-list details[open] summary b { transform: rotate(45deg); }.faq-list details p { max-width: 650px; margin: -3px 35px 21px 2px; color: var(--muted); font-size: 13px; line-height: 1.74; }

.contact-section { padding-top: 110px; }.contact-card { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; overflow: hidden; padding: clamp(31px, 5vw, 66px); border: 1px solid rgba(163,240,210,.33); border-radius: 24px; background: linear-gradient(130deg, #14231f, #111723 56%, #17152a); box-shadow: 0 24px 80px rgba(0,0,0,.31); }.contact-card__glow { position: absolute; width: 470px; height: 470px; top: -285px; left: 29%; border-radius: 50%; background: radial-gradient(circle, rgba(163,240,210,.22), transparent 68%); pointer-events: none; }.contact-card__content, .contact-form { position: relative; z-index: 1; }.contact-card h2 { max-width: 570px; }.contact-card__content > p:not(.eyebrow) { max-width: 500px; margin: 23px 0 30px; color: #c8d1d6; font-size: 15px; line-height: 1.72; }.contact-card__buttons { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }.contact-email { display: grid; gap: 1px; }.contact-email__label { color: #9caab1; font-size: 10px; }.contact-email strong { color: #f2f5f8; font-size: 12px; }.contact-email:hover strong { color: var(--accent); }.contact-form { display: grid; gap: 14px; padding: 23px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: rgba(6,10,17,.4); backdrop-filter: blur(8px); }.contact-form label { display: grid; gap: 5px; color: #d9e0e4; font-size: 11px; font-weight: 700; }.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.15); outline: none; border-radius: 8px; color: #f8fafc; background: rgba(0,0,0,.18); padding: 10px 11px; font-size: 12px; transition: border-color .2s, background .2s, box-shadow .2s; }.contact-form textarea { min-height: 83px; resize: vertical; }.contact-form input::placeholder, .contact-form textarea::placeholder { color: #788490; }.contact-form select { appearance: auto; }.contact-form select option { color: #171c25; background: #fff; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(163,240,210,.7); background: rgba(163,240,210,.045); box-shadow: 0 0 0 3px rgba(163,240,210,.1); }.contact-form .button { margin-top: 1px; }.form-note { margin: -4px 0 0; color: #9eabb4; font-size: 10px; line-height: 1.5; text-align: center; }

.site-footer { padding: 62px 0 21px; background: #07090e; }.site-footer__top { display: grid; grid-template-columns: 1fr 1.2fr auto; align-items: center; gap: 30px; padding-bottom: 38px; }.site-footer__top > p { max-width: 330px; margin: 0; color: var(--muted); font-size: 12px; }.footer-links { display: flex; justify-content: flex-end; gap: 20px; color: #ced4df; font-size: 12px; font-weight: 700; }.footer-links a:hover { color: var(--accent); }.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 10px; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 11px; border: 1px solid rgba(163,240,210,.65); border-radius: 999px; color: var(--accent-dark); background: var(--accent); box-shadow: 0 12px 35px rgba(0,0,0,.27); transition: transform .23s, box-shadow .23s; }.whatsapp-float:hover { transform: translateY(-5px) scale(1.025); box-shadow: 0 17px 40px rgba(0,0,0,.38); }.whatsapp-float svg { position: relative; z-index: 1; width: 23px; height: 23px; }.whatsapp-float__label { position: relative; z-index: 1; font-size: 11px; font-weight: 800; }.whatsapp-float__pulse { position: absolute; inset: -5px; border-radius: inherit; border: 1px solid var(--accent); animation: pulse 2.2s ease-out infinite; }.whatsapp-float:hover .whatsapp-float__pulse { animation-play-state: paused; }@keyframes pulse { 0% { opacity: .55; transform: scale(.86); } 70%,100% { opacity: 0; transform: scale(1.16); } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }.reveal--delay { transition-delay: .12s; }.reveal--delay-sm { transition-delay: .09s; }.reveal--delay-md { transition-delay: .16s; }.reveal--delay-lg { transition-delay: .23s; }

/* Ajuste exclusivo de escritorio: separa el texto de confianza del visual del hero. */
@media (min-width: 971px) {
  .trust-bar p { margin-left: clamp(28px, 3vw, 46px); }
}

@media (max-width: 970px) {
  :root { --header: 72px; }
  .desktop-nav, .header-cta { display: none; }.menu-toggle { display: inline-block; }
  .mobile-menu { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: grid; gap: 20px; padding: 22px 24px 28px; border-bottom: 1px solid var(--line); background: rgba(10,13,20,.98); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .25s ease; }.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }.mobile-menu nav { display: grid; }.mobile-menu nav a { padding: 12px 0; border-bottom: 1px solid var(--line); color: #e8ebf1; font-size: 14px; font-weight: 700; }.mobile-menu__cta { width: 100%; }
  .brand-icon { width: 40px; height: 40px; flex-basis: 40px; border-radius: 11px; }.brand-name { font-size: 16px; }.brand--footer .brand-icon { width: 39px; height: 39px; flex-basis: 39px; }.brand--footer .brand-name { font-size: 17px; }
  .hero { padding-top: 61px; }.hero__grid { grid-template-columns: 1fr; gap: 34px; }.hero__content { max-width: 700px; padding-left: 0; }.hero__visual { min-height: 430px; width: min(100%, 600px); margin-inline: auto; }.trust-bar { margin-top: 44px; padding-top: 24px; }.about-layout { grid-template-columns: 1fr; gap: 37px; }.about-photo { width: min(100%, 620px); }.about-photo__frame { min-height: 440px; }.feature-grid { grid-template-columns: repeat(2,1fr); }.feature-card { min-height: 235px; }.plans-grid { grid-template-columns: 1fr; max-width: 570px; margin: 0 auto; }.plan-card { min-height: auto; }.plan-card__summary { min-height: auto; }.portfolio-grid { grid-template-columns: repeat(2,1fr); }.project-card, .project-card:nth-child(3), .project-card:nth-child(4) { grid-column: span 1; min-height: 300px; }.process-layout, .faq-layout { grid-template-columns: 1fr; gap: 45px; }.process-layout__intro { position: static; }.faq-layout h2 { max-width: 600px; }.faq-layout > div > p:not(.eyebrow) { max-width: 530px; }.contact-card { grid-template-columns: 1fr; gap: 35px; }.site-footer__top { grid-template-columns: 1fr auto; }.site-footer__top > p { grid-column: 1 / -1; grid-row: 2; }.footer-links { justify-content: flex-end; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 40px), var(--max)); }.section { padding: 78px 0; }
  .brand { gap: 9px; }.brand-icon { width: 37px; height: 37px; flex-basis: 37px; border-radius: 10px; }.brand-name { gap: 3px; font-size: 15px; letter-spacing: -.58px; }.brand--footer .brand-icon { width: 39px; height: 39px; flex-basis: 39px; }.brand--footer .brand-name { font-size: 17px; }
  /* Inicio móvil: más aire lateral para que el texto no quede pegado al borde. */
  .hero { min-height: auto; padding: 66px 0 40px; }.hero__content { padding-inline: 8px; }
  .hero__lead { max-width: 35ch; margin-bottom: 29px; padding-left: 15px; font-size: 15px; line-height: 1.82; }
  .hero__lead::before { top: -13px; left: 14px; font-size: 9px; }
  .hero__pills { gap: 7px; margin-top: 25px; }.hero__pills li { padding: 6px 9px; font-size: 10px; }.hero__visual { min-height: 314px; margin-top: 5px; }.browser-window { width: 92%; border-radius: 11px; }.browser-window__body { min-height: 228px; padding: 13px 14px; }.fake-hero { gap: 12px; padding: 26px 2px 20px; }.fake-art { height: 108px; border-radius: 11px; }.fake-art div { width: 119px; height: 119px; border-width: 8px; }.fake-art span { width: 74px; height: 74px; border-width: 12px; }.fake-copy strong { height: 9px; margin: 5px 0; }.fake-copy i { width: 33px; height: 3px; margin-bottom: 6px; }.fake-copy b { width: 46px; height: 15px; margin-top: 11px; }.fake-cards span { height: 30px; }.floating-card { padding: 7px 8px; gap: 6px; }.floating-card__icon, .floating-card__check { width: 20px; height: 20px; border-radius: 6px; font-size: 11px; }.floating-card strong { font-size: 8px; }.floating-card small { font-size: 7px; }.floating-card--one { top: 32px; right: -1px; }.floating-card--two { left: -1px; bottom: 26px; }
  /* Texto de confianza con estilo técnico/monoespaciado para móvil. */
  .trust-bar { display: block; margin-top: 38px; padding-top: 24px; }
  .trust-bar p { max-width: 292px; margin: 0 auto; padding: 0 3px; text-align: center; }
  .trust-bar__items { margin-top: 15px; justify-content: space-between; gap: 4px; font-size: 9px; }.trust-bar__items i { width: 3px; height: 3px; }.intro-strip__content { padding: 46px 0; }.section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }.section-heading--center { margin-bottom: 42px; }.feature-grid { grid-template-columns: 1fr; gap: 11px; }.feature-card { min-height: 188px; padding: 21px; }.feature-card__icon { margin-bottom: 24px; }.plans-grid { gap: 12px; }.plan-card { padding: 26px 21px 22px; }.plan-card__top { margin-bottom: 27px; }.plan-card h3 { font-size: 23px; }.plan-card__price { min-height: 90px; margin-bottom: 21px; padding: 13px 14px; }.plan-card__price strong { font-size: 27px; }.service-notes { grid-template-columns: 1fr; gap: 10px; }.service-note { padding: 17px; }.plans-footnote { margin-top: 15px; font-size: 9px; }.portfolio-grid { grid-template-columns: 1fr; gap: 12px; }.project-card, .project-card:nth-child(3), .project-card:nth-child(4) { grid-column: auto; min-height: 270px; }.project-card__content { padding: 20px; }.project-card h3 { font-size: 21px; }.portfolio-note { align-items: flex-start; border-radius: 13px; padding: 14px; text-align: left; }.about-layout { gap: 27px; }.about-photo__frame { min-height: 345px; border-radius: 17px; }.about-photo__caption { left: 12px; right: 12px; bottom: 12px; padding: 13px 14px; border-radius: 13px; }.about-photo__caption strong { font-size: 20px; }.about-content__lead { margin: 19px 0 23px; font-size: 14px; line-height: 1.75; }.about-expertise { gap: 8px; }.about-expertise li { min-height: 45px; padding: 10px 12px; }.about-content__availability { margin: 22px 0 15px; font-size: 12px; }.about-actions { display: grid; }.about-actions .button { width: 100%; }.process-layout { gap: 35px; }.process-steps li { grid-template-columns: 37px 1fr; gap: 16px; padding-bottom: 34px; }.process-steps li > span { width: 37px; height: 37px; }.process-steps::before { left: 18px; }.faq-layout { gap: 32px; }.faq-list summary { padding: 17px 1px; font-size: 13px; }.faq-list details p { margin-right: 4px; font-size: 12px; }.contact-section { padding-top: 76px; }.contact-card { padding: 27px 18px; border-radius: 18px; }.contact-card__buttons { display: grid; align-items: stretch; }.contact-card__buttons .button { width: 100%; }.contact-email { padding-left: 2px; }.contact-form { padding: 17px; }.site-footer { padding-top: 44px; }.site-footer__top { grid-template-columns: 1fr; gap: 22px; }.site-footer__top > p { grid-column: auto; grid-row: auto; }.footer-links { justify-content: flex-start; flex-wrap: wrap; }.site-footer__bottom { display: grid; gap: 8px; }.whatsapp-float { right: 14px; bottom: 14px; padding: 10px; }.whatsapp-float__label { display: none; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.floating-card, .whatsapp-float__pulse { animation: none; }.project-card__image, .button, .plan-card, .feature-card { transition: none; } }
