    :root {
      --indigo:       #4C5BEE;
      --indigo-light: #7B88F2;
      --indigo-dark:  #3A49DC;
      --slate:        #5F6A97;
      --dark:         #0B0B0F;
      --dark-mid:     #16161F;
      --white:        #ffffff;
      --off-white:    #F4F4F4;
      --text:         #111118;
      --text-muted:   #5C6470;
      --text-light:   #9CA3AF;
      --border:       rgba(76,91,238,0.14);
      --border-light: rgba(0,0,0,0.07);
      --shadow:       0 4px 24px rgba(11,11,15,0.07);
      --shadow-lg:    0 16px 48px rgba(11,11,15,0.12);
      --radius:       16px;
      --radius-sm:    8px;
      --font-d:       'Cormorant Garamond', Georgia, serif;
      --font-b:       'Outfit', sans-serif;
      --ease:         0.32s cubic-bezier(0.4,0,0.2,1);
      --cyan-dark:    var(--indigo-dark);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-b); color: var(--text); background: var(--off-white); overflow-x: hidden; line-height: 1.6; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: var(--font-b); cursor: pointer; border: none; background: none; }

    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 100px 0; }

    .tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--indigo); margin-bottom: 14px;
    }
    .tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--indigo); flex-shrink: 0; }

    .h2 {
      font-family: var(--font-d); font-size: clamp(2rem,4vw,3.2rem);
      font-weight: 600; line-height: 1.12; color: var(--dark);
    }
    .h2 em { font-style: italic; color: var(--indigo-dark); }

    /* ── Animations ── */
    .fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.in { opacity: 1; transform: none; }
    .fade-in { opacity: 0; transition: opacity 0.8s ease; }
    .fade-in.in { opacity: 1; }

    @media (prefers-reduced-motion: reduce) {
      .fade-up, .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
      .test-track { transition: none !important; }
      .hero-h1, .hero-sub, .cta-group, .hero-trust, .hero-visual, .hero-pill { animation: none !important; opacity: 1 !important; transform: none !important; }
      .float-card-1 { animation: none !important; }
      .wa-float::before, .wa-float::after { animation: none !important; }
    }

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      padding: 20px 0; transition: var(--ease);
    }
    .navbar.scrolled {
      background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
      padding: 13px 0; box-shadow: 0 2px 20px rgba(11,11,15,0.1);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }

    .logo { display: flex; align-items: center; gap: 11px; }

    .nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
    .nav-links a { color: rgba(11,11,15,0.65); font-size: 0.875rem; font-weight: 500; transition: color var(--ease); }
    .nav-links a:hover { color: var(--indigo); }
    .nav-links .nav-wa {
      background: var(--indigo); color: white !important; padding: 9px 20px;
      border-radius: 50px; font-weight: 600 !important;
    }
    .nav-links .nav-wa:hover { background: var(--indigo-dark); box-shadow: 0 4px 16px rgba(76,91,238,0.45); }

    /* Nav dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.7; }
    .nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
      background: rgba(11,11,15,0.97); backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
      padding: 6px 0; min-width: 220px;
      opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
      transform: translateX(-50%) translateY(-6px);
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu::before {
      content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
      border: 6px solid transparent; border-bottom-color: rgba(255,255,255,0.1);
      border-top: none;
    }
    .nav-dropdown-menu a {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 20px; font-size: 0.83rem !important;
      color: rgba(255,255,255,0.75) !important; font-weight: 500 !important;
      transition: color var(--ease), background var(--ease);
    }
    .nav-dropdown-menu a:hover { color: var(--indigo-light) !important; background: rgba(76,91,238,0.1); }
    .nav-dropdown-menu a span { font-size: 0.7rem; color: rgba(255,255,255,0.35); }

    .burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
    .burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--ease); }

    /* mobile nav overlay */
    .mob-nav {
      position: fixed; inset: 0; background: rgba(11,11,15,0.97);
      backdrop-filter: blur(20px); z-index: 950;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 30px; opacity: 0; pointer-events: none; transition: opacity var(--ease);
    }
    .mob-nav.open { opacity: 1; pointer-events: all; }
    .mob-nav a { font-family: var(--font-d); font-size: 2.2rem; font-weight: 600; color: rgba(255,255,255,0.8); transition: color var(--ease); }
    .mob-nav a:hover { color: var(--indigo-light); }
    .mob-close { position: absolute; top: 22px; right: 22px; color: white; }
    .mob-close svg { width: 28px; height: 28px; stroke: white; fill: none; }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      position: relative; min-height: 100vh; display: flex; align-items: center;
      background: var(--white); overflow: hidden; padding: 130px 0 80px;
    }
    .hero-glow-1 {
      position: absolute; top: -15%; right: -8%;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(76,91,238,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute; bottom: -20%; left: -10%;
      width: 440px; height: 440px; border-radius: 50%;
      background: radial-gradient(circle, rgba(76,91,238,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid { display: none; }
    .hero-ring { display: none; }

    .hero-layout {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    }

    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(76,91,238,0.08); border: 1px solid rgba(76,91,238,0.2);
      color: var(--indigo-dark); padding: 7px 18px; border-radius: 50px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
      margin-bottom: 26px; animation: fdDown 0.8s ease 0.15s both;
    }
    .hero-pill svg { width: 13px; height: 13px; fill: currentColor; }

    @keyframes fdDown { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:none; } }
    @keyframes fdUp   { from { opacity:0; transform:translateY(28px);  } to { opacity:1; transform:none; } }
    @keyframes fdRight{ from { opacity:0; transform:translateX(36px);  } to { opacity:1; transform:none; } }

    .hero-h1 {
      font-family: var(--font-d); font-size: clamp(2.6rem,5vw,4.6rem);
      font-weight: 700; color: var(--dark); line-height: 1.09;
      margin-bottom: 22px; animation: fdUp 0.8s ease 0.25s both;
    }
    .hero-h1 em { font-style: italic; color: var(--indigo); }

    .hero-sub {
      font-size: 1.05rem; color: var(--text-muted);
      max-width: 460px; line-height: 1.72; margin-bottom: 38px;
      animation: fdUp 0.8s ease 0.35s both;
    }

    .cta-group { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 48px; animation: fdUp 0.8s ease 0.45s both; }

    .btn-wa {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--indigo); color: white; padding: 15px 30px;
      border-radius: 50px; font-size: 0.97rem; font-weight: 600;
      transition: all var(--ease);
    }
    .btn-wa:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(76,91,238,0.45); }
    .btn-wa svg { width: 19px; height: 19px; fill: currentColor; }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: var(--dark); padding: 15px 28px;
      border-radius: 50px; font-size: 0.97rem; font-weight: 500;
      border: 1.5px solid rgba(11,11,15,0.2); transition: all var(--ease);
    }
    .btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(76,91,238,0.05); }
    .btn-ghost svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }

    .hero-trust { display: flex; flex-wrap: wrap; gap: 10px; animation: fdUp 0.8s ease 0.55s both; }
    .trust-chip {
      display: flex; align-items: center; gap: 7px;
      background: var(--off-white); border: 1px solid var(--border-light);
      color: var(--text); padding: 7px 14px; border-radius: 50px;
      font-size: 0.78rem; font-weight: 500;
    }
    .trust-chip svg { width: 14px; height: 14px; stroke: var(--indigo); fill: none; }

    /* hero right visual */
    .hero-visual { animation: fdRight 0.9s ease 0.35s both; }
    .hero-card {
      background: var(--white);
      border: 1px solid var(--border-light); border-radius: var(--radius);
      padding: 28px; position: relative;
      box-shadow: var(--shadow-lg);
    }
    .hero-card::before {
      content: ''; position: absolute; top: -1px; left: 28px; right: 28px;
      height: 2px; background: linear-gradient(90deg, transparent, var(--indigo), transparent);
    }
    .hero-mock {
      width: 100%; aspect-ratio: 4/3;
      background: var(--off-white);
      border-radius: var(--radius); margin-bottom: 20px; position: relative; overflow: hidden;
      box-shadow: var(--shadow);
    }
    .hero-clinic-photo { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; display: block; }
    .hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
    .hstat-n { font-family: var(--font-d); font-size: 1.7rem; font-weight: 700; color: var(--indigo); line-height: 1; }
    .hstat-l { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; line-height: 1.3; }

    .float-card {
      position: absolute; background: white; border-radius: 12px;
      padding: 12px 16px; box-shadow: 0 8px 28px rgba(11,11,15,0.14);
      display: flex; align-items: center; gap: 11px;
    }
    .float-card-1 { top: -18px; right: -18px; animation: bob 4s ease-in-out infinite; }
    @keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
    .fc-ico { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .fc-ico.g { background: #dcfce7; }
    .fc-ico.b { background: #dbeafe; }
    .fc-ico svg { width: 18px; height: 18px; }
    .fc-strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1; }
    .fc-span { font-size: 0.7rem; color: var(--text-muted); }

    /* ══════════════════════════════════════
       ANTES Y DESPUÉS
    ══════════════════════════════════════ */
    .resultados { background: var(--off-white); }
    .res-header { text-align: center; margin-bottom: 52px; }
    .res-sub { font-size: 1rem; color: var(--text-muted); margin-top: 16px; }

    .cs-wrap { max-width: 860px; margin: 0 auto; }

    .comparison-slider {
      position: relative; width: 100%; aspect-ratio: 16/9;
      border-radius: var(--radius); overflow: hidden;
      cursor: ew-resize; user-select: none;
      box-shadow: var(--shadow-lg);
      background: var(--border-light);
    }

    .cs-before, .cs-after {
      position: absolute; inset: 0;
    }
    .cs-after {
      clip-path: inset(0 50% 0 0);
    }
    .cs-before img, .cs-after img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      pointer-events: none;
    }

    /* placeholder mientras no hay fotos */
    .cs-before.cs-placeholder, .cs-after.cs-placeholder {
      display: flex; align-items: center; justify-content: center;
    }
    .cs-before { background: #d1d5e8; }
    .cs-after  { background: #c7f0e8; }
    .cs-before.cs-placeholder::after {
      content: 'Foto "Antes"'; font-size: 1.1rem; color: #5a6080; font-weight: 500;
    }
    .cs-after.cs-placeholder::after {
      content: 'Foto "Después"'; font-size: 1.1rem; color: #2d7a6a; font-weight: 500;
    }

    .cs-label {
      position: absolute; top: 16px; padding: 5px 14px;
      background: rgba(0,0,0,0.55); color: white;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; border-radius: 50px; pointer-events: none;
    }
    .cs-label-before { left: 16px; }
    .cs-label-after  { right: 16px; }

    .cs-handle {
      position: absolute; top: 0; bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 3px; background: white;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      pointer-events: none;
    }
    .cs-handle-btn {
      width: 44px; height: 44px; border-radius: 50%;
      background: white; box-shadow: 0 4px 16px rgba(0,0,0,0.22);
      display: flex; align-items: center; justify-content: center; gap: 0;
      flex-shrink: 0;
    }
    .cs-handle-btn svg { width: 16px; height: 16px; stroke: var(--indigo); }

    .cs-hint {
      text-align: center; font-size: 0.8rem; color: var(--text-muted);
      margin-top: 14px; letter-spacing: 0.02em;
    }

    /* ══════════════════════════════════════
       SOBRE
    ══════════════════════════════════════ */
    .sobre { background: var(--off-white); }
    .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

    .sobre-img-wrap { position: relative; }
    .sobre-img {
      width: 100%; aspect-ratio: 3/4;
      background: var(--off-white);
      border-radius: var(--radius); overflow: hidden; position: relative;
      box-shadow: var(--shadow-lg);
    }
    .sobre-doctor-photo { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; display: block; }

    .sobre-badge {
      position: absolute; bottom: -18px; right: -18px;
      background: var(--dark); color: white; border-radius: var(--radius);
      padding: 18px 22px; box-shadow: var(--shadow-lg);
    }
    .sobre-badge-n { font-family: var(--font-d); font-size: 2.1rem; font-weight: 700; color: var(--indigo-light); line-height: 1; }
    .sobre-badge-l { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 3px; }

    .sobre-content .h2 { margin-bottom: 22px; }
    .sobre-content p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.78; margin-bottom: 18px; }

    .dra-card {
      background: linear-gradient(135deg,rgba(76,91,238,0.05),rgba(11,11,15,0.02));
      border: 1px solid var(--border); border-radius: var(--radius-sm);
      padding: 18px; margin: 24px 0; display: flex; align-items: center; gap: 14px;
    }
    .dra-avatar {
      width: 52px; height: 52px;
      background: linear-gradient(135deg,var(--indigo),var(--indigo-dark));
      border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .dra-avatar svg { width: 26px; height: 26px; fill: white; }
    .dra-name { font-weight: 600; color: var(--dark); font-size: 0.92rem; }
    .dra-role { font-size: 0.8rem; color: var(--text-muted); }

    .feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .feat-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; color: var(--text); }
    .feat-dot {
      width: 19px; height: 19px; border-radius: 50%;
      background: rgba(76,91,238,0.1); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }
    .feat-dot svg { width: 10px; height: 10px; stroke: var(--indigo-dark); fill: none; stroke-width: 2.5; }

    /* ══════════════════════════════════════
       POR QUÉ ELEGIRNOS
    ══════════════════════════════════════ */
    .porque { background: var(--white); }
    .pq-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
    .pq-header .tag { justify-content: center; }
    .pq-header .h2 { text-align: center; }

    .pq-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
    .pq-item {
      background: var(--off-white); border: 1px solid var(--border-light);
      border-radius: var(--radius); padding: 32px 26px; text-align: center;
      box-shadow: var(--shadow); transition: all var(--ease);
    }
    .pq-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(76,91,238,0.2); background: white; }
    .pq-ico {
      width: 64px; height: 64px; background: rgba(76,91,238,0.08); border-radius: 18px;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
      transition: background var(--ease);
    }
    .pq-item:hover .pq-ico { background: rgba(76,91,238,0.15); }
    .pq-ico svg { width: 30px; height: 30px; stroke: var(--indigo); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .pq-item h3 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.2; }
    .pq-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

    /* ══════════════════════════════════════
       SERVICIOS
    ══════════════════════════════════════ */
    .servicios { background: var(--off-white); position: relative; }
    .svc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
    .svc-sub { color: var(--text-muted); font-size: 0.95rem; max-width: 300px; line-height: 1.7; }

    .svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

    .svc-card-img {
      width: calc(100% + 56px); max-width: none; margin: -28px -28px 20px;
      aspect-ratio: 16/9; object-fit: cover; display: block;
    }

    .svc-card {
      background: var(--white); border: 1px solid var(--border-light);
      border-radius: var(--radius); padding: 28px 28px 32px;
      box-shadow: var(--shadow);
      transition: all var(--ease); position: relative; overflow: hidden;
    }
    .svc-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg,var(--indigo),transparent);
      transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
    }
    .svc-card:hover { background: white; border-color: rgba(76,91,238,0.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .svc-card:hover::after { transform: scaleX(1); }

    .svc-ico {
      width: 50px; height: 50px;
      background: rgba(76,91,238,0.08); border: 1px solid rgba(76,91,238,0.15);
      border-radius: 13px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px; transition: var(--ease);
    }
    .svc-card:hover .svc-ico { background: rgba(76,91,238,0.15); }
    .svc-ico svg { width: 24px; height: 24px; stroke: var(--indigo); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .svc-name { font-family: var(--font-d); font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 9px; line-height: 1.2; }
    .svc-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

    /* ══════════════════════════════════════
       PROCESO
    ══════════════════════════════════════ */
    .proceso { background: var(--white); }
    .proc-head { text-align: center; max-width: 560px; margin: 0 auto 68px; }
    .proc-head .tag { justify-content: center; }

    .proc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; }
    .proc-grid::before {
      content: ''; position: absolute; top: 43px;
      left: calc(16.66% + 16px); right: calc(16.66% + 16px);
      height: 1px; background: linear-gradient(90deg,var(--indigo),rgba(76,91,238,0.25),var(--indigo));
    }

    .proc-item { text-align: center; }
    .proc-num {
      width: 86px; height: 86px; background: white; border: 2px solid var(--indigo);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 26px; position: relative; z-index: 1;
      box-shadow: 0 0 0 8px var(--off-white), var(--shadow);
    }
    .proc-num-i { font-family: var(--font-d); font-size: 1.7rem; font-weight: 700; color: var(--indigo-dark); }
    .proc-title { font-family: var(--font-d); font-size: 1.35rem; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
    .proc-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 250px; margin: 0 auto; }

    /* ══════════════════════════════════════
       TESTIMONIOS — CAROUSEL
    ══════════════════════════════════════ */
    .testimonios { background: var(--off-white); position: relative; }

    .test-head {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 40px;
    }
    .test-head-left { max-width: 520px; }
    .test-arrows { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }
    .test-prev, .test-next {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--white); border: 1.5px solid var(--border-light);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all var(--ease);
      box-shadow: var(--shadow); color: var(--text-muted);
    }
    .test-prev:hover, .test-next:hover {
      background: var(--indigo); border-color: var(--indigo); color: white;
      box-shadow: 0 4px 16px rgba(76,91,238,0.35);
    }
    .test-prev svg, .test-next svg {
      width: 18px; height: 18px; stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round;
    }

    .test-viewport { overflow: hidden; }
    .test-track {
      display: flex; gap: 22px;
      transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    }
    .test-card {
      flex: 0 0 calc((100% - 44px) / 3); min-width: 0;
      background: var(--white); border: 1px solid var(--border-light);
      border-radius: var(--radius); padding: 28px;
      box-shadow: var(--shadow); transition: border-color var(--ease), box-shadow var(--ease);
    }
    .test-card:hover { border-color: rgba(76,91,238,0.2); box-shadow: var(--shadow-lg); }

    .stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .stars svg { width: 15px; height: 15px; fill: #fbbf24; }
    .test-text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.77; font-style: italic; margin-bottom: 22px; }

    .test-author { display: flex; align-items: center; gap: 11px; }
    .test-av {
      width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-d); font-size: 1.05rem; font-weight: 600; color: white;
    }
    .av1{background:linear-gradient(135deg,#4C5BEE,#3A49DC)}
    .av2{background:linear-gradient(135deg,#8b5cf6,#7c3aed)}
    .av3{background:linear-gradient(135deg,#10b981,#059669)}
    .av4{background:linear-gradient(135deg,#f59e0b,#d97706)}
    .test-name { font-weight: 600; color: var(--dark); font-size: 0.88rem; }
    .test-svc { font-size: 0.76rem; color: var(--indigo); margin-top: 2px; }

    /* ══════════════════════════════════════
       CTA BANNER
    ══════════════════════════════════════ */
    .cta-banner { background: var(--white); padding: 0 0 100px; }
    .cta-banner-inner {
      background: var(--indigo); border-radius: 24px;
      padding: 56px 64px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .cta-banner-text h2 {
      font-family: var(--font-d); font-size: clamp(1.8rem,3vw,2.6rem);
      color: white; font-weight: 700; margin-bottom: 10px; line-height: 1.15;
    }
    .cta-banner-text h2 em { font-style: italic; color: rgba(255,255,255,0.75); }
    .cta-banner-text p { color: rgba(255,255,255,0.65); font-size: 0.97rem; max-width: 420px; line-height: 1.6; }
    .cta-banner-btns { display: flex; gap: 13px; flex-wrap: wrap; flex-shrink: 0; }
    .cta-banner-btn-primary {
      background: white; color: var(--indigo); border: none;
      padding: 15px 28px; border-radius: 50px;
      font-size: 0.97rem; font-weight: 700; cursor: pointer;
      display: inline-flex; align-items: center; gap: 9px;
      transition: all var(--ease); font-family: var(--font-b);
      text-decoration: none;
    }
    .cta-banner-btn-primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,11,15,0.18); }
    .cta-banner-btn-primary svg { width: 18px; height: 18px; fill: var(--indigo); }
    .cta-banner-btn-ghost {
      background: transparent; color: white;
      border: 1.5px solid rgba(255,255,255,0.45); padding: 15px 28px;
      border-radius: 50px; font-size: 0.97rem; font-weight: 500;
      transition: all var(--ease); display: inline-flex; align-items: center;
      text-decoration: none;
    }
    .cta-banner-btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

    /* ══════════════════════════════════════
       CONTACTO
    ══════════════════════════════════════ */
    .contacto { background: var(--off-white); }
    .contact-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .contact-header .tag { justify-content: center; }
    .suc-intro { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-top: 18px; }

    .suc-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 32px; }
    .suc-card {
      background: white; border: 1px solid var(--border-light);
      border-radius: var(--radius); padding: 32px 28px;
      display: flex; flex-direction: column;
      transition: all var(--ease); position: relative; overflow: hidden;
    }
    .suc-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--indigo), var(--indigo-dark));
    }
    .suc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(76,91,238,0.2); }

    .suc-badge {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(76,91,238,0.08); color: var(--indigo-dark);
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 4px 11px; border-radius: 50px; margin-bottom: 18px; width: fit-content;
    }
    .suc-card-name { font-family: var(--font-d); font-size: 1.65rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .suc-subtitle { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
    .suc-card-detail { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
    .suc-card-detail svg { width: 16px; height: 16px; stroke: var(--indigo-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; margin-top: 2px; }
    .suc-card-detail-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.45; }
    .suc-card-detail-text strong { color: var(--text); font-weight: 600; font-size: 0.92rem; }
    .suc-divider { height: 1px; background: var(--border-light); margin: 18px 0; }
    .suc-card-wa {
      display: flex; align-items: center; justify-content: center; gap: 9px;
      background: #25d366; color: white; padding: 13px 20px;
      border-radius: 50px; font-size: 0.9rem; font-weight: 600;
      margin-top: auto; transition: all var(--ease); text-align: center;
    }
    .suc-card-wa:hover { background: #22c35e; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(37,211,102,0.45); }
    .suc-card-wa svg { width: 18px; height: 18px; fill: white; }

    .pago-bar {
      background: white; border: 1px solid var(--border-light);
      border-radius: var(--radius); padding: 28px 32px;
      display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
      box-shadow: var(--shadow);
    }
    .pago-bar-left {}
    .pago-bar-title { font-family: var(--font-d); font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
    .pago-bar-sub { font-size: 0.82rem; color: var(--text-muted); }
    .pago-methods { display: flex; flex-wrap: wrap; gap: 8px; }
    .pago-method {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--off-white); border: 1px solid var(--border-light);
      color: var(--text); padding: 8px 16px; border-radius: 50px;
      font-size: 0.82rem; font-weight: 500;
    }
    .pago-method svg { width: 15px; height: 15px; stroke: var(--indigo); fill: none; stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; }

    /* ══════════════════════════════════════
       FAQ
    ══════════════════════════════════════ */
    .faq { background: var(--white); }
    .faq-header { text-align: center; margin-bottom: 52px; }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; }
    .faq-q {
      width: 100%; text-align: left; padding: 20px 24px; display: flex; align-items: center;
      justify-content: space-between; gap: 16px; font-size: 0.97rem; font-weight: 600;
      color: var(--dark); background: none; border: none; cursor: pointer; font-family: var(--font-b);
      transition: color var(--ease);
    }
    .faq-q:hover { color: var(--indigo-dark); }
    .faq-q svg { width: 18px; height: 18px; stroke: var(--indigo-dark); fill: none; stroke-width: 2;
      stroke-linecap: round; flex-shrink: 0; transition: transform var(--ease); }
    .faq-item.open .faq-q svg { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    .footer { background: var(--dark); padding: 60px 0 28px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.055); margin-bottom: 28px; }

    .footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.58); line-height: 1.72; max-width: 300px; margin: 16px 0 22px; }
    .socials { display: flex; gap: 9px; }
    .social-btn {
      width: 36px; height: 36px; background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.08); border-radius: 9px;
      display: flex; align-items: center; justify-content: center; transition: var(--ease);
    }
    .social-btn:hover { background: var(--indigo); border-color: var(--indigo); }
    .social-btn svg { width: 17px; height: 17px; stroke: white; fill: none; stroke-width: 1.5; }
    .social-btn.wa svg { fill: white; stroke: none; }

    .footer-col h3 { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.52); transition: color var(--ease); }
    .footer-col a:hover { color: var(--indigo-light); }
    .footer-contact-item { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 7px; }

    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.50); }

    /* ══════════════════════════════════════
       WA FLOAT
    ══════════════════════════════════════ */
    .wa-float {
      position: fixed; bottom: 26px; right: 26px; z-index: 800;
      width: 58px; height: 58px; background: #25d366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.48); transition: all var(--ease);
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
    .wa-float svg { width: 30px; height: 30px; fill: white; }
    .wa-float::before {
      content: ''; position: absolute; inset: -6px; border-radius: 50%;
      border: 2px solid rgba(37,211,102,0.38);
      animation: pulse-wa 2.2s ease-in-out infinite;
    }
    .wa-float::after {
      content: ''; position: absolute; inset: -14px; border-radius: 50%;
      border: 2px solid rgba(37,211,102,0.18);
      animation: pulse-wa 2.2s ease-in-out infinite 0.55s;
    }
    @keyframes pulse-wa { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.18);opacity:0.35} }

    .footer-suc-link { display: flex; align-items: center; gap: 6px; }
    .footer-suc-link span { font-size: 0.75rem; color: var(--indigo-light); opacity: 0.8; }

    /* Maps */
    .suc-map { width: 100%; height: 210px; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px; flex-shrink: 0; }
    .suc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

    .wa-tip {
      position: absolute; right: 68px; white-space: nowrap;
      background: var(--dark); color: white; font-size: 0.78rem; font-weight: 500;
      padding: 7px 13px; border-radius: 7px; pointer-events: none;
      opacity: 0; transform: translateX(6px); transition: all var(--ease);
    }
    .wa-float:hover .wa-tip { opacity: 1; transform: none; }

    /* ══════════════════════════════════════
       SERVICE CARD IMAGES
    ══════════════════════════════════════ */
    .svc-img-wrap {
      width: 100%; aspect-ratio: 3/2; border-radius: 10px; overflow: hidden;
      margin-bottom: 20px; position: relative; flex-shrink: 0;
      background: white; border: 1px dashed rgba(11,11,15,0.1);
      display: flex; align-items: center; justify-content: center;
    }
    .svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; display: block; }
    .svc-img-placeholder {
      display: flex; flex-direction: column; align-items: center; gap: 7px;
      color: rgba(11,11,15,0.22); font-size: 0.7rem; text-align: center;
      padding: 16px; line-height: 1.4; pointer-events: none;
    }
    .svc-img-placeholder svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }

    /* ══════════════════════════════════════
       ESTÉTICA CALLOUT
    ══════════════════════════════════════ */
    .estetica-callout {
      background: rgba(76,91,238,0.05); border: 1px solid rgba(76,91,238,0.2);
      border-radius: var(--radius); padding: 28px 32px; margin-bottom: 44px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; flex-wrap: wrap; position: relative;
    }
    .estetica-callout-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--indigo); color: white;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; width: fit-content;
    }
    .estetica-callout h3 {
      font-family: var(--font-d); font-size: 1.45rem; font-weight: 700;
      color: var(--dark); margin-bottom: 5px; line-height: 1.2;
    }
    .estetica-callout p { font-size: 0.86rem; color: var(--text-muted); max-width: 420px; line-height: 1.6; }
    .estetica-tags { display: flex; gap: 9px; flex-wrap: wrap; }
    .estetica-tag {
      background: rgba(76,91,238,0.07); border: 1px solid rgba(76,91,238,0.15);
      color: var(--indigo-dark); padding: 9px 18px; border-radius: 50px;
      font-size: 0.85rem; font-weight: 500;
    }
    .estetica-tag:hover { background: rgba(76,91,238,0.12); }
    .estetica-tag-wa { background: var(--indigo) !important; color: white !important; border-color: var(--indigo) !important; cursor: pointer; border: none; }
    .estetica-tag-wa:hover { background: var(--indigo-dark) !important; }

    /* ══════════════════════════════════════
       MODAL SELECTOR SUCURSAL
    ══════════════════════════════════════ */
    .suc-modal-overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(11,11,15,0.78); backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.28s ease;
    }
    .suc-modal-overlay.open { opacity: 1; pointer-events: all; }
    .suc-modal {
      background: white; border-radius: var(--radius);
      padding: 36px 32px; max-width: 420px; width: 90%;
      position: relative; box-shadow: var(--shadow-lg);
      transform: translateY(18px); transition: transform 0.28s ease;
    }
    .suc-modal-overlay.open .suc-modal { transform: none; }
    .suc-modal-close {
      position: absolute; top: 14px; right: 16px;
      font-size: 1.4rem; color: var(--text-muted); cursor: pointer;
      background: none; border: none; line-height: 1; padding: 4px 8px;
    }
    .suc-modal-close:hover { color: var(--text); }
    .suc-modal h3 {
      font-family: var(--font-d); font-size: 1.5rem; font-weight: 700;
      color: var(--dark); margin-bottom: 6px;
    }
    .suc-modal-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }
    .suc-modal-options { display: flex; flex-direction: column; gap: 10px; }
    .suc-modal-option {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 18px; border: 1.5px solid var(--border-light);
      border-radius: var(--radius-sm); cursor: pointer; transition: all var(--ease);
      text-decoration: none; color: var(--text);
    }
    .suc-modal-option:hover {
      border-color: var(--indigo); background: rgba(76,91,238,0.04);
      transform: translateX(3px);
    }
    .suc-modal-name { font-weight: 600; font-size: 0.95rem; color: var(--dark); display: block; }
    .suc-modal-addr { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; display: block; }
    .suc-modal-arrow { color: var(--indigo); flex-shrink: 0; margin-left: 10px; }
    .suc-modal-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    /* Mobile service collapse */
    .svc-toggle-wrap { display: none; text-align: center; margin-top: 28px; }
    .svc-toggle-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; border: 1.5px solid var(--border-light);
      color: var(--indigo); padding: 12px 24px; border-radius: 50px;
      font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all var(--ease);
      font-family: var(--font-b);
    }
    .svc-toggle-btn:hover { border-color: var(--indigo); box-shadow: 0 4px 16px rgba(76,91,238,0.2); }
    .svc-toggle-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform var(--ease); }
    .svc-toggle-btn.open svg { transform: rotate(180deg); }

    @media (max-width: 1024px) {
      .hero-layout { grid-template-columns: 1fr; }
      .hero-visual { max-width: 500px; margin: 0 auto; }
      .svc-grid { grid-template-columns: repeat(2,1fr); }
      .suc-cards { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      .test-card { flex: 0 0 calc((100% - 22px) / 2); }
      .pq-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 900px) {
      .suc-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
      .pago-bar { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .burger { display: flex; }
      .sobre-grid { grid-template-columns: 1fr; }
      .sobre-img-wrap { max-width: 400px; margin: 0 auto 40px; }
      .sobre-badge { display: none; }
      .proc-grid { grid-template-columns: 1fr; }
      .proc-grid::before { display: none; }
      .svc-header { flex-direction: column; align-items: flex-start; gap: 14px; }
      .cta-group { flex-direction: column; }
      .btn-wa, .btn-ghost { justify-content: center; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .feat-grid { grid-template-columns: 1fr; }
      .test-card { flex: 0 0 100%; }
      .test-head { flex-direction: column; align-items: flex-start; gap: 20px; }
      .cta-banner-inner { flex-direction: column; text-align: center; padding: 36px 28px; }
      .cta-banner-btns { justify-content: center; width: 100%; }
      .cta-banner-btn-primary, .cta-banner-btn-ghost { justify-content: center; }
      .estetica-callout { flex-direction: column; align-items: flex-start; }
      .pq-grid { grid-template-columns: 1fr 1fr; }
      /* Service collapse on mobile */
      .svc-secondary { display: none; }
      .svc-secondary.visible { display: block; }
      .svc-toggle-wrap { display: block; }
    }
    @media (max-width: 480px) {
      .svc-grid { grid-template-columns: 1fr; }
      .section { padding: 70px 0; }
      .suc-card { padding: 24px 20px; }
      .cta-banner { padding: 0 0 70px; }
    }
