/* ============================================
   ARTIVA FOR BUSINESS v8
   Fixes: hero cards closer to center,
   clients band centered, pricing banner fixed,
   palette #1B1B1B dark, orange accent only,
   typography clean no italic in body,
   UX/UI best practices applied
   ============================================ */

:root {
  --bg:           #F5F3F0;
  --white:        #FFFFFF;
  --dark:         #1B1B1B;
  --dark-2:       #2A2A2A;
  --text:         #1B1B1B;
  --text-2:       #3D3D3D;
  --muted:        #808080;
  --muted-2:      #B0AEAB;
  --pink:         #E0197D;
  --pink-h:       #C4136C;
  --pink-light:   #FEF0F6;
  --violet:       #7C3AED;
  --violet-h:     #6D28D9;
  --violet-light: #F3EEFF;
  --orange:       #FF6B35;   /* accent only — use sparingly */
  --orange-light: #FFF3EE;
  --green:        #22c55e;
  --border:       rgba(27,27,27,0.09);
  --border-md:    rgba(27,27,27,0.14);
  --shadow-xs:    0 1px 4px rgba(0,0,0,0.04);
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.06);
  --shadow:       0 6px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.11);
  --font-d: 'Space Grotesk', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --ease:   cubic-bezier(0.4,0,0.2,1);
  --t:      0.2s;
  --r-xs: 8px; --r-sm: 12px; --r: 16px; --r-lg: 20px; --r-xl: 24px; --r-2xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
em { font-style: normal; color: var(--pink); }

/* ============================================
   TIPOGRAFÍA — Sistema base
   --font-d (Space Grotesk): headings, nav, badges, labels, UI elements
   --font-b (DM Sans):       body text, párrafos, descripciones
   Escala: h1 2.4-3.6rem · h2 1.8-2.6rem · h3 1.2-1.6rem · body 1rem · sm 0.75rem
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-d);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
}
p {
  font-family: var(--font-b);
  line-height: 1.7;
}
strong, b { font-weight: 700; }

/* ============================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; gap: 20px;
}
.nav__logo { font-family: var(--font-d); font-size: 1.05rem; font-weight: 600; margin-right: auto; letter-spacing: -0.01em; flex-shrink: 0; }
.l-a { color: var(--dark); }
.l-f { color: var(--muted); font-weight: 400; }
.l-b { color: var(--pink); }

.nav__links { display: flex; gap: 20px; }
.nav__links a {
  font-family: var(--font-d); font-size: 0.85rem; font-weight: 500;
  color: var(--text-2); transition: color var(--t);
  padding: 4px 0; white-space: nowrap;
}
.nav__links a:hover { color: var(--text); }
.nav__links .nav__book { padding: 4px 0; }

.nav__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__book {
  font-family: var(--font-d); font-size: 0.85rem; font-weight: 500;
  color: var(--text-2); transition: color var(--t); white-space: nowrap;
}
.nav__book:hover { color: var(--text); }

.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark); color: #fff;
  font-family: var(--font-d); font-size: 0.875rem; font-weight: 600;
  padding: 9px 20px; border-radius: 100px;
  transition: background var(--t), transform var(--t);
  letter-spacing: -0.01em;
}
.btn-nav:hover { background: var(--dark-2); transform: translateY(-1px); }

/* Emprende+ nav button */
.nav__emprende {
  font-family: var(--font-d); font-size: 0.82rem; font-weight: 700;
  letter-spacing: -0.01em; white-space: nowrap;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(224,25,125,0.3);
  padding: 5px 12px; border-radius: 100px;
  transition: border-color 0.2s;
}
.nav__emprende:hover { border-color: rgba(224,25,125,0.6); }

/* ---- BOTONES GLOBALES ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: #fff;
  font-family: var(--font-d); font-size: 0.9rem; font-weight: 600;
  padding: 13px 28px; border-radius: 100px;
  transition: background var(--t), transform var(--t);
  letter-spacing: -0.01em; white-space: nowrap;
}
.btn-primary:hover { background: var(--dark-2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  font-family: var(--font-d); font-size: 0.9rem; font-weight: 600;
  padding: 12px 28px; border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: border-color var(--t), color var(--t);
  letter-spacing: -0.01em; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--dark); color: var(--dark); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }
.nav__mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 16px 40px 24px; gap: 0; }
.nav__mobile a { color: var(--text-2); font-family: var(--font-d); font-size: 1rem; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--border); transition: color var(--t); display: block; }
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--pink); }
.nav__mobile .btn-nav { margin-top: 12px; justify-content: center; border-radius: var(--r-sm); }
.nav__mobile.open { display: flex; }

/* ============================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 100px;
  font-family: var(--font-d); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all var(--t) var(--ease); white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn--dark    { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn--dark:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--pink    { background: var(--pink); color: #fff; border-color: var(--pink); }
.btn--pink:hover { background: var(--pink-h); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(224,25,125,0.3); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border-md); }
.btn--outline:hover { border-color: var(--dark); background: rgba(27,27,27,0.03); }
.btn--ghost   { background: transparent; color: var(--dark); border-color: var(--border); }
.btn--ghost:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Ghost sobre fondo oscuro */
.btn--ghost-dark   { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn--ghost-dark:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.btn--lg  { padding: 14px 30px; font-size: 0.95rem; }
.btn--sm  { padding: 9px 18px; font-size: 0.84rem; }
.btn--full { width: 100%; justify-content: center; }
.btn-dot  { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.65); }

/* ============================================ OVERLINE */
.overline {
  display: block; font-family: var(--font-d);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.overline--light { color: rgba(255,255,255,0.38); }

/* ============================================
   HERO — Mindset Health style
   Blobs closer to center, tighter card positioning
   ============================================ */
.hero {
  position: relative; background: var(--white);
  min-height: 96vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 110px 40px 90px;
}

/* Gradient blobs — soft, diffused */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(72px); pointer-events: none;
  animation: blob-float 9s ease-in-out infinite;
}
.blob--pink   { width: 480px; height: 400px; background: rgba(224,25,125,0.16); top: -40px; left: -40px; animation-delay: 0s; }
.blob--violet { width: 420px; height: 380px; background: rgba(124,58,237,0.12); top: 5%; right: -60px; animation-delay: 2.5s; }
.blob--teal   { width: 280px; height: 260px; background: rgba(20,184,166,0.08); bottom: 8%; right: 12%; animation-delay: 7s; }
@keyframes blob-float {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(12px,-16px) scale(1.03); }
  70%      { transform: translate(-8px,12px) scale(0.98); }
}

/* Grid lines */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(27,27,27,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,27,27,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ---- Hero center ---- */
.hero__center {
  position: relative; z-index: 2;
  text-align: center; max-width: 680px;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted);
  background: rgba(255,255,255,0.9); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
  box-shadow: var(--shadow-xs); backdrop-filter: blur(8px);
}
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); animation: blink 2.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero__title {
  font-family: var(--font-d);
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.06; letter-spacing: -0.04em; margin-bottom: 20px;
}
/* italic ONLY on hero title em */
.hero__title em { font-style: italic; color: var(--pink); }

.hero__sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.72; margin-bottom: 32px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.hero__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---- Floating cards — CLOSER to center ---- */
.hf { position: absolute; z-index: 3; }
/* Tighter positioning — cards pulled toward center */
.hf--tl { top: 16%; left: 7%; }
.hf--tr { top: 14%; right: 7%; }
.hf--ml { top: 46%; left: 4%; transform: translateY(-50%); }
.hf--mr { top: 42%; right: 4%; transform: translateY(-50%); }
.hf--bl { bottom: 16%; left: 8%; }
.hf--br { bottom: 14%; right: 7%; }

.hfc {
  border-radius: var(--r-lg); padding: 13px 16px;
  min-width: 160px; max-width: 210px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.09), 0 1px 3px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 8px;
}
.hfc--white  { background: var(--white); border: 1px solid var(--border); }
.hfc--dark   { background: var(--dark); }
.hfc--orange { background: var(--orange); color: #fff; }   /* orange used here — specific accent */
.hfc--violet { background: var(--violet); color: #fff; }

.hfc__row { display: flex; align-items: center; gap: 9px; }
.hfc__av  { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.hfc__av--pink   { background: linear-gradient(135deg,var(--pink),#ff8ac0); }
.hfc__av--violet { background: linear-gradient(135deg,var(--violet),#a78bfa); }

.hfc__name { display: block; font-family: var(--font-d); font-size: 0.8rem; font-weight: 600; color: var(--dark); line-height: 1.3; }
.hfc__name--light { color: #fff; }
.hfc__sub  { display: block; font-size: 0.68rem; color: var(--muted); line-height: 1.3; }

.hfc__progress { display: flex; flex-direction: column; gap: 5px; }
.hfc__bar  { height: 4px; background: rgba(27,27,27,0.1); border-radius: 10px; overflow: hidden; }
.hfc__fill { height: 100%; background: var(--pink); border-radius: 10px; }
.hfc__fill--violet { background: var(--violet); }
.hfc__pct  { font-family: var(--font-d); font-size: 0.68rem; font-weight: 700; color: var(--pink); align-self: flex-end; }
.hfc__pct--violet { color: var(--violet); }

.hfc__dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hfc__dot--green { background: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.hfc__dot--pink  { background: var(--pink); box-shadow: 0 0 0 3px rgba(224,25,125,0.2); }

.hfc__badge { display: inline-block; font-family: var(--font-d); font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; align-self: flex-start; }
.hfc__badge--green { background: rgba(34,197,94,0.14); color: #15803d; }
.hfc__badge--pink  { background: rgba(255,255,255,0.15); color: #fff; }

.hfc__stat       { font-family: var(--font-d); font-size: 1.75rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.hfc__stat-label { font-family: var(--font-d); font-size: 0.7rem; font-weight: 400; opacity: 0.8; line-height: 1.4; }

/* ============================================
   CLIENTS BAND — properly centered
   ============================================ */
.clients-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  background: var(--white);
}
.clients-band__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.clients-band__label {
  font-family: var(--font-d); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2);
  white-space: nowrap; flex-shrink: 0;
}
.clients-divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }
.clients-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.clients-list span { font-family: var(--font-d); font-size: 0.875rem; font-weight: 500; color: var(--text-2); }
.clients-list .sep { color: var(--muted-2); font-size: 0.7rem; }

/* ============================================ TAGLINE */
.tagline-section {
  max-width: 1160px; margin: 0 auto;
  padding: 80px 40px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.tagline {
  font-family: var(--font-d);
  font-size: clamp(2rem,4.5vw,3.2rem);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.18; margin-bottom: 16px;
  color: var(--dark);
}
/* italic only on this tagline em */
.tagline em { font-style: italic; color: var(--pink); }
.tagline__sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 520px; margin: 0 auto; }

/* ============================================
   SERVICES — Ruang Edit floating cards
   ============================================ */
.services-section {
  max-width: 1160px; margin: 0 auto; padding: 72px 40px;
  position: relative;
}
.services-section__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 36px; gap: 32px;
}
.services-section__head h2 {
  font-family: var(--font-d); font-size: clamp(1.8rem,3.2vw,2.6rem);
  font-weight: 600; letter-spacing: -0.025em; color: var(--dark);
}
/* italic on section title em only */
.services-section__head h2 em { font-style: italic; }
.services-section__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; max-width: 200px; text-align: right; }

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; margin-bottom: 14px; }
.svc-gcard--lg { grid-row: span 2; }

.svc-gcard {
  background: var(--white); border-radius: var(--r-2xl);
  padding: 26px; border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.12s ease, box-shadow 0.22s ease, border-color var(--t);
}
.svc-gcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-md); }

.svc-gcard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.svc-gcard__meta { display: flex; flex-direction: column; gap: 3px; }
.svc-gcard__num { font-family: var(--font-d); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.svc-gcard__title { font-family: var(--font-d); font-size: 1rem; font-weight: 600; color: var(--text); letter-spacing: -0.01em; line-height: 1.3; }
.svc-gcard--lg .svc-gcard__title { font-size: 1.2rem; }

.svc-gcard__arrow {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
  transition: background var(--t), transform var(--t);
}
.svc-gcard:hover .svc-gcard__arrow { background: var(--pink); transform: rotate(45deg); }

.svc-gcard__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.svc-gcard__ilu { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* Illustration placeholder — dark rounded rect */
.ilu-circle {
  width: 100%; border-radius: var(--r-lg);
  background: var(--dark);
  display: block;
  aspect-ratio: 16/9; position: relative; overflow: hidden;
}
.ilu-circle img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  margin: 0 !important;
  border-radius: 0;
}
.svc-gcard--lg .ilu-circle { aspect-ratio: 4/3; }
.ilu-circle span {
  font-family: var(--font-d); font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,0.28); text-align: center; line-height: 1.6;
  border: 1px dashed rgba(255,255,255,0.12); padding: 8px 18px; border-radius: var(--r-sm);
}
.ilu-circle--web    { background: #111318; }
.ilu-circle--motion { background: #130e1d; }
.ilu-circle--brand  { background: #180d0d; }
.ilu-circle--talents { border-radius: 50%; aspect-ratio: 1; width: 200px; height: 200px; margin: 0 auto; background: var(--dark); }
.ilu-equipo-img { width: 100%; max-width: 340px; height: auto; display: block; margin: 0 auto; }

.svc-gcard__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.stag { font-family: var(--font-d); font-size: 0.65rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.02em; }
.stag--pink    { background: var(--pink-light);   color: var(--pink);   border: 1px solid rgba(224,25,125,0.14); }
.stag--violet  { background: var(--violet-light); color: var(--violet); border: 1px solid rgba(124,58,237,0.14); }
.stag--orange  { background: var(--orange-light); color: var(--orange); border: 1px solid rgba(255,107,53,0.14); }
.stag--green   { background: rgba(34,197,94,0.09); color: #15803d; border: 1px solid rgba(34,197,94,0.18); }
.stag--neutral { background: var(--bg); color: var(--text-2); border: 1px solid var(--border); }

/* More services strip */
.svc-more {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.svc-more__chips { display: flex; gap: 7px; flex-wrap: wrap; }
.svc-more__chip {
  font-family: var(--font-d); font-size: 0.78rem; font-weight: 500;
  color: var(--text-2); background: var(--bg); border: 1px solid var(--border);
  padding: 5px 13px; border-radius: 100px;
}
.svc-more__chip--more { color: var(--pink); background: var(--pink-light); border-color: rgba(224,25,125,0.14); font-weight: 600; }

/* ============================================ RESULTS */
.results-section {
  max-width: 1160px; margin: 0 auto; padding: 72px 40px; border-top: 1px solid var(--border);
  position: relative;
}
.results-section__head { text-align: center; margin-bottom: 36px; }
.results-section__head h2 { font-family: var(--font-d); font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 600; letter-spacing: -0.025em; color: var(--dark); }
.results-section__head h2 em { font-style: italic; }
.results-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 12px; }
.res-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.res-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.res-card--pink   { background: var(--pink);   border-color: transparent; }
.res-card--violet { background: var(--violet); border-color: transparent; }
.res-num {
  font-family: var(--font-d); font-size: 2.4rem; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1; color: var(--dark);
}
.res-card--pink .res-num, .res-card--violet .res-num { color: #fff; }
.res-label { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }
.res-card--pink .res-label, .res-card--violet .res-label { color: rgba(255,255,255,0.72); }
.res-deco { position: absolute; bottom: 12px; right: 14px; font-size: 1.4rem; color: rgba(255,255,255,0.18); }

/* ============================================ PORTFOLIO */
.portfolio-section {
  max-width: 1160px; margin: 0 auto; padding: 0 40px 72px;
  position: relative;
}
.portfolio-section__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; gap: 16px; }
.portfolio-section__head h2 { font-family: var(--font-d); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 600; letter-spacing: -0.025em; color: var(--dark); }
.portfolio-section__head h2 em { font-style: italic; }
.port-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.port-card--lg { grid-row: span 2; }
.port-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-2xl); overflow: hidden; transition: transform var(--t), box-shadow var(--t); }
.port-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.port-card__visual { min-height: 160px; position: relative; display: flex; align-items: center; justify-content: center; padding: 24px; }
.port-card--lg .port-card__visual { min-height: 300px; }
.port-card__visual--1 { background: #111218; }
.port-card__visual--2 { background: #180610; }
.port-card__visual--3 { background: #090e1a; }
.port-ilu-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: transparent;
  border: none;
  display: block;
}
.port-ilu-circle img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.port-card--lg .port-ilu-circle { width: 100%; height: 100%; }
.port-ilu-circle span { font-family: var(--font-d); font-size: 0.6rem; font-weight: 500; color: rgba(255,255,255,0.28); text-align: center; line-height: 1.5; }
.port-card__info { padding: 16px 20px 20px; }
.port-card--lg .port-card__info { padding: 20px 24px 24px; }
.port-tag { display: inline-block; font-family: var(--font-d); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink); background: var(--pink-light); border: 1px solid rgba(224,25,125,0.12); padding: 3px 8px; border-radius: 100px; margin-bottom: 6px; }
.port-tag--violet { color: var(--violet); background: var(--violet-light); border-color: rgba(124,58,237,0.12); }
.port-tag--orange { color: var(--orange); background: var(--orange-light); border-color: rgba(255,107,53,0.12); }
.port-card__info h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 600; margin-bottom: 2px; letter-spacing: -0.01em; }
.port-card--lg .port-card__info h3 { font-size: 1.15rem; }
.port-card__info p { font-size: 0.8rem; color: var(--muted); }

/* ============================================ TALENTS */
.talents-section {
  max-width: 1160px; margin: 0 auto; padding: 72px 40px;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: center;
  border-top: 1px solid var(--border);
}
.ilu-talents-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.talent-float-card {
  display: flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 16px; box-shadow: var(--shadow-sm);
  font-family: var(--font-d); font-size: 0.78rem; font-weight: 500; color: var(--text-2);
}
.talent-pill { display: inline-block; font-family: var(--font-d); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); background: var(--violet-light); border: 1px solid rgba(124,58,237,0.15); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.talents-section__right h2 { font-family: var(--font-d); font-size: clamp(1.5rem,2.6vw,2rem); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 10px; color: var(--dark); }
.talents-section__right h2 em { font-style: italic; }
.talents-section__right p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.t-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; transition: border-color var(--t), transform var(--t); }
.t-item:hover { border-color: var(--pink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.t-item__head { display: flex; align-items: center; gap: 8px; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.t-dot--green  { background: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,0.16); }
.t-dot--pink   { background: var(--pink);   box-shadow: 0 0 0 3px rgba(224,25,125,0.16); }
.t-dot--orange { background: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,0.16); }
.t-role { font-family: var(--font-d); font-size: 0.8rem; font-weight: 500; color: var(--text); }
.t-tag { font-family: var(--font-d); font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; white-space: nowrap; }
.t-tag--green  { background: rgba(34,197,94,0.09); color: #15803d; }
.t-tag--pink   { background: rgba(224,25,125,0.09); color: var(--pink); }
.t-tag--orange { background: rgba(255,107,53,0.09); color: #c0450f; }

/* ============================================
   PRICING — clean, no distorted shapes
   ============================================ */
.pricing-section { max-width: 1160px; margin: 0 auto; padding: 72px 40px; border-top: 1px solid var(--border); }
.pricing-section__head { text-align: center; margin-bottom: 48px; }
.pricing-section__head h2 { font-family: var(--font-d); font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 10px; color: var(--dark); }
.pricing-section__head h2 em { font-style: italic; }
.pricing-section__head p { font-size: 0.92rem; color: var(--muted); }

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; max-width: 760px; margin: 0 auto 16px;
}
.price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-2xl); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; transition: transform var(--t), box-shadow var(--t);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.price-card--featured { background: var(--dark); border-color: transparent; }

.price-card__popular {
  position: absolute; top: -1px; right: 24px;
  font-family: var(--font-d); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark); background: #FFE14D; padding: 5px 12px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.price-card__icon { font-size: 1.3rem; color: var(--muted); line-height: 1; }
.price-card--featured .price-card__icon { color: rgba(255,255,255,0.35); }
.price-card__icon--growth { color: var(--pink); }

.price-card__name { font-family: var(--font-d); font-size: 1.25rem; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.price-card--featured .price-card__name { color: #fff; }
.price-card__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.58; margin-top: -6px; }
.price-card--featured .price-card__desc { color: rgba(255,255,255,0.48); }

.price-card__price { display: flex; align-items: baseline; gap: 4px; }
.price-card__amount { font-family: var(--font-d); font-size: 2.2rem; font-weight: 700; letter-spacing: -0.04em; color: var(--text); }
.price-card--featured .price-card__amount { color: #fff; }
.price-card__period { font-size: 0.82rem; color: var(--muted); }
.price-card--featured .price-card__period { color: rgba(255,255,255,0.42); }

.price-card__list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-card__list li { font-size: 0.875rem; color: var(--text-2); display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.price-card__list li::before { content: '✓'; font-size: 0.75rem; color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-card--featured .price-card__list li { color: rgba(255,255,255,0.72); }
.price-card--featured .price-card__list li::before { color: #4ade80; }

/* Pricing consult banner — clean gradient, no distorted shapes */
.pricing-cta {
  max-width: 760px; margin: 0 auto;
  border-radius: var(--r-2xl); overflow: hidden;
  border: 1px solid var(--border);
}
.pricing-cta__bg {
  /* Clean linear gradient — no distortion */
  background: linear-gradient(135deg,
    rgba(224,25,125,0.12) 0%,
    rgba(124,58,237,0.14) 40%,
    rgba(20,184,166,0.1) 75%,
    rgba(255,107,53,0.1) 100%
  );
  padding: 24px 28px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
}
.pricing-cta__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg,var(--pink),var(--violet));
  flex-shrink: 0; border: 2px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
}
.pricing-cta__text { flex: 1; min-width: 180px; }
.pricing-cta__text h4 { font-family: var(--font-d); font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 2px; letter-spacing: -0.01em; }
.pricing-cta__text p { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; }

/* ============================================ CTA FINAL */
.cta-final__inner {
  background: var(--dark); padding: 100px 40px;
  text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-glow {
  position: absolute; width: 560px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,25,125,0.18) 0%, rgba(124,58,237,0.12) 50%, transparent 70%);
  filter: blur(70px); top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-deco__shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.03); }
.cta-deco__shape--1 { width: 480px; height: 480px; top: -180px; right: -100px; }
.cta-deco__shape--2 { width: 320px; height: 320px; bottom: -100px; left: -60px; }
.cta-deco__shape--3 { width: 180px; height: 180px; top: 10%; left: 8%; }
.cta-final__title {
  font-family: var(--font-d); font-size: clamp(2rem,4vw,3rem);
  font-weight: 600; letter-spacing: -0.03em; color: #fff; line-height: 1.18;
  position: relative; z-index: 1;
}
.cta-final__title em { font-style: italic; color: var(--pink); }
.cta-final__inner p { font-size: 0.95rem; color: rgba(255,255,255,0.4); line-height: 1.72; position: relative; z-index: 1; }
.cta-final__btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 8px; position: relative; z-index: 1; }

/* ============================================ FOOTER */
.footer { background: var(--dark); color: #fff; }
.footer__inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px; padding: 60px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__logo { font-family: var(--font-d); font-size: 1rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.footer__logo .l-a { color: #ffffff; }
.footer__logo .l-f { color: rgba(255,255,255,0.45); font-weight: 400; }
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,0.34); line-height: 1.65; margin-bottom: 18px; }
.footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__social a { font-family: var(--font-d); font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.42); padding: 6px 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; transition: all var(--t); }
.footer__social a:hover { border-color: var(--pink); color: var(--pink); }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer__col h5 { font-family: var(--font-d); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.24); margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.46); margin-bottom: 8px; transition: color var(--t); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-family: var(--font-d); font-size: 0.74rem; color: rgba(255,255,255,0.24); flex-wrap: wrap; gap: 8px; }
.footer__bottom a { color: var(--pink); }

/* ============================================ REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   V9 ENHANCEMENTS
   A: Noise/grain, gradient borders, tinted shadows
   C: 3D tilt on cards, animated entrance
   Visual depth throughout
   ============================================ */

/* ---- 1. NOISE / GRAIN OVERLAY ---- */
/* SVG noise filter rendered as data URI */

/* Body-wide subtle grain — very faint */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ---- 2. GRADIENT BORDERS on service cards ---- */

.svc-gcard::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-2xl);
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(224,25,125,0.25) 0%,
    rgba(124,58,237,0.15) 50%,
    rgba(27,27,27,0.06) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity var(--t);
}
.svc-gcard:hover::before {
  background: linear-gradient(135deg,
    rgba(224,25,125,0.6) 0%,
    rgba(124,58,237,0.4) 50%,
    rgba(27,27,27,0.1) 100%
  );
}

/* ---- 3. TINTED SHADOWS ---- */
.svc-gcard:hover {
  box-shadow:
    0 0 0 0 transparent,
    0 8px 32px rgba(224,25,125,0.1),
    0 24px 56px rgba(124,58,237,0.08) !important;
}

/* Result cards — tinted shadows on colored ones */
.res-card--pink:hover {
  box-shadow: 0 12px 40px rgba(224,25,125,0.35) !important;
}
.res-card--violet:hover {
  box-shadow: 0 12px 40px rgba(124,58,237,0.35) !important;
}

/* Port cards — subtle tint */
.port-card:hover {
  box-shadow: 0 8px 32px rgba(224,25,125,0.08), 0 24px 56px rgba(27,27,27,0.12) !important;
}

/* ---- 4. 3D TILT on service cards ---- */

/* Disable tilt transition during mouse move, enable on leave */
.svc-gcard.tilt-active {
  transition: none !important;
}
.svc-gcard.tilt-leave {
  transition: transform 0.4s ease, box-shadow 0.22s ease !important;
}

/* ---- 5. WATERMARK NUMBERS — removed (cluttered with arrow) ---- */
.svc-gcard__watermark { display: none; }

/* ---- 6. DARK TAGLINE SECTION with glows ---- */
.tagline-section--dark {
  background: var(--dark) !important;
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  max-width: 1160px;
  margin: 16px auto 0;
}
.tagline-section--dark .tagline {
  color: #fff;
}
.tagline-section--dark .tagline em {
  color: var(--pink);
}
.tagline__sub--light {
  color: rgba(255,255,255,0.44) !important;
}

/* Glowing orbs inside dark tagline */
.tagline-section__glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.tagline-section__glow--1 {
  width: 500px; height: 350px;
  background: radial-gradient(circle, rgba(224,25,125,0.22), transparent);
  top: -80px; left: -80px;
}
.tagline-section__glow--2 {
  width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.18), transparent);
  bottom: -60px; right: -60px;
}

/* ---- 7. HERO TITLE — staggered entrance animation ---- */
.hero__title {
  animation: hero-title-in 0.8s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 0.1s;
}
.hero__sub {
  animation: hero-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 0.3s;
}
.hero__tag {
  animation: hero-fade-up 0.6s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 0s;
}
.hero__actions {
  animation: hero-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 0.45s;
}
@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(28px) scale(0.98); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Floating cards entrance */
/* hf entrance animations — see animation-name overrides below */
@keyframes float-in-left {
  from { opacity: 0; transform: translateX(-24px) translateY(-50%); }
  to   { opacity: 1; transform: translateX(0) translateY(-50%); }
}
@keyframes float-in-left-no-y {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float-in-right {
  from { opacity: 0; transform: translateX(24px) translateY(-50%); }
  to   { opacity: 1; transform: translateX(0) translateY(-50%); }
}
@keyframes float-in-right-no-y {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* Cards without translateY(-50%) */
.hf--tl { animation-name: float-in-left-no-y; }
.hf--bl { animation-name: float-in-left-no-y; }
.hf--tr { animation-name: float-in-right-no-y; }
.hf--br { animation-name: float-in-right-no-y; }

/* ---- 8. PRICE CARD — gradient border (featured) ---- */

.price-card--featured::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, rgba(224,25,125,0.5), rgba(124,58,237,0.4), transparent);
  padding: 1.5px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---- 9. HFC cards — float animation ---- */
.hfc--white, .hfc--dark, .hfc--orange, .hfc--violet {
  animation: hfc-float 5s ease-in-out infinite;
}
.hf--tl .hfc { animation-delay: 0s; }
.hf--tr .hfc { animation-delay: 1.2s; }
.hf--ml .hfc { animation-delay: 2.4s; }
.hf--mr .hfc { animation-delay: 0.6s; }
.hf--bl .hfc { animation-delay: 1.8s; }
.hf--br .hfc { animation-delay: 3s; }
@keyframes hfc-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* ---- 10. RESULT numbers — count-up feel via CSS ---- */
.res-num {
  background: linear-gradient(135deg, currentColor 0%, currentColor 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.res-card--pink   .res-num { background: linear-gradient(135deg,#fff,rgba(255,255,255,0.85)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.res-card--violet .res-num { background: linear-gradient(135deg,#fff,rgba(255,255,255,0.85)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* ---- 11. NAV — subtle bottom glow on scroll ---- */
.nav.scrolled {
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(27,27,27,0.06);
}

/* ---- Respect reduced motion ---- */


/* ---- Tagline dark section — responsive margin ---- */



/* ============================================
   ILLUSTRATION FLOAT ZONES
   Placeholder areas for custom illustrations
   Replace 

/* Sizes — vertical proportions for character illustrations */

/* ============================================
   img sizes por contenedor — ajustadas al layout
   ============================================ */

/* ilu-img — nunca deformar, solo width, height siempre auto */
.ilu-img {
  display: block;
  height: auto;
  object-fit: contain;
}

/* HERO derecha — protagonista */
.ilu-float--hero-r .ilu-img  { width: 280px; }

/* HERO izquierda — acento sutil */
.ilu-float--hero-l .ilu-img  { width: 120px; opacity: 0.6; }

/* CTA derecha — visible sobre fondo oscuro */
.ilu-float--cta-r .ilu-img   { width: 200px; opacity: 0.8; }

/* CTA izquierda — acento secundario */
.ilu-float--cta-l .ilu-img   { width: 120px; opacity: 0.5; }

/* servicios.html hero y cta — sin height fijo */
.svc-ilu img {
  display: block;
  height: auto;
  object-fit: contain;
}
.svc-ilu--hero-r img  { width: 220px; }
.svc-ilu--cta-l img   { width: 180px; opacity: 0.85; }
.svc-ilu--cta-r img   { width: 120px; opacity: 0.5; }

/* Labels */

/* ---- HERO illustrations ---- */
.ilu-float--hero-r {
  position: absolute;
  right: 2%; top: 50%;
  transform: translateY(-52%);
  z-index: 1; pointer-events: none;
  animation: ilu-float-y 6s ease-in-out infinite;
  animation-delay: 0.5s;
}
.ilu-float--hero-l {
  position: absolute;
  left: 2%; bottom: 4%;
  z-index: 1; pointer-events: none;
  animation: ilu-float-y 7s ease-in-out infinite;
  animation-delay: 2s;
}

/* ---- SERVICES illustration ---- */


/* ---- RESULTS illustration ---- */


/* ---- PORTFOLIO illustration ---- */


/* ---- CTA illustrations ---- */

.ilu-float--cta-r {
  position: absolute;
  right: 2%; top: 50%;
  transform: translateY(-50%);
  z-index: 1; pointer-events: none;
  animation: ilu-float-y 6.5s ease-in-out infinite;
  animation-delay: 1.5s;
}
.ilu-float--cta-l {
  position: absolute;
  left: 2%; bottom: 8%;
  z-index: 1; pointer-events: none;
  animation: ilu-float-y 8s ease-in-out infinite;
  animation-delay: 4s;
}

/* Float animation */
@keyframes ilu-float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
/* Correct for elements with existing translateY */
.ilu-float--hero-r { animation-name: ilu-float-hero-r; }
@keyframes ilu-float-hero-r {
  0%,100% { transform: translateY(calc(-50% + 0px)); }
  50%      { transform: translateY(calc(-50% - 14px)); }
}
@keyframes ilu-float-results-l {
  0%,100% { transform: translateY(calc(-50% + 0px)); opacity: 0.6; }
  50%      { transform: translateY(calc(-50% - 14px)); opacity: 0.6; }
}
.ilu-float--cta-r { animation-name: ilu-float-cta-r; }
@keyframes ilu-float-cta-r {
  0%,100% { transform: translateY(calc(-50% + 0px)); }
  50%      { transform: translateY(calc(-50% - 10px)); }
}

/* Hide on mobile — avoid layout issues before real illustrations */


/* ---- NAV premium link (Apps & IA) ---- */
.nav__premium {
  background: linear-gradient(90deg, #E0197D, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600 !important;
}
.nav__premium:hover { opacity: 0.8; }

/* ============================================
   RESPONSIVE — index.html
   Breakpoints: 1024px / 900px / 600px / 400px
   ============================================ */

/* ---- TABLET 1024px ---- */


/* ---- MOBILE 900px ---- */


/* ---- MOBILE PEQUEÑO 600px ---- */


/* ---- MOBILE MUY PEQUEÑO 400px ---- */

/* ============================================
   RESPONSIVE CONSOLIDADO
   ============================================ */

@media (prefers-reduced-motion: reduce) {

  .hero__title, .hero__sub, .hero__tag, .hero__actions,
  .hf--tl, .hf--tr, .hf--ml, .hf--mr, .hf--bl, .hf--br,
  .hfc--white, .hfc--dark, .hfc--orange, .hfc--violet {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .svc-gcard { transition: box-shadow var(--t) !important; }
}

@media (max-width: 1240px) {

  .tagline-section--dark { margin: 16px 40px 0; }
}

@media (max-width: 1024px) {

  .hf--tl, .hf--tr { display: none; }
  .hf--ml { left: 1%; }
  .hf--mr { right: 1%; }

  /* Hero floating cards — ocultar los laterales */
  .hf--tl, .hf--tr, .hf--bl, .hf--br { display: none; }

  /* Hero center — más espacio */
  .hero__center { padding: 0 20px; }

  /* Services grid — 2 columnas */
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-gcard--lg { grid-column: span 2; }

  /* Portfolio grid — 2 columnas */
  .port-grid { grid-template-columns: 1fr 1fr; }

  /* Talents — reducir gap */
  .talents-section { gap: 40px; }
  .talent-float-card { display: none; }
}

@media (max-width: 900px) {

  .nav__links, .nav__right { display: none; }
  .burger { display: flex; }
  .hf { display: none; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-gcard--lg { grid-row: span 1; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: 1fr; }
  .port-card--lg { grid-row: span 1; }
  .talents-section { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: repeat(2,1fr); }
  .services-section__head { flex-direction: column; }
  .services-section__desc { text-align: left; max-width: none; }

  .ilu-float--hero-r,
  .ilu-float--hero-l { display: none; }
  .ilu-float--cta-r  { display: none; }
  .ilu-float--cta-l  { display: none; }
  .ilu-float--hero-r  { display: none; }
  .ilu-float--hero-l  { display: none; }
  .ilu-circle         { display: none; }
  .svc-gcard__ilu     { display: none; }
  .ilu-talents-wrap   { display: none; }
  .port-ilu-circle    { display: none; }

  /* NAV */
  .nav__inner { padding: 0 24px; height: 60px; }
  .nav__logo { font-size: 0.95rem; }

  /* Hero */
  .hero { min-height: auto; padding: 80px 24px 48px; }
  .hero__center { max-width: 100%; text-align: center; }
  .hero__title { font-size: clamp(2.4rem, 8vw, 3.6rem); }
  .hero__sub { font-size: 0.95rem; margin: 0 auto 32px; }
  .hero__actions { justify-content: center; flex-wrap: wrap; }
  .hero-grid { display: none; }
  .hfc { display: none; }
  .hf { display: none; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; }
  .svc-gcard--lg { grid-column: span 1; grid-row: span 1; }
  .svc-gcard__watermark { font-size: 5rem; }
  .svc-more { flex-wrap: wrap; gap: 10px; }
  .svc-more__chips { flex-wrap: wrap; }
  .services-section__head { flex-direction: column; gap: 16px; }
  .services-section__desc { max-width: 100%; }

  /* Results */
  .results-section__head { text-align: center; }
  .results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Portfolio */
  .port-grid { grid-template-columns: 1fr; }
  .port-card--lg { grid-row: span 1; }
  .port-card { flex-direction: column; }
  .port-card__visual { min-height: 200px; }
  .portfolio-section__head { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Talents */
  .talents-section { grid-template-columns: 1fr; gap: 40px; }
  /* talents right — visible en mobile, izquierda ya se oculta via ilu-talents-wrap */

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-section__head { text-align: center; }
  .pricing-cta { flex-direction: column; text-align: center; gap: 16px; }
  .pricing-cta__avatar { display: none; }

  /* CTA */
  
  .cta-final__title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .cta-final__btns { flex-direction: column; align-items: stretch; }
  .cta-deco { display: none; }
  .cta-glow { display: none; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__brand p { max-width: 320px; }
}

@media (max-width: 600px) {

  .nav__inner, .footer__inner { padding: 0 20px; }

  .clients-band { padding: 16px 20px; }
  .tagline-section, .services-section, .results-section,
  .portfolio-section, .talents-section, .pricing-section { padding-left: 20px; padding-right: 20px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .results-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  
  .cta-final__btns { flex-direction: column; align-items: stretch; }
  .pricing-cta__bg { flex-direction: column; text-align: center; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .svc-more { flex-direction: column; align-items: flex-start; }
  .port-grid { grid-template-columns: 1fr; }

  .tagline-section--dark { margin: 12px 16px 0; }

  /* Nav */
  .nav__inner { padding: 0 16px; }

  /* Hero */
  .hero { padding: 90px 16px 48px; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: -0.03em; }
  .hero__tag { font-size: 0.7rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn-primary,
  .hero__actions .btn-outline { text-align: center; }

  /* Services */
  
  .svc-gcard { padding: 24px 20px; }
  .svc-gcard__title { font-size: 1.1rem; }
  .svc-more__chip { font-size: 0.7rem; padding: 5px 10px; }

  /* Results */
  
  .results-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Portfolio */
  
  .port-card__info { padding: 20px 16px; }
  .port-tag { font-size: 0.65rem; }

  /* Talents */
  .talents-section { padding: 48px 16px; }
  .talent-pill { font-size: 0.7rem; }

  /* Pricing */
  .pricing-section { padding: 48px 16px; }
  .pricing-cta__text { font-size: 0.85rem; }

  /* CTA */
  .cta-final { padding: 48px 16px; }
  

  /* Footer */
  .footer__inner { padding: 40px 16px; }
  .footer__cols { grid-template-columns: 1fr; gap: 20px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.75rem; }
  .footer__social { gap: 12px; }

  /* Tagline */
  .tagline-section--dark { margin: 8px 12px 0; border-radius: 16px; }
}

@media (max-width: 400px) {

  .hero__title { font-size: 1.9rem; }
  .nav__logo { font-size: 0.85rem; }
  .svc-gcard__num { font-size: 0.6rem; }
}

/* ============================================
   FIXES v9 — clases faltantes
   ============================================ */

/* port-tag--web — mismo estilo que port-tag--violet */
.port-tag--web {
  color: var(--violet);
  background: var(--violet-light);
  border-color: rgba(124,58,237,0.12);
}

/* blob--orange */
.blob--orange {
  width: 320px; height: 280px;
  background: rgba(255,107,53,0.09);
  bottom: 10%; left: 20%;
  animation-delay: 5s;
}

/* nav__active — página actual */
.nav__links .nav__active,
.nav__active {
  color: var(--text) !important;
  position: relative;
}
.nav__links .nav__active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
}
/* nav__emprende activo — subrayado pink */
.nav__emprende.nav__active {
  border-color: rgba(224,25,125,0.6);
}
/* nav__premium activo — mantiene gradiente, borde sutil */
.nav__premium.nav__active {
  opacity: 0.85;
  text-decoration: underline;
  text-decoration-color: rgba(224,25,125,0.5);
  text-underline-offset: 3px;
}
