/* ==================== INDEX HOME STYLES ==================== */
/* ══════════════════════════════════════
       RESET / BASE
    ══════════════════════════════════════ */
    body {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--color-negro);
      background-color: var(--color-crema);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
    }

    p, a, button, label, input, textarea,
    select, li, span, small {
      font-family: 'Inter', system-ui, sans-serif;
    }

    /* ══════════════════════════════════════
       UTILIDADES
    ══════════════════════════════════════ */
    .eyebrow {
      display: block;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-violeta);
      margin-bottom: 14px;
    }

    .section-wrap {
      padding: 96px 24px;
    }
    .section-wrap--alt {
      background-color: var(--color-crema-claro);
    }
    .section-wrap--dark {
      background-color: var(--color-negro);
      color: #fff;
    }
    .anchor-target {
      display: block;
      height: 0;
      visibility: hidden;
    }

    .inner {
      max-width: 1000px;
      margin: 0 auto;
    }
    .inner--narrow {
      max-width: 720px;
      margin: 0 auto;
    }
    .inner--medium {
      max-width: 860px;
      margin: 0 auto;
    }

    /* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
    .site-header {
      position: relative;
      top: 0;
      z-index: 40;
      background: var(--color-crema);
      border-bottom: 0;
      padding: 0;
    }
    .site-header.is-scrolled {
      background: var(--color-crema);
      box-shadow: none;
      backdrop-filter: none;
    }
    .header-inner {
      max-width: none;
      margin: 0 auto;
      padding: 0 16px 0 46px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid rgba(242, 234, 225, 0.14);
      border-bottom: 0;
      border-radius: 0;
      background: #2E2926;
      position: relative;
    }
    .header-inner::before {
      content: '';
      width: 24px;
      height: 5px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 2.5px 50%, rgba(242,234,225,0.46) 0 2px, transparent 2.5px),
        radial-gradient(circle at 12px 50%, rgba(242,234,225,0.34) 0 2px, transparent 2.5px),
        radial-gradient(circle at 21.5px 50%, rgba(242,234,225,0.28) 0 2px, transparent 2.5px);
      margin-right: 14px;
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
    }
    .brand {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--color-crema);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .brand-accent {
      color: var(--color-violeta);
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-left: auto;
    }
    .main-nav a {
      font-size: 0.64rem;
      color: rgba(242, 234, 225, 0.68);
      text-decoration: none;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .main-nav a:hover {
      color: var(--color-crema);
      text-decoration: none;
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background-color: transparent;
      color: var(--color-crema) !important;
      padding: 7px 13px;
      border: 1px solid var(--color-violeta);
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-decoration: none;
      line-height: 1;
      transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
    }
    .nav-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: var(--color-violeta);
      transform: translateX(-101%);
      transition: transform 0.32s ease;
    }
    .nav-cta:hover {
      border-color: var(--color-violeta);
      color: #ffffff !important;
      transform: translateY(-1px);
    }
    .nav-cta:hover::before {
      transform: translateX(0);
    }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.4rem;
      cursor: pointer;
      color: var(--color-crema);
    }
    @media (max-width: 640px) {
      .main-nav {
        position: static;
        width: auto;
        justify-content: flex-end;
      }
      .nav-toggle {
        display: block !important;
        margin-left: auto;
      }
      .nav-list { display: none !important; }
      .nav-list.open,
      .nav-list.nav-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: auto;
        width: auto;
        min-width: 180px;
        background: #2E2926;
        border: 1px solid rgba(242, 234, 225, 0.14);
        border-radius: 14px;
        padding: 12px 20px 16px;
        gap: 14px;
        z-index: 9999;
        box-shadow: 0 4px 24px rgba(0,0,0,0.30);
      }
    }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      min-height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      background: #171514;
    }
    .hero-shell {
      width: 100%;
      max-width: none;
      margin: 0;
    }
    .hero-browser {
      overflow: hidden;
      border: 0;
      border-top: 0;
      border-radius: 0;
      background: #171514;
      box-shadow: none;
    }
    .hero-browser-bar {
      display: none;
    }
    .hero-browser-bar > span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(242, 234, 225, 0.42);
    }
    .hero-browser-url {
      height: 16px;
      flex: 1;
      max-width: 420px;
      margin-left: 10px;
      border-radius: 999px;
      background: rgba(242, 234, 225, 0.16);
      color: rgba(242, 234, 225, 0.62);
      font-size: 0.64rem;
      line-height: 16px;
      text-align: center;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .hero-stage {
      display: grid;
      grid-template-columns: minmax(0, 1.33fr) minmax(360px, 0.67fr);
      min-height: calc(100svh - 94px);
      overflow: hidden;
      background:
        radial-gradient(circle at 0 18%, rgba(139,127,212,0.24), transparent 28%),
        linear-gradient(120deg, rgba(139,127,212,0.12), transparent 38%),
        #171514;
      color: var(--color-crema);
    }
    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: clamp(48px, 5.8vw, 68px) clamp(42px, 7vw, 100px) clamp(26px, 4vw, 42px);
    }
    .hero .eyebrow {
      color: #cfc6ff;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.9rem, 6.35vw, 6.25rem);
      font-style: italic;
      font-weight: 400;
      line-height: 0.9;
      color: var(--color-crema);
      margin: 0;
      max-width: 820px;
    }
    .hero-text, .hero-lead {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(1.04rem, 1.45vw, 1.2rem);
      line-height: 1.6;
      color: rgba(242, 234, 225, 0.78);
      max-width: 690px;
      margin: 24px 0 0;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: flex-start;
      flex-wrap: wrap;
      margin-top: 24px;
    }
    .hero-proof {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 12px;
      padding: clamp(28px, 4vw, 52px) clamp(28px, 4.2vw, 64px) clamp(46px, 6vh, 64px) clamp(42px, 5vw, 70px);
      border-left: 1px solid rgba(242, 234, 225, 0.1);
      background:
        linear-gradient(rgba(242,234,225,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242,234,225,0.055) 1px, transparent 1px),
        #181817;
      background-size: 42px 42px;
    }
    .hero-proof span {
      color: #d7d0ff;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .hero-proof strong {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 2.85vw, 3rem);
      font-style: italic;
      font-weight: 400;
      line-height: 1.05;
      color: var(--color-crema);
      max-width: 480px;
      text-wrap: balance;
    }
    .hero-proof small {
      color: rgba(242, 234, 225, 0.72);
      font-size: 1rem;
    }
    .hero-marquee {
      overflow: hidden;
      border-top: 1px solid rgba(139, 127, 212, 0.24);
      border-bottom: 1px solid rgba(139, 127, 212, 0.24);
      background: var(--color-violeta-suave);
      color: var(--color-negro);
    }
    .hero-marquee-track {
      display: flex;
      width: max-content;
      gap: 0;
      padding: 13px 0;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
      animation: heroMarquee 22s linear infinite;
    }
    .hero-marquee-track span {
      display: inline-block;
      color: var(--color-negro);
      padding-right: 34px;
    }
    .hero-marquee-track span::after {
      content: "→";
      color: var(--color-violeta);
      padding-left: 24px;
    }
    @keyframes heroMarquee {
      from { transform: translateX(0); }
      to { transform: translateX(-33.333%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-marquee-track { animation: none; }
    }
    @media (max-width: 768px) {
      .hero-stage { grid-template-columns: 1fr; min-height: auto; }
      .hero-copy { justify-content: flex-start; }
      .hero-proof { border-left: 0; border-top: 1px solid rgba(242, 234, 225, 0.1); }
    }
    @media (max-width: 480px) {
      .hero { padding: 0; }
      .hero-copy { padding: 48px 24px 42px; }
      .hero h1 { font-size: 3.8rem; }
      .hero-actions { flex-direction: column; align-items: stretch; }
    }

    /* ══════════════════════════════════════
       BOTONES
    ══════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 28px;
      font-size: 0.9rem;
      font-weight: 500;
      border-radius: 6px;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s, background 0.2s, transform 0.2s, border-color 0.2s;
      border: none;
      min-height: 48px;
    }
    .btn:hover {
      text-decoration: none;
      opacity: 0.9;
      transform: translateY(-1px);
    }
    .btn-primary {
      background-color: var(--color-violeta);
      color: #fff;
    }
    .hero .btn-primary {
      background-color: #eeeaff;
      color: #171514;
    }
    .btn-outline {
      background: var(--color-crema);
      border: 1.5px solid var(--color-borde);
      color: var(--color-negro);
    }
    .hero .btn-outline {
      background: transparent;
      border-color: rgba(242, 234, 225, 0.38);
      color: var(--color-crema);
    }
    .hero .btn-outline:hover {
      border-color: rgba(207, 198, 255, 0.75);
    }
    .btn-outline:hover {
      border-color: var(--color-violeta);
    }
    .btn-full { width: 100%; text-align: center; }
    .form-note {
      color: rgba(242, 234, 225, 0.58);
      font-size: 0.86rem;
      line-height: 1.55;
      margin: -4px 0 0;
      text-align: center;
    }

    /* ══════════════════════════════════════
       DOLOR DEL CLIENTE
    ══════════════════════════════════════ */
    .dolor {
      background-color: var(--color-negro);
      padding: 86px 24px;
      text-align: center;
      color: var(--color-crema);
    }
    .dolor-quote {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 3.4vw, 3rem);
      line-height: 1.35;
      color: var(--color-crema);
      margin: 0 auto 20px;
      max-width: 980px;
    }
    .dolor-sub {
      font-size: 1rem;
      color: rgba(242, 234, 225, 0.66);
      margin: 0 auto;
      max-width: 520px;
    }
    .dolor-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      max-width: 760px;
      margin: 36px auto 0;
      text-align: left;
    }
    .dolor-points p {
      position: relative;
      margin: 0;
      padding: 18px 20px 18px 42px;
      border: 1px solid rgba(242, 234, 225, 0.12);
      border-radius: 8px;
      background: rgba(242, 234, 225, 0.04);
      color: rgba(242, 234, 225, 0.76);
      font-size: 0.95rem;
      line-height: 1.55;
    }
    .dolor-points p::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 27px;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--color-violeta);
      box-shadow: 0 0 0 6px rgba(139, 127, 212, 0.14);
      animation: dolorPulse 2.4s ease-in-out infinite;
    }
    .dolor-points p:nth-child(2)::before {
      animation-delay: 0.55s;
    }
    @keyframes dolorPulse {
      0%, 100% {
        opacity: 0.72;
        box-shadow: 0 0 0 5px rgba(139, 127, 212, 0.12);
        transform: scale(0.92);
      }
      50% {
        opacity: 1;
        box-shadow: 0 0 0 9px rgba(139, 127, 212, 0.22);
        transform: scale(1.08);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .dolor-points p::before {
        animation: none;
      }
    }
    @media (max-width: 640px) {
      .dolor-points {
        grid-template-columns: 1fr;
        text-align: left;
      }
    }

    /* ══════════════════════════════════════
       SOBRE MI
    ══════════════════════════════════════ */
    .quienes {
      background-color: var(--color-crema);
      padding: 96px 24px;
    }
    .quienes-grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .quienes-foto {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }
    .quienes-foto::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(59, 47, 42, 0.16);
      z-index: 1;
      pointer-events: none;
      border-radius: 12px;
    }
    .quienes-foto img {
      width: 100%;
      max-height: 420px;
      object-fit: cover;
      object-position: center 20%;
      display: block;
    }
    .quienes-copy h2 {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 500;
      color: var(--color-negro);
      margin: 0 0 20px;
      line-height: 1.25;
    }
    .quienes-copy p {
      color: var(--color-gris);
      line-height: 1.75;
      margin: 0 0 16px;
      font-size: 0.97rem;
    }
    .quienes-copy p:last-child { margin-bottom: 0; }

    @media (max-width: 768px) {
      .quienes-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    /* ══════════════════════════════════════
       SERVICIOS
    ══════════════════════════════════════ */
    .servicios {
      background-color: var(--color-negro);
      padding: 96px 24px;
      color: var(--color-crema);
    }
    .servicios-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .servicios-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 500;
      color: var(--color-crema);
      margin: 0 0 14px;
    }
    .servicios-header p {
      color: rgba(242, 234, 225, 0.66);
      font-size: 1rem;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .servicios-grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .servicio-card {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(201, 194, 241, 0.18), transparent 42%),
        rgba(242, 234, 225, 0.09);
      border: 1px solid rgba(242, 234, 225, 0.18);
      border-radius: 14px;
      padding: 18px 18px 30px;
      display: flex;
      flex-direction: column;
      color: var(--color-crema);
      transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }
    .servicio-card::before {
      content: "";
      position: absolute;
      inset: auto -20% -35% 20%;
      height: 180px;
      background: radial-gradient(circle, rgba(139, 127, 212, 0.22), transparent 66%);
      opacity: 0;
      transition: opacity 0.28s ease, transform 0.28s ease;
      pointer-events: none;
    }
    .servicio-card:hover {
      transform: translateY(-6px);
      border-color: rgba(201, 194, 241, 0.42);
      background:
        linear-gradient(135deg, rgba(201, 194, 241, 0.24), transparent 42%),
        rgba(242, 234, 225, 0.12);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    }
    .servicio-card:hover::before {
      opacity: 1;
      transform: translateY(-10px);
    }
    .servicio-media {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      background: rgba(242, 234, 225, 0.18);
      margin-bottom: 26px;
      aspect-ratio: 16 / 10;
    }
    .servicio-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.01);
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.28s ease;
    }
    .servicio-card:hover .servicio-media img {
      transform: scale(1.06);
      filter: saturate(1.05) contrast(1.03);
    }
    .servicio-card h3 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--color-crema);
      margin: 0 18px 6px;
    }
    .servicio-subtitulo {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #C9C2F1;
      margin: 0 18px 18px;
    }
    .servicio-card p {
      color: rgba(242, 234, 225, 0.7);
      font-size: 0.97rem;
      line-height: 1.75;
      margin: 0 18px 20px;
      flex: 1;
    }
    .servicio-precio {
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--color-crema);
      margin: 0 0 16px;
    }
    .servicio-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 42px;
      padding: 10px 16px;
      border: 1px solid rgba(242, 234, 225, 0.22);
      border-radius: 6px;
      background: rgba(242, 234, 225, 0.08);
      font-size: 0.9rem;
      color: #C9C2F1;
      text-decoration: none;
      font-weight: 600;
      margin-left: 18px;
      transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s;
    }
    .servicio-link:hover {
      border-color: var(--color-violeta);
      background: rgba(242, 234, 225, 0.12);
      color: var(--color-crema);
      text-decoration: none;
      transform: translateY(-1px);
    }
    .servicios-disclaimer {
      text-align: center;
      font-size: 0.9rem;
      font-style: italic;
      color: rgba(242, 234, 225, 0.56);
      margin-top: 32px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 900px) {
      .servicios-grid { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════════
       PROCESO
    ══════════════════════════════════════ */
    .proceso {
      background:
        linear-gradient(180deg, rgba(139, 127, 212, 0.16), rgba(242, 234, 225, 0.62)),
        var(--color-violeta-suave);
      padding: 96px 24px;
    }
    .proceso-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .proceso-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 500;
      color: var(--color-negro);
      margin: 0;
    }
    .proceso-grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      position: relative;
    }
    .proceso-grid::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 32px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139, 127, 212, 0.48), transparent);
    }
    .paso {
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 250px;
      padding: 22px;
      border: 1px solid rgba(46, 41, 38, 0.1);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.58);
      box-shadow: 0 14px 34px rgba(46, 41, 38, 0.045);
      position: relative;
      overflow: hidden;
      transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    }
    .paso:hover {
      transform: translateY(-4px);
      border-color: rgba(139, 127, 212, 0.34);
      box-shadow: 0 18px 42px rgba(46, 41, 38, 0.08);
    }
    .paso-num {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--color-negro);
      color: #C9C2F1;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      box-shadow: 0 0 0 7px rgba(139, 127, 212, 0.12);
      position: relative;
      z-index: 1;
      margin-bottom: 8px;
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }
    .paso:hover .paso-num {
      transform: scale(1.06);
      box-shadow: 0 0 0 9px rgba(139, 127, 212, 0.16);
    }
    .paso h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-negro);
      margin: 0;
      position: relative;
      z-index: 1;
    }
    .paso p {
      font-size: 0.88rem;
      color: var(--color-gris);
      line-height: 1.7;
      margin: 0;
      position: relative;
      z-index: 1;
    }
    .proceso-nota {
      text-align: center;
      font-size: 0.88rem;
      font-style: italic;
      color: var(--color-gris);
      max-width: 620px;
      margin: 56px auto 0;
      line-height: 1.7;
    }
    @media (max-width: 900px) {
      .proceso-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .proceso-grid::before {
        display: none;
      }
    }
    @media (max-width: 480px) {
      .proceso-grid { grid-template-columns: 1fr; }
      .paso { min-height: auto; }
    }

    /* ══════════════════════════════════════
       EXPERIENCIA REAL
    ══════════════════════════════════════ */
    .experiencia {
      background-color: var(--color-crema-claro);
      padding: 96px 24px 104px;
      overflow: hidden;
    }
    .experiencia-showcase {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0;
      border-radius: 0;
      background: transparent;
      color: var(--color-negro);
      overflow: hidden;
      position: relative;
      box-shadow: none;
    }
    .experiencia-showcase::before {
      display: none;
    }
    .experiencia-showcase .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      margin: 0 auto 18px;
      padding: 5px 12px;
      border-radius: 999px;
      background: rgba(139, 127, 212, 0.12);
      color: var(--color-violeta);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .experiencia-showcase .eyebrow::before {
      content: "+";
      color: var(--color-violeta);
      font-weight: 700;
    }
    .experiencia-header {
      text-align: center;
      margin-bottom: 44px;
      position: relative;
      z-index: 1;
    }
    .experiencia-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(2.1rem, 4.4vw, 3.8rem);
      font-weight: 500;
      color: var(--color-negro);
      line-height: 1;
      margin: 0;
    }
    .experiencia-header p {
      color: var(--color-gris);
      font-size: 0.95rem;
      line-height: 1.65;
      max-width: 520px;
      margin: 16px auto 0;
    }
    .experiencia-carousel {
      max-width: 1120px;
      margin: 0 auto;
      position: relative;
      padding: 0;
      z-index: 1;
    }
    .experiencia-viewport {
      overflow: visible;
      padding: 8px 0 2px;
      cursor: grab;
      touch-action: pan-y;
    }
    .experiencia-viewport.is-dragging {
      cursor: grabbing;
    }
    .experiencia-track {
      --experiencia-gap: 20px;
      display: flex;
      gap: var(--experiencia-gap);
      transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }
    .experiencia-card {
      flex: 0 0 calc((100% - (var(--experiencia-gap) * 2)) / 3);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 234, 225, 0.78)),
        var(--color-crema);
      border: 1px solid rgba(139, 127, 212, 0.2);
      border-radius: 16px;
      padding: 30px;
      position: relative;
      min-height: 258px;
      display: flex;
      flex-direction: column;
      color: var(--color-negro);
      overflow: hidden;
      opacity: 0.64;
      transform: translateY(22px) scale(0.96);
      box-shadow: none;
      transition:
        opacity 460ms ease,
        transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 460ms ease,
        border-color 320ms ease;
      text-decoration: none;
      cursor: pointer;
    }
    .experiencia-card::before {
      display: none;
    }
    .experiencia-card.is-active,
    .experiencia-card.is-near {
      opacity: 1;
      transform: translateY(0) scale(1);
      box-shadow: none;
    }
    .experiencia-card:hover {
      text-decoration: none;
      border-color: rgba(139, 127, 212, 0.42);
      box-shadow: 0 10px 24px rgba(46, 41, 38, 0.055);
      transform: translateY(-3px) scale(1);
    }
    .experiencia-card:hover .experiencia-link {
      color: var(--color-violeta);
      transform: translateX(5px);
    }
    .experiencia-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
    }
    .experiencia-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(139, 127, 212, 0.16);
      color: var(--color-negro);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      overflow: hidden;
      border: 1px solid rgba(139, 127, 212, 0.16);
      flex: 0 0 auto;
    }
    .experiencia-avatar img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    .experiencia-avatar--brand {
      background: #66785F;
      color: #fff;
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 500;
      border-color: rgba(102, 120, 95, 0.24);
    }
    .experiencia-comilla {
      font-family: var(--font-serif);
      font-size: 6.4rem;
      line-height: 1;
      color: rgba(46, 41, 38, 0.12);
      opacity: 1;
      display: block;
      position: static;
      pointer-events: none;
      margin-top: -18px;
    }
    .experiencia-texto {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.02rem, 1.25vw, 1.16rem);
      line-height: 1.5;
      color: rgba(46, 41, 38, 0.72);
      max-width: 100%;
      margin: auto 0 18px;
      flex: 1;
    }
    .experiencia-nombre {
      font-weight: 600;
      font-size: clamp(1.15rem, 1.7vw, 1.45rem);
      color: var(--color-negro);
      margin: 0 0 4px;
    }
    .experiencia-rubro {
      font-size: 0.78rem;
      color: rgba(46, 41, 38, 0.62);
      margin: 0 0 18px;
    }
    .experiencia-user {
      display: inline-flex;
      width: fit-content;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .experiencia-user:hover {
      color: var(--color-violeta);
      text-decoration: none;
    }
    .experiencia-link {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      color: var(--color-violeta);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }
    .experiencia-link:hover {
      color: var(--color-negro);
      text-decoration: none;
      transform: translateX(3px);
    }
    .experiencia-link--muted {
      color: rgba(46, 41, 38, 0.5);
      font-weight: 500;
    }
    .experiencia-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 18px;
    }
    .experiencia-control {
      position: static;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(139, 127, 212, 0.22);
      background: rgba(255, 255, 255, 0.52);
      color: var(--color-negro);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      box-shadow: 0 1px 4px rgba(46, 41, 38, 0.04);
      transform: none;
      transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
    }
    .experiencia-control::before {
      content: "";
      width: 10px;
      height: 10px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transition: transform 0.2s ease;
    }
    .experiencia-control--prev::before {
      transform: rotate(-135deg) translate(-1px, -1px);
    }
    .experiencia-control--next::before {
      transform: rotate(45deg) translate(-1px, 1px);
    }
    .experiencia-control:hover {
      background: var(--color-crema);
      border-color: rgba(139, 127, 212, 0.46);
      color: var(--color-violeta);
      transform: translateY(-2px);
    }
    .experiencia-dots {
      position: static;
      transform: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-width: 46px;
      margin-top: 0;
    }
    .experiencia-dot {
      width: 6px;
      height: 6px;
      border: 0;
      border-radius: 999px;
      background: rgba(139, 127, 212, 0.24);
      padding: 0;
      cursor: pointer;
      opacity: 0.9;
      transition: background 0.2s, transform 0.2s, width 0.2s, opacity 0.2s;
    }
    .experiencia-dot.is-active {
      width: 16px;
      background: var(--color-violeta);
      opacity: 1;
    }
    @media (max-width: 900px) {
      .experiencia {
        padding: 72px 18px 86px;
      }
      .experiencia-showcase {
        border-radius: 0;
        padding: 0;
      }
      .experiencia-track {
        --experiencia-gap: 16px;
      }
      .experiencia-viewport {
        overflow: hidden;
      }
      .experiencia-card {
        flex-basis: min(84vw, 340px);
        min-height: 286px;
        padding: 26px;
      }
      .experiencia-comilla {
        font-size: 5.2rem;
      }
    }
    @media (max-width: 560px) {
      .experiencia-header {
        margin-bottom: 34px;
      }
      .experiencia-showcase {
        border-radius: 18px;
      }
      .experiencia-card {
        flex-basis: 100%;
      }
    }

    /* ══════════════════════════════════════
       TESTIMONIOS
    ══════════════════════════════════════ */
    .testimonios {
      background:
        radial-gradient(circle at 18% 0%, rgba(124, 92, 62, 0.22), transparent 32%),
        #150703;
      color: var(--color-crema);
      padding: 96px 24px 112px;
      overflow: hidden;
    }
    .testimonios-inner {
      max-width: 1120px;
      margin: 0 auto;
      position: relative;
    }
    .testimonios-header {
      text-align: center;
      margin-bottom: 46px;
    }
    .testimonios-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(2.45rem, 6vw, 4.9rem);
      font-weight: 500;
      color: var(--color-crema);
      line-height: 0.95;
      margin: 0 0 16px;
    }
    .testimonios-header p {
      max-width: 430px;
      margin: 0 auto;
      color: rgba(242, 234, 225, 0.68);
      font-size: 0.95rem;
      line-height: 1.55;
    }
    .testimonios-carousel {
      position: relative;
    }
    .testimonios-viewport {
      overflow: hidden;
      padding: 8px 0 4px;
      cursor: grab;
      touch-action: pan-y;
    }
    .testimonios-viewport.is-dragging {
      cursor: grabbing;
    }
    .testimonios-track {
      --testimonios-gap: 20px;
      display: flex;
      gap: var(--testimonios-gap);
      transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }
    .testimonio-card {
      flex: 0 0 calc((100% - (var(--testimonios-gap) * 2)) / 3);
      min-height: 258px;
      background: #F2E7D6;
      border: 1px solid rgba(242, 231, 214, 0.62);
      border-radius: 18px;
      padding: 28px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
      color: #1F110D;
      opacity: 0.64;
      transform: translateY(22px) scale(0.96);
      transition:
        opacity 460ms ease,
        transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 460ms ease;
    }
    .testimonio-card.is-active,
    .testimonio-card.is-near {
      opacity: 1;
      transform: translateY(0) scale(1);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    }
    .testimonio-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }
    .testimonio-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #D5C6B4;
      color: #170804;
      font-size: 0.78rem;
      font-weight: 700;
    }
    .testimonio-quote {
      color: rgba(31, 17, 13, 0.12);
      font-family: var(--font-serif);
      font-size: 4.2rem;
      line-height: 0.8;
    }
    .testimonio-card h3 {
      margin: 0 0 4px;
      color: #1F110D;
      font-size: clamp(1.25rem, 1.8vw, 1.65rem);
      line-height: 1.1;
      font-weight: 650;
    }
    .testimonio-texto {
      font-family: var(--font-sans);
      font-style: normal;
      font-size: 0.94rem;
      line-height: 1.48;
      color: rgba(31, 17, 13, 0.72);
      margin: 0;
      flex: 1;
    }
    .testimonio-rubro {
      font-size: 0.8rem;
      color: rgba(31, 17, 13, 0.6);
      margin: 0;
    }
    .testimonios-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 24px;
    }
    .testimonios-control {
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: rgba(242, 234, 225, 0.94);
      color: #170804;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: transform 220ms ease, background 220ms ease;
    }
    .testimonios-control:hover {
      background: #FFFFFF;
      transform: translateY(-2px);
    }
    .testimonios-control::before {
      content: "";
      width: 9px;
      height: 9px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
    }
    .testimonios-control--prev::before {
      transform: rotate(-135deg);
      margin-left: 3px;
    }
    .testimonios-control--next::before {
      transform: rotate(45deg);
      margin-right: 3px;
    }
    .testimonios-dots {
      display: flex;
      align-items: center;
      gap: 6px;
      min-width: 46px;
      justify-content: center;
    }
    .testimonios-dot {
      width: 6px;
      height: 6px;
      border: 0;
      border-radius: 999px;
      background: rgba(242, 234, 225, 0.28);
      padding: 0;
      cursor: pointer;
      transition: width 220ms ease, background 220ms ease;
    }
    .testimonios-dot.is-active {
      width: 16px;
      background: rgba(242, 234, 225, 0.92);
    }
    @media (max-width: 900px) {
      .testimonios {
        padding: 78px 18px 88px;
      }
      .testimonios-track {
        --testimonios-gap: 16px;
      }
      .testimonio-card {
        flex-basis: min(84vw, 340px);
        min-height: 282px;
        padding: 26px;
      }
    }
    @media (max-width: 560px) {
      .testimonios-header {
        margin-bottom: 34px;
      }
      .testimonio-card {
        flex-basis: 100%;
      }
    }

    /* ══════════════════════════════════════
       CONTACTO
    ══════════════════════════════════════ */
    .contacto {
      background-color: var(--color-negro);
      padding: 96px 24px;
      color: var(--color-crema);
    }
    .contacto-grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: clamp(36px, 6vw, 72px);
      align-items: start;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
    }
    .contacto-form-panel {
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
    }
    .contacto-copy h2 {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 500;
      color: var(--color-crema);
      margin: 0 0 20px;
      line-height: 1.25;
    }
    .contacto-copy p {
      color: rgba(242, 234, 225, 0.7);
      font-size: 0.97rem;
      line-height: 1.75;
      margin: 0 0 16px;
    }
    .contacto-copy p:last-child { margin-bottom: 0; }
    .contacto-response-time {
      display: inline-flex;
      width: fit-content;
      padding: 9px 12px;
      border: 1px solid rgba(201, 194, 241, 0.32);
      border-radius: 6px;
      background: rgba(201, 194, 241, 0.08);
      color: var(--color-crema) !important;
      font-size: 0.9rem !important;
      line-height: 1.45 !important;
    }
    .contacto-wa {
      color: #C9C2F1;
      font-weight: 500;
      font-size: 0.97rem;
      text-decoration: none;
    }
    .contacto-wa:hover { text-decoration: underline; }

    /* form */
    .contacto .contact-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin: 0;
      margin-left: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
      background-color: transparent;
      box-shadow: none;
    }
    .contacto .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 0;
    }
    .contacto .form-group label {
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--color-crema);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .contacto .form-group input,
    .contacto .form-group textarea {
      width: 100%;
      padding: 15px 16px;
      border: 1px solid rgba(242, 234, 225, 0.18);
      border-radius: 6px;
      font-size: 0.95rem;
      font-family: var(--font-sans);
      color: var(--color-crema);
      background: rgba(242, 234, 225, 0.08);
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .contacto .form-group input:focus,
    .contacto .form-group textarea:focus {
      border-color: #C9C2F1;
      background: rgba(242, 234, 225, 0.11);
    }
    .contacto .form-group textarea {
      min-height: 132px;
      resize: vertical;
    }

    /* custom select */
    .contacto .custom-select { position: relative; }
    .contacto .custom-select-trigger {
      width: 100%;
      padding: 15px 16px;
      border: 1px solid rgba(242, 234, 225, 0.18);
      border-radius: 6px;
      font-size: 0.95rem;
      font-family: var(--font-sans);
      color: rgba(242, 234, 225, 0.7);
      background: rgba(242, 234, 225, 0.08);
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .contacto .custom-select-label,
    .contacto .custom-select-caret {
      color: inherit;
    }
    .contacto .custom-select-trigger.selected { color: var(--color-crema); }
    .contacto .custom-select-menu {
      display: none;
      position: absolute;
      top: calc(100% + 4px);
      left: 0; right: 0;
      background: #2E2926;
      border: 1px solid rgba(242, 234, 225, 0.18);
      border-radius: 6px;
      list-style: none;
      margin: 0; padding: 6px 0;
      z-index: 80;
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    }
    .contacto .custom-select.open .custom-select-menu {
      display: block;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .contacto .custom-select-menu li {
      padding: 10px 14px;
      font-size: 0.93rem;
      cursor: pointer;
      color: var(--color-crema);
    }
    .contacto .custom-select-menu li:hover { background: rgba(242, 234, 225, 0.08); }

    .contacto .eyebrow,
    .servicios .eyebrow {
      color: #C9C2F1;
    }
    .contacto .form-group input::placeholder,
    .contacto .form-group textarea::placeholder {
      color: rgba(242, 234, 225, 0.48);
    }
    .contacto .btn-full {
      margin-top: 4px;
      width: 100%;
      background: var(--color-violeta-suave);
      color: var(--color-negro);
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    @media (max-width: 768px) {
      .contacto-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .contacto-form-panel {
        padding: 0;
        border: 0;
        background: transparent;
      }
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    .site-footer {
      background-color: var(--color-negro);
      margin-top: 0;
      border-top: 1px solid rgba(139, 127, 212, 0.55);
      padding: 48px 24px;
    }
    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .footer-brand {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      color: #fff;
      font-weight: 500;
    }
    .footer-brand-accent { color: var(--color-violeta); }
    .footer-copy {
      font-size: 0.8rem;
      color: #888;
      margin-top: 4px;
    }
    .footer-nav {
      display: flex;
      gap: 24px;
    }
    .footer-nav a {
      font-size: 0.9rem;
      color: #aaa;
      text-decoration: none;
    }
    .footer-nav a:hover { color: #fff; text-decoration: none; }
    .footer-ig {
      font-size: 0.9rem;
      color: #aaa;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: color 0.2s;
    }
    .footer-ig:hover { color: #fff; text-decoration: none; }
    .footer-ig svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    @media (max-width: 640px) {
      .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    /* ══════════════════════════════════════
       WHATSAPP FLOTANTE
    ══════════════════════════════════════ */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 52px;
      height: 52px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      z-index: 100;
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
      transition: transform 0.2s;
    }
    .whatsapp-float:hover { transform: scale(1.08); text-decoration: none; }
    .whatsapp-float svg { width: 28px; height: 28px; }
    .back-to-top {
      position: fixed;
      right: 32px;
      bottom: 94px;
      z-index: 120;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(139, 127, 212, 0.48);
      background: rgba(46, 41, 38, 0.82);
      color: var(--color-crema);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background 0.22s ease;
    }
    .back-to-top::before {
      content: "";
      width: 10px;
      height: 10px;
      border-top: 1.5px solid currentColor;
      border-left: 1.5px solid currentColor;
      transform: translateY(3px) rotate(45deg);
    }
    .back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .back-to-top:hover {
      background: var(--color-violeta);
    }

    @media (max-width: 480px) {
      .header-inner {
        height: 46px;
        padding: 0 14px;
      }
      .header-inner::before {
        display: none;
      }
      .brand {
        font-size: 0.76rem;
        letter-spacing: 0.08em;
      }
      .hero-stage {
        min-height: auto;
      }
      .hero-copy {
        padding: 46px 24px 34px;
      }
      .hero .eyebrow {
        font-size: 0.7rem;
        line-height: 1.5;
        margin-bottom: 18px;
      }
      .hero h1 {
        font-size: clamp(2.75rem, 17vw, 4.15rem);
        line-height: 0.96;
      }
      .hero-lead {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-top: 22px;
      }
      .hero-proof {
        padding: 24px;
        gap: 8px;
        border-top: 1px solid rgba(242, 234, 225, 0.12);
      }
      .hero-proof strong {
        font-size: 1.65rem;
        max-width: 260px;
      }
      .hero-marquee-track {
        padding: 9px 0;
        font-size: 0.72rem;
      }
      .dolor,
      .quienes,
      .servicios,
      .proceso,
      .experiencia,
      .contacto,
      .testimonios {
        padding-left: 28px;
        padding-right: 28px;
      }
      .dolor-quote {
        font-size: 1.55rem;
        line-height: 1.35;
      }
      .dolor-points {
        margin-top: 28px;
      }
      .dolor-points p {
        padding: 16px 18px 16px 40px;
        font-size: 0.9rem;
      }
      .servicio-card {
        padding: 14px 14px 24px;
      }
      .servicio-media {
        aspect-ratio: 16 / 11;
        margin-bottom: 22px;
      }
      .servicio-card h3,
      .servicio-subtitulo,
      .servicio-card p {
        margin-left: 10px;
        margin-right: 10px;
      }
      .servicio-link {
        margin-left: 10px;
      }
      .proceso {
        padding-top: 72px;
        padding-bottom: 72px;
      }
      .proceso-header {
        margin-bottom: 34px;
      }
      .paso {
        padding: 20px;
      }
      .experiencia {
        padding-top: 72px;
        padding-bottom: 86px;
      }
      .experiencia-header {
        margin-bottom: 34px;
      }
      .experiencia-card {
        min-height: auto;
        padding: 28px 22px;
      }
      .experiencia-texto {
        margin: auto 0 18px;
        font-size: 1rem;
      }
      .experiencia-comilla {
        font-size: 4rem;
        right: 20px;
      }
      .contacto {
        padding-top: 72px;
        padding-bottom: 80px;
      }
      .contacto-response-time {
        width: 100%;
      }
      .form-note {
        font-size: 0.82rem;
      }
      .whatsapp-float {
        width: 46px;
        height: 46px;
        right: 18px;
        bottom: 18px;
      }
      .whatsapp-float svg {
        width: 24px;
        height: 24px;
      }
      .back-to-top {
        width: 40px;
        height: 40px;
        right: 21px;
        bottom: 74px;
      }
    }
