/* ============================================================
   AIGENCI — brand-faithful (sticker aesthetic, dark purple)
   ============================================================ */
:root {
  --purple:        #6F4C9E;
  --purple-deep:   #312740;
  --purple-ink:    #1F1829;
  --purple-hero:   #2E2340;
  --indigo-soft:   #EEECFF;
  --indigo-soft-2: #F6F4FF;
  --pink:          #FD327B;
  --pink-ink:      #D4165B;
  --cyan:          #5FCFFA;
  --cyan-deep:     #2FA9D6;
  --violet:        #9B5CF0;
  --white:         #FFFFFF;
  --ink:           #1B1124;
  --ink-70:        #4a3d58;
  --ink-50:        #7b7188;
  --ink-30:        #b7b0bf;
  --rule:          #e5e1ed;
  --rule-soft:     #efecf4;

  --font-display: "Nunito", system-ui, sans-serif;
  --font-body:    "Nunito", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --sp-4: 16px; --sp-5: 24px; --sp-6: 32px; --sp-7: 48px;
  --sp-8: 64px; --sp-9: 96px; --sp-10: 128px;

  --max: 1280px;
  --max-narrow: 960px;

  --radius-sm: 12px; --radius-md: 18px; --radius-lg: 28px; --radius-xl: 36px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--sp-6); }
.wrap-n { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-9) 0; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(44px, 6.2vw, 84px); line-height: 1.02; }
h2 { font-size: clamp(34px, 4.2vw, 56px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 800; }
h4 { font-size: 20px; font-weight: 800; }
p  { text-wrap: pretty; }

.pink { color: var(--pink); }
.cyan { color: var(--cyan); }
.purple { color: var(--purple); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--pink);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }
.eyebrow.on-dark { color: var(--cyan); }
.eyebrow.on-dark .dot { background: var(--cyan); }

/* ============================================================
   Buttons — pill, bold, with solid shadow
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 800;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arrow { display: inline-block; transition: transform 180ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--pink); color: white; }
.btn-primary:hover { background: var(--pink-ink); transform: translateY(-2px); box-shadow: 0 10px 0 -2px rgba(0,0,0,0.15); }

.btn-cyan { background: var(--cyan); color: var(--purple-deep); }
.btn-cyan:hover { background: var(--cyan-deep); color: white; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); border-width: 2px; }
.btn-ghost:hover { background: var(--ink); color: white; }

.btn-ghost-dark { background: transparent; color: white; border-color: white; border-width: 2px; }
.btn-ghost-dark:hover { background: white; color: var(--purple-deep); }

/* ============================================================
   Stickers (decorative SVG flourishes)
   ============================================================ */
.sticker { position: absolute; pointer-events: none; user-select: none; }
.sticker.star    { color: var(--pink); }
.sticker.sparkle { color: var(--cyan); }
.sticker.wave    { color: var(--cyan); }
.sticker.dot     { color: var(--pink); }
.sticker.squig   { color: var(--pink); }
.sticker svg { display: block; width: 100%; height: 100%; }

@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-8px) rotate(calc(var(--r,0deg) + 4deg)); } }
.sticker.anim { animation: floaty 6s ease-in-out infinite; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--purple-hero);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--sp-6);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 900; color: white; }
.nav-logo img { width: 36px; height: 36px; }
.nav-logo .mark { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14.5px; color: rgba(255,255,255,0.8); font-weight: 700; padding: 6px 0; }
.nav-links a:hover { color: white; }
.nav-links a.has-menu::after { content: "▾"; margin-left: 4px; font-size: 10px; opacity: 0.6; }
.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-right .btn { padding: 12px 22px; font-size: 14px; }

.menu-panel {
  position: absolute; top: 100%; left: 50%;
  margin-top: 14px;
  background: rgba(38,29,54,0.97);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 9px;
  min-width: 290px;
  backdrop-filter: blur(30px) saturate(1.4); -webkit-backdrop-filter: blur(30px) saturate(1.4);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 36px 80px -24px rgba(0,0,0,0.78);
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  z-index: 30;
}
.menu-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav-item { position: relative; }
.nav-item:hover .menu-panel,
.nav-item.open .menu-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); transition: opacity 200ms ease, transform 200ms ease, visibility 0s; }
.menu-item {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 12px; border-radius: 13px; color: #fff;
  transition: background 160ms ease;
}
.menu-item:hover { background: rgba(255,255,255,0.08); }
.menu-item .mi-ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  background: rgba(95,207,250,0.16); border: 1px solid rgba(95,207,250,0.3); color: var(--cyan);
}
.menu-item:nth-child(2) .mi-ic { background: rgba(253,50,123,0.18); border-color: rgba(253,50,123,0.34); color: var(--pink); }
.menu-item:nth-child(3) .mi-ic { background: rgba(185,139,255,0.18); border-color: rgba(185,139,255,0.34); color: #B98BFF; }
.menu-item:nth-child(4) .mi-ic { background: rgba(95,207,250,0.16); border-color: rgba(95,207,250,0.3); color: var(--cyan); }
.menu-item .mi-tx { display: flex; flex-direction: column; min-width: 0; }
.menu-item .mi-title { font-weight: 800; font-size: 14.5px; color: #fff; }
.menu-item .mi-sub { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 1px; font-weight: 600; }
.menu-item .mi-go { margin-left: auto; opacity: 0; transform: translateX(-4px); transition: 160ms ease; color: rgba(255,255,255,0.7); font-size: 15px; }
.menu-item:hover .mi-go { opacity: 1; transform: translateX(0); }

.nav-burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.3); border-radius: 12px; background: transparent; color: white; cursor: pointer; }
.nav-mobile { display: none; }
@media (max-width: 900px) {
  .nav-links, .nav-right .btn-ghost-dark { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--purple-hero); padding: 16px var(--sp-6) 24px; }
  .nav-mobile.open a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); font-weight: 700; }
  .nav-mobile.open .btn { width: 100%; justify-content: center; margin-top: 12px; }
}

/* ============================================================
   Hero — dark purple with stickers
   ============================================================ */
.hero {
  background: var(--purple-hero);
  color: white;
  padding: 70px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 15% 20%, rgba(111,76,158,0.4), transparent 60%),
    radial-gradient(400px 300px at 85% 70%, rgba(253,50,123,0.14), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero-eyebrow {
  display: inline-flex; gap: 10px; padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  color: white; margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); align-self: center; }
.hero h1 { color: white; font-size: clamp(52px, 7.4vw, 104px); letter-spacing: -0.03em; line-height: 0.98; }
.hero h1 em { font-style: normal; color: var(--pink); }
.hero-lead {
  max-width: 600px; margin: 32px auto 40px;
  font-size: clamp(17px, 1.35vw, 19px);
  color: rgba(255,255,255,0.8);
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  margin-top: 72px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.hero-stats .s { text-align: center; }
.hero-stats .num { font-size: clamp(30px, 3.2vw, 44px); font-weight: 900; color: white; letter-spacing: -0.02em; line-height: 1; }
.hero-stats .num span { color: var(--pink); }
.hero-stats .lbl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 10px; font-weight: 500; line-height: 1.3; }
@media (max-width: 900px) { .hero-stats { grid-template-columns: repeat(2,1fr); } }

/* Hero stickers positioning */
.hero-sticker-1 { top: 18%; left: 6%; width: 70px; height: 70px; --r: -12deg; transform: rotate(-12deg); }
.hero-sticker-2 { top: 14%; right: 8%; width: 90px; height: 90px; --r: 18deg; transform: rotate(18deg); }
.hero-sticker-3 { top: 60%; left: 4%; width: 50px; height: 50px; --r: 25deg; transform: rotate(25deg); }
.hero-sticker-4 { top: 55%; right: 6%; width: 60px; height: 60px; --r: -20deg; transform: rotate(-20deg); }
.hero-sticker-5 { top: 38%; right: 14%; width: 40px; height: 40px; }
.hero-sticker-6 { top: 34%; left: 12%; width: 55px; height: 55px; --r: 10deg; transform: rotate(10deg); }

/* ============================================================
   Bar section (under hero) — rainbow chip with equation
   ============================================================ */
.equation-bar {
  background: var(--indigo-soft);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.equation {
  display: inline-flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center;
  font-size: clamp(20px, 2vw, 30px); font-weight: 900;
  color: var(--purple-deep);
}
.equation .plus, .equation .eq { color: var(--pink); font-weight: 900; font-size: 1.2em; }
.equation .token { padding: 8px 20px; border-radius: 999px; background: white; border: 2px solid var(--purple-deep); }
.equation .token.pink { background: var(--pink); color: white; border-color: var(--pink); }
.equation .token.cyan { background: var(--cyan); color: var(--purple-deep); border-color: var(--cyan); }

/* ============================================================
   Problema — sticker-cards
   ============================================================ */
.problema { background: white; }
.problema-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.problema-card {
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.problema-card .num { font-weight: 900; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.problema-card h3 { line-height: 1.2; }
.problema-card p { font-size: 15px; margin: 0; }
.problema-card.a { background: var(--indigo-soft); color: var(--purple-deep); }
.problema-card.a p { color: var(--purple-deep); opacity: 0.75; }
.problema-card.b { background: var(--pink); color: white; }
.problema-card.b p { color: rgba(255,255,255,0.85); }
.problema-card.c { background: var(--purple-deep); color: white; }
.problema-card.c p { color: rgba(255,255,255,0.75); }
.problema-card .corner-sticker { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; opacity: 0.85; }
.problema-card.b .corner-sticker { color: white; }
.problema-card.c .corner-sticker { color: var(--cyan); }
.problema-card.a .corner-sticker { color: var(--pink); }
@media (max-width: 900px) { .problema-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Shared section head
   ============================================================ */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; position: relative; }
.sec-head h2 { margin: 16px 0 16px; }
.sec-head p { color: var(--ink-70); font-size: 17px; max-width: 600px; margin: 0 auto; }
.sec-head.on-dark h2 { color: white; }
.sec-head.on-dark p { color: rgba(255,255,255,0.72); }

/* ============================================================
   Guía — authority
   ============================================================ */
.guia { background: var(--purple-deep); color: white; position: relative; overflow: hidden; }
.guia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.guia-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background:
    repeating-linear-gradient(125deg, #3a2e4e 0 16px, #4a3c62 16px 32px);
  position: relative; overflow: hidden;
}
.guia-photo .ph-tag { position: absolute; bottom: 24px; left: 24px; background: var(--pink); color: white; font-size: 13px; font-weight: 800; padding: 10px 16px; border-radius: 999px; }
.guia-photo .ph-cyan { position: absolute; top: 32px; right: 32px; width: 60px; height: 60px; color: var(--cyan); transform: rotate(20deg); }
.guia h2 { color: white; }
.guia h2 em { color: var(--cyan); font-style: normal; }
.guia p.lead { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 520px; margin-top: 20px; }
.guia-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.guia-proof .p {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
}
.guia-proof .v { font-size: 36px; font-weight: 900; color: var(--cyan); letter-spacing: -0.02em; line-height: 1; }
.guia-proof .v span { color: var(--pink); }
.guia-proof .k { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; }
@media (max-width: 900px) { .guia-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   Plan
   ============================================================ */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-step {
  background: var(--indigo-soft);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: transform 220ms ease;
}
.plan-step:hover { transform: translateY(-4px); }
.plan-step .n {
  width: 54px; height: 54px;
  background: var(--pink); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px;
  margin-bottom: 20px;
}
.plan-step h3 { margin-bottom: 10px; color: var(--purple-deep); }
.plan-step p { color: var(--purple-deep); opacity: 0.7; font-size: 15px; }
.plan-step .tick {
  margin-top: 22px; display: inline-flex; gap: 8px; align-items: center;
  font-size: 12px; font-weight: 800; color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.12em;
  background: white; padding: 6px 12px; border-radius: 999px;
}
.plan-step .corner-s { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; color: var(--cyan); }
.plan-step.b { background: var(--pink); }
.plan-step.b .n { background: white; color: var(--pink); }
.plan-step.b h3, .plan-step.b p { color: white; }
.plan-step.b p { opacity: 0.9; }
.plan-step.b .tick { background: rgba(255,255,255,0.2); color: white; }
.plan-step.b .corner-s { color: white; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Sistemas
   ============================================================ */
.sistemas { background: var(--indigo-soft-2); }
.sistemas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sistema {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  background: white;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
  border: 2px solid transparent;
}
.sistema:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -30px rgba(49,39,64,0.3); }
.sistema .badge {
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple); padding: 6px 12px; border-radius: 999px;
  background: var(--indigo-soft); width: fit-content;
}
.sistema h3 { font-size: 28px; font-weight: 900; }
.sistema h3 em { color: var(--pink); font-style: normal; }
.sistema .blurb { color: var(--ink-70); font-size: 15px; }
.sistema .price { font-size: 22px; font-weight: 900; color: var(--ink); padding-top: 14px; border-top: 2px dashed var(--rule); }
.sistema .price small { font-size: 11px; color: var(--ink-50); text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-top: 4px; font-weight: 700; }
.sistema ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sistema ul li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.45; font-weight: 500; }
.sistema ul li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  background: var(--pink); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.sistema .cta { margin-top: auto; padding-top: 10px; }
.sistema.featured { background: var(--purple-deep); color: white; }
.sistema.featured .badge { background: rgba(95,207,250,0.15); color: var(--cyan); }
.sistema.featured h3 em { color: var(--cyan); }
.sistema.featured .blurb { color: rgba(255,255,255,0.72); }
.sistema.featured .price { color: white; border-color: rgba(255,255,255,0.2); }
.sistema.featured .price small { color: rgba(255,255,255,0.5); }
.sistema.featured ul li { color: rgba(255,255,255,0.92); }
.sistema.featured ul li::before { background: var(--cyan); }
.sistema.featured .ribbon {
  position: absolute; top: -12px; right: 24px;
  background: var(--pink); color: white;
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
}
@media (max-width: 900px) { .sistemas-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Perfiles
   ============================================================ */
.perfiles-tabs {
  display: flex; gap: 6px; padding: 6px;
  background: var(--indigo-soft);
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto 48px;
}
.perfiles-tabs button {
  border: 0; background: transparent; cursor: pointer;
  padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 800; color: var(--purple-deep);
  transition: background 160ms ease, color 160ms ease;
}
.perfiles-tabs button.active { background: var(--pink); color: white; }

.perfil-card { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.perfil-card h3 { font-size: clamp(28px, 2.8vw, 40px); }
.perfil-card h3 em { color: var(--pink); font-style: normal; }
.perfil-meta { font-weight: 800; font-size: 13px; color: var(--pink); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.perfil-card p.pain { font-size: 17px; color: var(--ink-70); margin: 16px 0 24px; max-width: 480px; }
.perfil-card .pair { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.perfil-card .tag { padding: 6px 12px; border-radius: 999px; background: var(--indigo-soft); color: var(--purple-deep); font-size: 13px; font-weight: 700; }

.perfil-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 24px;
}
.perfil-visual.escuelas { background: linear-gradient(180deg, #EEECFF 0%, #C7BBF0 100%); }
.perfil-visual.medicos  { background: linear-gradient(180deg, #E5F6FE 0%, #9DD8F3 100%); }
.perfil-visual.spas     { background: linear-gradient(180deg, #FFE6EE 0%, #FFAEC6 100%); }
.perfil-visual.marcas   { background: linear-gradient(180deg, #F5EFFF 0%, #BC9FDD 100%); }
.perfil-visual .caption { background: rgba(255,255,255,0.85); padding: 10px 16px; border-radius: 999px; font-size: 12px; font-weight: 800; color: var(--purple-deep); text-transform: uppercase; letter-spacing: 0.1em; position: relative; z-index: 2; }
.perfil-visual .glyph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: clamp(140px, 22vw, 240px); font-weight: 900; opacity: 0.35; letter-spacing: -0.04em; color: var(--purple-deep); }
.perfil-visual .pv-sticker-1 { position: absolute; top: 24px; right: 24px; width: 50px; height: 50px; color: var(--pink); transform: rotate(15deg); z-index: 2; }
.perfil-visual .pv-sticker-2 { position: absolute; top: 50%; left: 24px; width: 36px; height: 36px; color: var(--purple-deep); z-index: 2; }
@media (max-width: 900px) { .perfil-card { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   Casos
   ============================================================ */
.casos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.caso {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 420px;
  position: relative;
  transition: transform 220ms ease;
}
.caso:hover { transform: translateY(-4px); }
.caso.a { background: var(--indigo-soft); color: var(--purple-deep); }
.caso.b { background: var(--pink); color: white; }
.caso.c { background: var(--purple-deep); color: white; }
.caso .ctype { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.caso .big { font-size: 72px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.caso.a .big { color: var(--pink); }
.caso .big span { font-size: 42px; vertical-align: top; }
.caso .metric-label { font-size: 13px; opacity: 0.7; font-weight: 600; margin-top: -4px; }
.caso h4 { font-size: 18px; margin-top: 16px; line-height: 1.3; }
.caso p.ps { font-size: 14px; opacity: 0.8; line-height: 1.5; }
.caso .foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid currentColor; opacity: 0.8; font-size: 12px; font-weight: 700; }
.caso .foot span { text-transform: uppercase; letter-spacing: 0.1em; }
.caso .foot a { font-weight: 800; opacity: 1; }
.caso .corner-s { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; opacity: 0.9; }
.caso.a .corner-s { color: var(--pink); }
.caso.b .corner-s { color: white; }
.caso.c .corner-s { color: var(--cyan); }
@media (max-width: 900px) { .casos-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Éxito
   ============================================================ */
.exito { background: var(--indigo-soft-2); }
.exito-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.exito-col { padding: 40px; border-radius: var(--radius-xl); position: relative; }
.exito-col.bad { background: white; border: 2px dashed var(--rule); }
.exito-col.good { background: var(--purple-deep); color: white; position: relative; overflow: hidden; }
.exito-col h4 { font-size: 13px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px; }
.exito-col.bad h4 { color: var(--ink-50); }
.exito-col.good h4 { color: var(--cyan); }
.exito-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.exito-col li { font-size: 17px; line-height: 1.4; position: relative; padding-left: 32px; font-weight: 600; }
.exito-col.bad li { color: var(--ink-70); }
.exito-col.bad li::before {
  content: "✕"; position: absolute; left: 0; top: 0; color: white;
  width: 20px; height: 20px; background: var(--ink-30); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900;
}
.exito-col.good li { color: white; }
.exito-col.good li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--purple-deep);
  width: 20px; height: 20px; background: var(--cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900;
}
@media (max-width: 800px) { .exito-split { grid-template-columns: 1fr; } }

/* ============================================================
   Testimonios
   ============================================================ */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 220ms ease;
  position: relative;
}
.t-card:hover { transform: translateY(-4px); }
.t-card.a { background: var(--indigo-soft); color: var(--purple-deep); }
.t-card.b { background: var(--pink); color: white; }
.t-card.c { background: var(--cyan); color: var(--purple-deep); }
.t-card .uplift { font-size: 12px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }
.t-card .quote { font-size: 18px; line-height: 1.45; font-weight: 700; }
.t-card .quote::before { content: "“"; display: block; font-size: 56px; line-height: 0.4; height: 24px; opacity: 0.5; }
.t-card .by { display: flex; gap: 12px; align-items: center; padding-top: 16px; border-top: 1px solid currentColor; opacity: 1; margin-top: auto; }
.t-card .by::before { content: ""; }
.t-card .av { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-weight: 900; }
.t-card.a .av { background: white; color: var(--pink); }
.t-card .who { line-height: 1.25; }
.t-card .who strong { display: block; font-size: 14px; font-weight: 800; }
.t-card .who span { font-size: 12.5px; opacity: 0.7; font-weight: 600; }
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Nosotros
   ============================================================ */
.nosotros-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.nosotros h2 em { color: var(--pink); font-style: normal; }
.nosotros-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; padding-top: 32px; border-top: 2px dashed var(--rule); }
.nosotros-kpis .k { font-size: 34px; font-weight: 900; color: var(--pink); letter-spacing: -0.02em; }
.nosotros-kpis .l { font-size: 13px; color: var(--ink-70); margin-top: 4px; font-weight: 600; }
.nosotros-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #EEECFF 0%, #C7BBF0 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 24px;
}
.nosotros-photo .tag { background: white; padding: 10px 16px; border-radius: 999px; font-size: 12px; font-weight: 800; color: var(--purple-deep); text-transform: uppercase; letter-spacing: 0.1em; position: relative; z-index: 2; }
.nosotros-photo .sticker { z-index: 2; }
.nosotros-photo .glyph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 300px; font-weight: 900; color: rgba(255,255,255,0.3); letter-spacing: -0.05em; }
@media (max-width: 900px) { .nosotros-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { }
.faq-item { background: var(--indigo-soft); border-radius: var(--radius-lg); margin-bottom: 14px; overflow: hidden; transition: background 160ms ease; }
.faq-item.open { background: var(--purple-deep); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; cursor: pointer; gap: 20px; font-size: 18px; font-weight: 800; color: var(--purple-deep); }
.faq-item.open .faq-q { color: white; }
.faq-q .plus {
  width: 34px; height: 34px; border-radius: 50%; background: white; color: var(--purple-deep);
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; flex-shrink: 0;
  transition: transform 220ms ease, background 160ms ease, color 160ms ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--pink); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 260ms ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 28px 24px; color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.55; margin: 0; font-weight: 500; }

/* ============================================================
   Contacto
   ============================================================ */
.contacto { background: var(--purple-hero); color: white; position: relative; overflow: hidden; }
.contacto h2 { color: white; }
.contacto h2 em { color: var(--pink); font-style: normal; }
.contacto .lead { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 480px; margin-top: 18px; }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; position: relative; }
.contacto-ul { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.contacto-ul li { display: flex; gap: 16px; align-items: flex-start; color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600; }
.contacto-ul .k { font-size: 11px; font-weight: 900; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.14em; min-width: 110px; padding-top: 3px; }
.contacto-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--ink);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.4);
  position: relative; z-index: 2;
}
.contacto-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--purple); }
.field input, .field select, .field textarea {
  background: var(--indigo-soft-2);
  border: 2px solid var(--indigo-soft);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-30); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); background: white; }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236F4C9E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 40px; }
.field .err { color: var(--pink-ink); font-size: 12px; font-weight: 700; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--pink); }

.success-msg {
  background: var(--indigo-soft); color: var(--purple-deep);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
}
.success-msg .ic { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--pink); color: white; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; }
.success-msg h4 { font-size: 24px; margin-bottom: 8px; }
@media (max-width: 900px) { .contacto-grid { grid-template-columns: 1fr; gap: 40px; } .contacto-form .row { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--purple-ink); color: rgba(255,255,255,0.7); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.footer h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); font-weight: 800; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; }
.footer a:hover { color: white; }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.footer-brand img { width: 38px; height: 38px; }
.footer-brand .mark { font-size: 26px; color: white; font-weight: 900; letter-spacing: -0.02em; }
.footer-tagline { font-size: 14px; max-width: 320px; line-height: 1.5; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; margin-top: 56px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: inherit; margin-left: 20px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 10px; } }

/* ============================================================
   Tweaks panel
   ============================================================ */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 9999;
  background: white;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 30px 60px -20px rgba(31,24,41,0.3);
  width: 260px;
  font-size: 13px;
}
.tweaks-panel h5 { margin: 0 0 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--pink); font-weight: 900; }
.tweaks-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.tweaks-row label { font-size: 12px; color: var(--ink-70); font-weight: 700; }
.tweaks-swatches { display: flex; gap: 8px; }
.tweaks-sw { width: 28px; height: 28px; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: transform 160ms ease; }
.tweaks-sw.active { border-color: var(--ink); transform: scale(1.08); }
.tweaks-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks-opt { padding: 6px 10px; border-radius: 999px; border: 2px solid var(--rule); font-size: 12px; cursor: pointer; background: white; color: var(--ink-70); font-weight: 700; }
.tweaks-opt.active { background: var(--ink); color: white; border-color: var(--ink); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.in { opacity: 1; transform: none; }
