/* ============================================================
   Bada Web — Landing
   Paleta: morado, lavanda, cian, mint sobre navy profundo
   ============================================================ */

:root {
  /* Brand palette — EXACTA del Manual de Identidad Visual Bada Web */
  --navy: #020617;          /* Negro profundo */
  --purple: #8B5CF6;        /* Morado vibrante */
  --lavender: #A5B4FC;      /* Lavanda suave */
  --sky: #BAE6FD;           /* Azul cielo */
  --mint: #A7F3D0;          /* Menta suave */

  /* Aliases / tonos derivados */
  --ink-900: #020617;
  --ink-800: #060A22;
  --ink-700: #0B1136;
  --ink-600: #131A4D;
  --ink-500: #1C2466;

  --purple-soft: #A78BFA;
  --mint-soft: #C7F8DD;

  --white: #FFFFFF;
  --white-soft: #E6E8FF;
  --gray-light: #F9FAFB;
  --muted: #9AA0D6;
  --muted-2: #6C73A8;

  --grad: linear-gradient(135deg, #8B5CF6 0%, #A5B4FC 25%, #BAE6FD 50%, #020617 75%, #A7F3D0 100%);
  --grad-text: linear-gradient(110deg, #8B5CF6 0%, #A5B4FC 33%, #BAE6FD 66%, #A7F3D0 100%);
  --grad-soft: linear-gradient(135deg, rgba(139,92,246,.18), rgba(167,243,208,.12));

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lavender);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), transparent);
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Background ambient — fixed, full-page */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(139,92,246,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(149,240,193,.06), transparent 60%);
}
/* Subtle grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
}
.grain svg { width: 100%; height: 100%; }

/* Layout */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: backdrop-filter .3s, background .3s, padding .3s;
}
.nav.scrolled {
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 72px; width: auto; }
.nav.scrolled .nav-logo img { height: 56px; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-link {
  padding: 9px 18px;
  font-size: 14px;
  color: var(--white-soft);
  border-radius: 999px;
  transition: background .2s, color .2s;
  font-weight: 500;
}
.nav-link:hover { background: rgba(255,255,255,.08); color: var(--white); }

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

/* On mobile the nav scrolls away with the hero — the green FAB handles persistent contact */
@media (max-width: 768px) {
  .nav {
    position: absolute;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary {
  background: var(--grad);
  color: #06091f;
  font-weight: 600;
  box-shadow: 0 8px 30px -10px rgba(139,92,246,.7), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(139,92,246,.9); }
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }

.btn-arrow {
  display: inline-block;
  transition: transform .25s;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated blobs in hero */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  mix-blend-mode: screen;
  animation: float 18s ease-in-out infinite;
}
.blob.b1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 65%);
  top: -120px; left: -120px;
  animation-delay: -2s;
}
.blob.b2 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, #bee5fa 0%, transparent 65%);
  bottom: -200px; right: -160px;
  animation-delay: -8s;
}
.blob.b3 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #95f0c1 0%, transparent 65%);
  top: 30%; right: 20%;
  opacity: .35;
  animation-delay: -14s;
}
.blob.b4 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #b5b5f7 0%, transparent 65%);
  bottom: 10%; left: 15%;
  opacity: .35;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.07); }
  66% { transform: translate(-30px,40px) scale(.94); }
}

/* Mobile: smaller, more subtle blobs so the background reads dark like desktop */
@media (max-width: 768px) {
  .blob {
    filter: blur(60px);
    opacity: .28;
  }
  .blob.b1 { width: 280px; height: 280px; top: -80px; left: -80px; }
  .blob.b2 { width: 320px; height: 320px; bottom: -120px; right: -100px; }
  .blob.b3 { width: 240px; height: 240px; opacity: .18; }
  .blob.b4 { width: 220px; height: 220px; opacity: .18; }
  .ambient::after {
    background:
      radial-gradient(400px 300px at 80% -10%, rgba(139,92,246,.06), transparent 60%),
      radial-gradient(400px 250px at -10% 30%, rgba(149,240,193,.04), transparent 60%);
  }
}

/* Wavy SVG lines decoration */
.hero-waves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .35;
}
.hero-waves svg {
  position: absolute;
  width: 140%;
  height: auto;
  left: -20%;
}
.hero-waves .w-top { top: -10%; animation: drift 22s linear infinite; }
.hero-waves .w-bottom { bottom: -10%; transform: scaleY(-1); animation: drift 28s linear infinite reverse; }

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-60px); }
}
.hero-waves .w-bottom { animation-direction: reverse; }

/* Dot grid */
.dot-grid {
  position: absolute;
  width: 200px;
  height: 240px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  z-index: 1;
  opacity: .35;
  pointer-events: none;
}
.dot-grid.dg-right {
  top: 18%;
  right: 6%;
}
.dot-grid .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: dot-pulse 3s ease-in-out infinite;
  filter: blur(.3px);
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.15); }
}
@media (max-width: 900px) {
  .dot-grid { display: none; }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 32px;
  max-width: 900px;
}
.hero-headline {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line span {
  display: inline-block;
  animation: rise 1s cubic-bezier(.2,.7,.2,1) backwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: .15s; }
.hero-headline .line:nth-child(2) span { animation-delay: .3s; }
.hero-headline .line:nth-child(3) span { animation-delay: .45s; }

@keyframes rise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--white-soft);
  max-width: 580px;
  opacity: 0;
  animation: fade-in 1s ease .7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in 1s ease .9s forwards;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  animation: fade-in 1s ease 1.1s forwards;
}
.hero-meta-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta-item .dot-i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Logo big in hero corner */
.hero-logo-mark {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 720px;
  opacity: .35;
  z-index: 1;
  pointer-events: none;
  animation: tilt 16s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero-logo-mark { width: 460px; right: -100px; opacity: .22; }
}
@keyframes tilt {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50% { transform: rotate(2deg) scale(1.05); }
}

/* ===== Marquee strip ===== */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.015);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll 36s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-item .star {
  width: 18px; height: 18px;
  background: var(--grad);
  border-radius: 50%;
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section padding — más compacto */
.section {
  padding: clamp(60px, 7.5vw, 100px) 0;
  position: relative;
}
.section-head {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 0 0 44px;
}
.section-head h2 {
  font-size: clamp(38px, 5.5vw, 72px);
}
.section-head p {
  color: var(--white-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 580px;
}

/* ===== Problems (interactive flip cards) ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .problems-grid { grid-template-columns: 1fr; }
}

.flip-card {
  perspective: 1200px;
  height: 280px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-card-inner,
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 24px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.flip-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .4s;
}
.flip-card:hover .flip-face::before { opacity: 1; }

.flip-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(181,181,247,.4);
  line-height: 1;
}
.flip-front-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
  position: relative;
}

.flip-back {
  background: var(--grad);
  color: var(--ink-900);
  transform: rotateY(180deg);
  border: 0;
}
.flip-back .flip-back-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--mint);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.flip-back-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
}
.flip-back-tag {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Resolution / Features grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s, border-color .3s, background .3s;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(139,92,246,.18), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.feature:hover::before { opacity: 1; }
.feature:hover { transform: translateY(-4px); border-color: rgba(181,181,247,.3); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--ink-900);
  font-size: 20px;
}
.feature h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ===== Process / Steps ===== */
.process-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .process-wrapper { grid-template-columns: 1fr; gap: 24px; }
}

.process-steps {
  display: grid;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  position: relative;
  transition: padding .3s;
}
.step:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.step.active { padding: 26px 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--muted-2);
  transition: color .3s;
  letter-spacing: -.02em;
}
.step.active .step-num {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step-content h4 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 6px;
  transition: color .3s;
  color: var(--muted-2);
}
.step.active .step-content h4 { color: var(--white); }
.step-content p {
  color: var(--muted);
  font-size: 15px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s, padding-top .3s;
}
.step.active .step-content p {
  max-height: 200px;
  opacity: 1;
  padding-top: 8px;
}

.process-visual {
  position: relative;
  align-self: stretch;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-700);
  border: 1px solid rgba(181,181,247,.18);
}
.process-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  transition: opacity .5s, transform .5s;
  transform: scale(.96);
  background: var(--ink-800);
}
.process-card.active {
  opacity: 1;
  transform: scale(1);
}
.process-card-inner {
  text-align: center;
  display: grid;
  gap: 18px;
}
.process-card-icon {
  width: 120px; height: 120px;
  margin: 0 auto;
  border-radius: 32px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: var(--ink-900);
  font-size: 52px;
  position: relative;
}
.process-card-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 42px;
  border: 1px dashed rgba(181,181,247,.4);
  animation: spin 16s linear infinite;
}
.process-card-icon::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 54px;
  border: 1px dashed rgba(181,181,247,.18);
  animation: spin 28s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.process-card h3 {
  font-size: clamp(26px, 2.8vw, 34px);
}
.process-card p {
  color: var(--white-soft);
  font-size: 14px;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== Work / Portfolio ===== */
.work-grid {
  display: grid;
  gap: 24px;
}
.work-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.work-item.reverse { grid-template-columns: 1fr 1.1fr; }
.work-item.reverse .work-mockup { order: 2; }
.work-item.reverse .work-info { order: 1; }
@media (max-width: 900px) {
  .work-item, .work-item.reverse { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .work-item.reverse .work-mockup { order: 1; }
  .work-item.reverse .work-info { order: 2; }
}

.work-mockup {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid rgba(255,255,255,.06);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.work-item.reverse .work-mockup {
  transform: perspective(1200px) rotateY(3deg) rotateX(2deg);
}
.work-item:hover .work-mockup {
  transform: perspective(1200px) rotateY(0) rotateX(0) scale(1.02);
}

.browser-bar {
  height: 30px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.browser-bar .dotb {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.browser-bar .url {
  flex: 1;
  margin: 0 12px;
  height: 18px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
}

.mockup-content {
  position: relative;
  height: calc(100% - 30px);
  overflow: hidden;
}

/* Patis mockup styling */
.mock-patis {
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(139,92,246,.35), transparent 60%),
    radial-gradient(500px 250px at 100% 100%, rgba(149,240,193,.25), transparent 60%),
    #0c0f30;
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}
.mock-nav {
  display: flex;
  gap: 12px;
  font-size: 9px;
  font-family: var(--font-display);
  color: var(--white-soft);
  align-items: center;
}
.mock-nav-logo {
  font-weight: 700;
  font-size: 14px;
  margin-right: auto;
}
.mock-hero-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.mock-h1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.mock-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #c9c9ff, #95f0c1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mock-sub {
  font-size: 9px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}
.mock-btn {
  display: inline-block;
  padding: 5px 12px;
  background: var(--grad);
  color: var(--ink-900);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
  margin-top: 10px;
}
.mock-photo {
  border-radius: 14px;
  height: 100%;
  min-height: 110px;
  background:
    radial-gradient(circle at 30% 40%, #c9b4ff 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, #95f0c1 0%, transparent 60%),
    linear-gradient(135deg, #8b5cf6, #bee5fa);
  position: relative;
  overflow: hidden;
}
.mock-photo::after {
  content: "🐾";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 42px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

/* AC Reformas mockup */
.mock-acreformas {
  background:
    radial-gradient(500px 250px at 100% 0%, rgba(190,229,250,.25), transparent 60%),
    radial-gradient(500px 250px at 0% 100%, rgba(139,92,246,.2), transparent 60%),
    #0a0d2a;
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}
.mock-acreformas .mock-h1 {
  background: linear-gradient(90deg, #fff, #bee5fa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mock-photo-tools {
  background:
    linear-gradient(135deg, #1a2056, #2a3580);
  position: relative;
}
.mock-photo-tools::after {
  content: "🔨";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 42px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

.work-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.work-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.work-info h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 12px 0;
}
.work-info .quote {
  color: var(--white-soft);
  font-size: 15px;
  border-left: 2px solid var(--purple);
  padding-left: 14px;
  margin: 18px 0;
  font-style: italic;
}
.work-stats {
  display: flex;
  gap: 24px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.work-stat .v {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
  line-height: 1;
}
.work-stat .l {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--lavender);
  padding-top: 10px;
  border-top: 1px dashed rgba(181,181,247,.2);
  margin-top: 14px;
}
.work-link:hover { color: var(--mint); }

/* ===== Plans ===== */
.plans-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) { .plans-wrapper { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .plans-wrapper { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform .3s, border-color .3s, background .3s;
  overflow: hidden;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(181,181,247,.3); }
.plan.featured {
  background: linear-gradient(180deg, rgba(139,92,246,.10), rgba(149,240,193,.04));
  border-color: rgba(181,181,247,.35);
}
.plan.featured::before {
  content: "★ MÁS POPULAR";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .25em;
  padding: 4px 9px;
  background: var(--grad);
  color: var(--ink-900);
  border-radius: 99px;
  font-weight: 700;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.plan-tag {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lavender);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 50px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}
.plan-price .cur {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--lavender);
}
.plan-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 36px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--white-soft);
  flex: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan-features li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mint);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Pack lanzamiento special — más claro y luminoso */
.pack-launch {
  margin-top: 48px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(167,139,250,.42), transparent 60%),
    radial-gradient(900px 500px at 80% 100%, rgba(149,240,193,.32), transparent 60%),
    radial-gradient(600px 300px at 50% 50%, rgba(190,229,250,.18), transparent 70%),
    linear-gradient(135deg, rgba(181,181,247,.16), rgba(149,240,193,.08));
  border: 1px solid rgba(181,181,247,.5);
  box-shadow:
    0 30px 80px -30px rgba(139,92,246,.5),
    0 0 0 1px rgba(255,255,255,.04) inset;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pack-launch::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(167,139,250,.6), rgba(190,229,250,.3), rgba(149,240,193,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (max-width: 800px) { .pack-launch { grid-template-columns: 1fr; padding: 28px; } }

.pack-launch h3 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 14px 0 16px;
  color: var(--white);
}
.pack-launch p {
  color: var(--white);
  font-size: 16px;
  opacity: .92;
}
.pack-savings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 6px 14px;
  background: rgba(149,240,193,.1);
  border: 1px solid rgba(149,240,193,.3);
  color: var(--mint);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
}

.pack-breakdown {
  display: grid;
  gap: 8px;
}
.pack-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
}
.pack-row.total {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  border-bottom: 0;
  padding-top: 20px;
  align-items: baseline;
}
.pack-row.total .v {
  font-size: clamp(56px, 7vw, 84px);
  letter-spacing: -.04em;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #d4d4ff 40%, #95f0c1 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
  margin-left: 8px;
}
.pack-row.total > span:first-child { font-size: 16px; color: var(--white-soft); font-weight: 500; }
.pack-row .strike { text-decoration: line-through; color: var(--muted); margin-right: 10px; font-size: 22px; font-weight: 400; opacity: .7; }
.pack-launch .pack-row { border-color: rgba(255,255,255,.12); color: var(--white); }
.pack-launch .pack-row span:first-child { color: var(--white-soft); }
.pack-launch .pack-cta { margin-top: 18px; }

/* ===== Servicio destacado (Reservas) — tarjeta blanca para destacar ===== */
.service-highlight {
  margin-top: 24px;
  padding: 44px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 360px at 88% 0%, rgba(139,92,246,.10), transparent 62%),
    radial-gradient(600px 360px at 8% 100%, rgba(167,243,208,.14), transparent 62%),
    #FFFFFF;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 40px 90px -35px rgba(139,92,246,.55), 0 2px 0 rgba(255,255,255,.6) inset;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Franja de marca superior */
.service-highlight::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad);
}
@media (max-width: 820px) {
  .service-highlight { grid-template-columns: 1fr; padding: 30px 26px; gap: 28px; }
}
.service-highlight .badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--grad);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -8px rgba(139,92,246,.6);
}
.service-highlight h3 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--navy);
}
.service-highlight h3 .grad-text {
  background: linear-gradient(110deg, #8B5CF6 0%, #020617 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.service-highlight .sh-sub {
  color: rgba(2,6,23,.68);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}
.service-highlight .sh-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.service-highlight .sh-price .num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 60px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(110deg, #8B5CF6 0%, #020617 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.service-highlight .sh-price .tag {
  font-size: 13px;
  color: rgba(2,6,23,.5);
  letter-spacing: .08em;
}
.service-highlight .sh-list {
  list-style: none;
  padding: 26px;
  margin: 0;
  display: grid;
  gap: 14px;
  background: #F9FAFB;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: var(--radius-md);
}
.service-highlight .sh-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: rgba(2,6,23,.82);
  line-height: 1.45;
}
.service-highlight .sh-list li .tick {
  width: 24px; height: 24px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--grad);
  color: var(--ink-900);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* Extras */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 800px) { .extras-grid { grid-template-columns: 1fr; } }
.extra {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .3s, transform .3s;
}
.extra:hover { border-color: rgba(181,181,247,.25); transform: translateY(-3px); }
.extra-head {
  display: flex; align-items: baseline; justify-content: space-between;
}
.extra-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -.03em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.extra-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.extra-head { gap: 16px; }
.extra-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ===== Manual section (diferenciador) ===== */
.manual-section {
  position: relative;
}
.manual-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .manual-wrapper { grid-template-columns: 1fr; gap: 36px; }
}

.manual-text .badge-differentiator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: linear-gradient(135deg, rgba(149,240,193,.12), rgba(139,92,246,.08));
  border: 1px solid rgba(149,240,193,.3);
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.manual-text .badge-differentiator::before {
  content: "★";
  color: var(--mint);
}
.manual-text h2 {
  font-size: clamp(34px, 4.8vw, 60px);
  margin-bottom: 22px;
}
.manual-text .lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--white-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.manual-text p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
.manual-text strong { color: var(--white); font-weight: 600; }
.manual-text .pill-incl {
  display: inline-block;
  padding: 4px 10px;
  margin-top: 4px;
  border-radius: 99px;
  background: rgba(149,240,193,.12);
  border: 1px solid rgba(149,240,193,.25);
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

/* Manual visual — stacked document with tabs */
.manual-visual {
  position: relative;
  aspect-ratio: 5/4;
  perspective: 1400px;
}
.manual-doc {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    var(--ink-800);
  border: 1px solid rgba(181,181,247,.18);
  box-shadow: 0 40px 80px -30px rgba(139,92,246,.35), 0 0 0 1px rgba(255,255,255,.03) inset;
  transform: perspective(1400px) rotateY(-4deg) rotateX(4deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.manual-visual:hover .manual-doc { transform: perspective(1400px) rotateY(0) rotateX(0); }
.manual-doc::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 250px at 20% 10%, rgba(139,92,246,.18), transparent 60%),
    radial-gradient(400px 250px at 80% 100%, rgba(149,240,193,.10), transparent 60%);
  pointer-events: none;
}
.manual-doc-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.manual-doc-header .file-icon {
  width: 32px; height: 36px;
  background: var(--grad);
  border-radius: 4px 8px 4px 4px;
  position: relative;
  flex-shrink: 0;
}
.manual-doc-header .file-icon::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 10px; height: 10px;
  background: rgba(4,6,26,.85);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.manual-doc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
}
.manual-doc-title small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .1em;
  margin-top: 2px;
}

.manual-doc-list {
  padding: 18px 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}
@media (max-width: 480px) { .manual-doc-list { grid-template-columns: 1fr; } }

.manual-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  color: var(--white-soft);
  font-weight: 500;
  position: relative;
  transition: transform .25s, border-color .25s, background .25s;
  cursor: default;
  opacity: 0;
  animation: manual-row-in .6s cubic-bezier(.2,.7,.2,1) forwards;
}
.manual-row:hover {
  transform: translateX(3px);
  border-color: rgba(181,181,247,.3);
  background: rgba(255,255,255,.05);
}
@keyframes manual-row-in {
  to { opacity: 1; }
}
.manual-row .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(149,240,193,.15));
  font-size: 14px;
  color: var(--lavender);
  font-family: var(--font-display);
  font-weight: 600;
}
.manual-row .check {
  margin-left: auto;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--ink-900);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Sparkle dots floating around manual */
.manual-visual::before, .manual-visual::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
  z-index: 2;
}
.manual-visual::before {
  top: -8px; left: 30%;
  box-shadow: 0 0 16px var(--purple);
  animation: float-mini 5s ease-in-out infinite;
}
.manual-visual::after {
  bottom: 6%; right: -10px;
  box-shadow: 0 0 16px var(--mint);
  animation: float-mini 6s ease-in-out infinite reverse;
}
@keyframes float-mini {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(8px,-12px); }
}
.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .about-wrapper { grid-template-columns: 1fr; } }

.about-people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.person {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-700);
}
.person.daniel {
  background:
    radial-gradient(circle at 40% 35%, rgba(190,229,250,.4), transparent 60%),
    radial-gradient(circle at 60% 65%, rgba(139,92,246,.4), transparent 60%),
    linear-gradient(180deg, #1a2050, #0d1136);
}
.person.barbara {
  background:
    radial-gradient(circle at 60% 35%, rgba(149,240,193,.35), transparent 60%),
    radial-gradient(circle at 40% 65%, rgba(167,139,250,.4), transparent 60%),
    linear-gradient(180deg, #1f1850, #100c36);
}
.person-name {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}
.person-name span {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 500;
}
.person::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,6,26,.85));
  z-index: 1;
}
.person-placeholder {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(181,181,247,.6);
  font-family: var(--font-body);
  font-weight: 500;
  z-index: 2;
  text-align: center;
  line-height: 1.6;
}

.about-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 22px;
}
.about-text p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--white-soft);
  margin-bottom: 18px;
  line-height: 1.65;
}
.about-text .lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--white); }
.about-text strong { color: var(--white); font-weight: 600; }
.about-text .pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(149,240,193,.1);
  color: var(--mint);
  font-weight: 600;
  border: 1px solid rgba(149,240,193,.2);
  font-size: inherit;
}

.about-facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 560px) { .about-facts { grid-template-columns: 1fr; } }
.about-fact {
  display: grid;
  gap: 4px;
}
.about-fact .v {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.about-fact .l {
  font-size: 12px;
  color: var(--muted);
}

/* ===== CTA Final ===== */
.cta {
  position: relative;
  padding: clamp(80px,10vw,140px) 0;
  text-align: center;
  overflow: hidden;
}
.cta-content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 30px;
  justify-items: center;
}
.cta h2 {
  font-size: clamp(40px, 7vw, 96px);
  max-width: 920px;
  letter-spacing: -.035em;
}
.cta-sub {
  color: var(--white-soft);
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 560px;
}
.cta-contact {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.cta-contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--white-soft);
  padding: 10px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .3s, background .3s;
}
.cta-contact-item:hover { border-color: rgba(181,181,247,.4); background: rgba(255,255,255,.04); }
.cta-contact-item .label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 500;
  margin-right: 4px;
}

/* Big orbit ring decoration */
.cta-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 880px; height: 880px;
  border-radius: 50%;
  border: 1px dashed rgba(181,181,247,.18);
  z-index: 1;
  animation: spin 60s linear infinite;
}
.cta-orbit::before, .cta-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--grad);
}
.cta-orbit::before {
  width: 14px; height: 14px; top: -7px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 20px var(--purple);
}
.cta-orbit::after {
  width: 10px; height: 10px; bottom: 8%; right: 12%;
  box-shadow: 0 0 20px var(--mint);
}
.cta-orbit-2 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 620px; height: 620px;
  border-radius: 50%;
  border: 1px dashed rgba(149,240,193,.16);
  z-index: 1;
  animation: spin 40s linear infinite reverse;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo img { height: 52px; }
.footer p { color: var(--muted); font-size: 13px; }
.footer-meta {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* Subtle parallax for hero logo bg */
.parallax-slow {
  will-change: transform;
}

/* ============================================================
   SECTION THEMES — variantes de contraste para romper la monotonía
   ============================================================ */

/* === LIGHT — Blanco / gris claro de marca (#FFFFFF · #F9FAFB) === */
.section--light {
  background: #F9FAFB;
  color: var(--navy);
  position: relative;
  z-index: 4;
}
.section--light .section-head h2,
.section--light .feature h3,
.section--light .manual-text h2,
.section--light .manual-doc-title,
.section--light .pack-launch h3,
.section--light .work-info h3,
.section--light .about-text h2,
.section--light .step-content h4 { color: var(--navy); }
.section--light .section-head p,
.section--light .feature p,
.section--light .manual-text p,
.section--light .manual-text .lead,
.section--light .work-info p { color: rgba(2, 6, 23, .68); }
.section--light .eyebrow { color: #8B5CF6; }
.section--light .eyebrow::before { background: linear-gradient(90deg, #8B5CF6, transparent); }
.section--light .feature {
  background: #FFFFFF;
  border-color: rgba(139, 92, 246, .14);
  box-shadow: 0 10px 30px -20px rgba(2, 6, 23, .18);
}
.section--light .feature:hover {
  border-color: rgba(139, 92, 246, .40);
  box-shadow: 0 20px 50px -20px rgba(139, 92, 246, .30);
}
.section--light .feature::before {
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(139,92,246,.08), transparent 50%);
}
.section--light .feature-icon {
  box-shadow: 0 6px 18px -6px rgba(139, 92, 246, .45);
}
.section--light .grad-text {
  background: linear-gradient(110deg, #8B5CF6 0%, #020617 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* === LAVENDER — Lavanda suave de marca (#A5B4FC) === */
.section--lavender {
  background: #A5B4FC;
  color: var(--navy);
  position: relative;
  z-index: 4;
  overflow: hidden;
}
/* Decorative floating gradient orbs on lavender */
.section--lavender .lavender-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.section--lavender .lavender-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
}
.section--lavender .lavender-orbs .orb.o1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #FFFFFF, transparent 70%);
  top: 10%; left: -100px;
  animation: float 20s ease-in-out infinite;
}
.section--lavender .lavender-orbs .orb.o2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #A7F3D0, transparent 70%);
  bottom: 5%; right: -80px;
  animation: float 24s ease-in-out infinite reverse;
}
.section--lavender .container { position: relative; z-index: 2; }
.section--lavender .manual-text h2,
.section--lavender .section-head h2 { color: var(--navy); }
.section--lavender .manual-text p,
.section--lavender .manual-text .lead,
.section--lavender .section-head p { color: rgba(2, 6, 23, .72); }
.section--lavender .manual-text strong { color: var(--navy); }
.section--lavender .badge-differentiator {
  background: rgba(255,255,255,.65);
  border-color: rgba(2, 6, 23, .14);
  color: var(--navy);
}
.section--lavender .badge-differentiator::before { color: #020617; }
.section--lavender .pill-incl {
  background: rgba(2, 6, 23, .08);
  border-color: rgba(2, 6, 23, .18);
  color: #020617;
}
.section--lavender .grad-text {
  background: linear-gradient(110deg, #8B5CF6 0%, #020617 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section--lavender .manual-doc {
  background: #FFFFFF;
  border-color: rgba(2, 6, 23, .10);
  box-shadow: 0 40px 80px -30px rgba(2, 6, 23, .25), 0 0 0 1px rgba(255,255,255,.6) inset;
}
.section--lavender .manual-doc::before {
  background:
    radial-gradient(500px 250px at 20% 10%, rgba(139,92,246,.08), transparent 60%),
    radial-gradient(400px 250px at 80% 100%, rgba(167,243,208,.10), transparent 60%);
}
.section--lavender .manual-doc-header { border-bottom-color: rgba(2, 6, 23, .08); }
.section--lavender .manual-doc-title { color: var(--navy); }
.section--lavender .manual-doc-title small { color: rgba(2, 6, 23, .55); }
.section--lavender .manual-row {
  background: rgba(2, 6, 23, .03);
  border-color: rgba(2, 6, 23, .06);
  color: var(--navy);
}
.section--lavender .manual-row:hover {
  background: rgba(2, 6, 23, .05);
  border-color: rgba(139, 92, 246, .35);
}
.section--lavender .manual-row .ic {
  background: linear-gradient(135deg, rgba(139,92,246,.20), rgba(167,243,208,.20));
  color: #8B5CF6;
}
.section--lavender .eyebrow { color: #020617; }
.section--lavender .eyebrow::before { background: linear-gradient(90deg, #020617, transparent); }

/* === NAVY — Variante navy con patrón de ondas === */
.section--navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.section--navy::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/pattern.jpg");
  background-size: cover;
  background-position: center;
  opacity: .12;
  mix-blend-mode: screen;
  pointer-events: none;
}
.section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(139,92,246,.14), transparent 60%),
    radial-gradient(600px 350px at 20% 100%, rgba(167,243,208,.08), transparent 60%);
  pointer-events: none;
}
.section--navy .container { position: relative; z-index: 2; }

/* Hide global ambient/blobs behind themed sections (they're fixed at z-index 0/1)
   — the section's own background covers them via higher z-index */

/* ========== Floating WhatsApp FAB ========== */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
  color: #fff;
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  box-shadow:
    0 18px 40px -10px rgba(37,211,102,.55),
    0 0 0 1px rgba(255,255,255,.12) inset;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px) scale(.9);
  animation: fab-in 1s cubic-bezier(.2,.7,.2,1) 1.6s forwards;
}
.fab-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 50px -10px rgba(37,211,102,.75);
}
.fab-wa-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-right: 10px;
  position: relative;
}
.fab-wa-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.fab-wa-label { line-height: 1; }
@keyframes fab-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .fab-wa { padding: 12px 18px 12px 12px; bottom: 16px; right: 16px; }
  .fab-wa-icon { margin-right: 8px; }
}

/* ========== Inline section CTA banner (full-width, horizontal) ========== */
.section-cta {
  margin: 64px auto 0;
  padding: 32px 44px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(139,92,246,.14), rgba(149,240,193,.06));
  border: 1px solid rgba(181,181,247,.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 240px at 0% 50%, rgba(139,92,246,.18), transparent 60%),
    radial-gradient(700px 240px at 100% 50%, rgba(149,240,193,.10), transparent 60%);
  pointer-events: none;
}
.section-cta-text { position: relative; z-index: 1; flex: 1; min-width: 280px; }
.section-cta-text h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 0;
  letter-spacing: -.02em;
}
.section-cta-text p {
  color: var(--white-soft);
  font-size: 14px;
  margin-top: 6px;
}
.section-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
@media (max-width: 720px) {
  .section-cta { padding: 24px 24px; }
}

/* ========== WhatsApp inline icon button (work cards) ========== */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 99px;
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  transition: transform .25s, box-shadow .25s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(37,211,102,.55); }

/* ========== Real screenshot mockup ========== */
.mockup-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ========== About: single team photo ========== */
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink-700);
  border: 1px solid rgba(181,181,247,.18);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4,6,26,.85));
  pointer-events: none;
}
.about-photo-caption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.about-photo-caption .names {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.3vw, 28px);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.about-photo-caption .role {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
.about-photo-caption .ve-es {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .2em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-weight: 500;
}
