    /* ── Design tokens ── */
    :root {
      --verde:       #9A81B5;  /* lila corporativo primario (marca) */
      --verde-dark:  #6b5382;  /* variante oscura del primario, para texto/hover con contraste AA */
      --verde-light: #f2eef7;  /* lila muy claro (fondos) */
      --verde-mid:   #B5A3C9;  /* lila secundario de marca (bordes, separadores, acentos) */
      --crema:       #faf8fc;
      --crema-dark:  #f0ebf5;
      --dorado:      #6b5382;  /* alias del morado oscuro: se retira el dorado, fuera de la paleta corporativa */
      --dorado-light:#f2eef7;
      --gris:        #969696;  /* gris corporativo (uso decorativo / texto secundario grande, no párrafos) */
      --texto:       #2c2640;  /* texto principal */
      --texto-medio: #544c66;  /* texto secundario (cumple AA sobre fondos claros) */
      --blanco:      #ffffff;
      --sombra:      0 4px 24px rgba(58,50,69,.10);
      --sombra-lg:   0 12px 48px rgba(58,50,69,.14);
      --radio:       14px;
      --radio-sm:    8px;
      --trans:       .3s ease;
    }

    /* ── Reset & base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 88px; }
    body {
      font-family: 'Corbel', 'Calibri', sans-serif;
      color: var(--texto);
      background: var(--blanco);
      line-height: 1.7;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── Typography ── */
    h1, h2, h3, h4 { font-family: 'Corbel', 'Calibri', sans-serif; line-height: 1.25; }
    h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
    h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
    p  { font-size: clamp(.95rem, 1.5vw, 1.05rem); color: var(--texto-medio); }

    /* ── Layout helpers ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section    { padding: 80px 0; }
    .section--alt { background: var(--crema); }
    .section--verde { background: var(--verde-light); }

    /* ── Buttons ── */
    .btn {
      -webkit-appearance: none;
      appearance: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'Corbel', 'Calibri', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      letter-spacing: .02em;
      white-space: nowrap;
      line-height: 1;
      transition: var(--trans);
      cursor: pointer;
      border: 2px solid transparent;
      outline: none;
      box-shadow: none;
      overflow: hidden;
      isolation: isolate;
    }
    .btn:focus-visible {
      outline: 3px solid var(--verde-mid);
      outline-offset: 3px;
    }
    .btn-primary {
      background: var(--verde);
      color: var(--blanco);
      box-shadow: 0 4px 14px rgba(154,129,181,.30);
    }
    .btn-primary:hover { background: var(--verde-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(154,129,181,.42); }
    .btn-outline {
      background: transparent;
      color: var(--verde);
      border-color: var(--verde);
    }
    .btn-outline:hover {
      background: var(--verde);
      color: var(--blanco);
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(154,129,181,.42);
    }
    .btn-dorado {
      background: var(--verde);
      color: var(--blanco);
    }
    .btn-dorado:hover { background: var(--verde-dark); transform: translateY(-2px); box-shadow: var(--sombra); }

    /* ── Pill / badge ── */
    .badge {
      display: inline-block;
      background: var(--verde-light);
      color: var(--verde-dark);
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 16px;
    }
    .badge--dorado { background: var(--verde-light); color: var(--verde-dark); }

    /* ═══════════════════════════════════════
       HEADER / NAV
    ═══════════════════════════════════════ */
    #header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--verde-mid);
      transition: box-shadow var(--trans);
    }
    #header.scrolled { box-shadow: var(--sombra); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }
    .nav-logo { flex-shrink: 0; display: flex; align-items: center; }
    .nav-logo img { height: 52px; width: auto; display: block; object-fit: contain; }

    /* ── Animación de entrada del header: el logo gira como una rueda y los apartados aparecen en barrido ── */
    @keyframes logoReveal {
      0%   { opacity: 0; transform: rotate(-360deg) scale(.5); }
      55%  { opacity: 1; }
      100% { opacity: 1; transform: rotate(0deg) scale(1); }
    }
    @keyframes navItemIn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .nav-logo img { animation: logoReveal 1.1s cubic-bezier(.2,.7,.2,1) .6s both; }
    .nav-links li { opacity: 0; animation: navItemIn .5s ease both; }
    .nav-links li:nth-child(1) { animation-delay: 1.05s; }
    .nav-links li:nth-child(2) { animation-delay: 1.14s; }
    .nav-links li:nth-child(3) { animation-delay: 1.23s; }
    .nav-links li:nth-child(4) { animation-delay: 1.32s; }
    .nav-links li:nth-child(5) { animation-delay: 1.41s; }
    .nav-links li:nth-child(6) { animation-delay: 1.50s; }
    .nav-links li:nth-child(7) { animation-delay: 1.59s; }
    .nav-cta { opacity: 0; animation: navItemIn .5s ease 1.7s both; }
    .hamburger { animation: navItemIn .5s ease 1.05s both; }
    @media (prefers-reduced-motion: reduce) {
      .nav-logo img, .nav-links li, .nav-cta, .hamburger {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }
    .nav-links a {
      display: block;
      padding: 8px 12px;
      border-radius: var(--radio-sm);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .02em;
      text-transform: uppercase;
      white-space: nowrap;
      color: var(--texto-medio);
      transition: var(--trans);
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--verde);
      background: var(--verde-light);
    }
    .nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
    .nav-cta .btn { padding: 12px 24px; }
    .nav-tel {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .88rem;
      font-weight: 600;
      white-space: nowrap;
      color: var(--verde-dark);
    }
    .nav-tel svg { flex-shrink: 0; }
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--texto);
      margin: 5px 0;
      border-radius: 2px;
      transition: var(--trans);
    }
    /* mobile menu */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--blanco);
      border-top: 1px solid var(--verde-mid);
      padding: 16px 24px 24px;
      gap: 4px;
    }
    .mobile-menu a {
      padding: 12px 16px;
      border-radius: var(--radio-sm);
      font-weight: 500;
      color: var(--texto-medio);
      transition: var(--trans);
    }
    .mobile-menu a:hover { background: var(--verde-light); color: var(--verde); }
    .mobile-menu.open { display: flex; }
    /* Holgura entre los grupos del nav, fluida según el ancho */
    @media(min-width:1025px){
      .nav-inner { gap: clamp(12px, 2vw, 28px); }
    }
    @media(max-width:1024px){
      .nav-links { display: none; }
      .hamburger { display: block; }
      .nav-tel { font-size: .85rem; }
    }
    @media(max-width:560px){
      .nav-inner { gap: 12px; }
      .nav-tel { font-size: 0; gap: 0; }
      .nav-tel svg { width: 20px; height: 20px; }
      .nav-cta { gap: 8px; }
      .nav-cta .btn { padding: 11px 18px; font-size: .85rem; }
    }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      background:
        radial-gradient(circle at 16% 26%, rgba(181,163,201,.15), transparent 44%),
        radial-gradient(circle at 90% 80%, rgba(154,129,181,.20), transparent 46%),
        radial-gradient(circle at 78% 6%, rgba(150,150,150,.06), transparent 42%),
        linear-gradient(135deg, var(--crema) 0%, var(--verde-light) 100%);
      padding: 80px 0 32px;
      overflow: hidden;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: -10% -5% auto -10%;
      height: 60%;
      background: radial-gradient(ellipse 50% 60% at 30% 0%, rgba(255,255,255,.55), transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.08fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-copy { display: flex; flex-direction: column; gap: 24px; }
    .hero-copy { position: relative; z-index: 2; }
    .hero-copy .badge { background: transparent; border: none; padding-left: 0; padding-right: 0; }
    .hero-copy h1 { color: var(--texto); }
    .hero-copy h1 em { font-style: normal; color: var(--verde); }
    .hero-copy p { font-size: 1.1rem; max-width: 480px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
    .hero-reassurance {
      display: flex;
      align-items: center;
      gap: 9px;
      max-width: 460px;
      margin-top: 10px;
      font-size: .95rem;
      font-weight: 400;
      line-height: 1.6;
      color: var(--texto-medio);
      transition: color .25s ease;
      cursor: pointer;
    }
    .hero-reassurance svg { color: var(--verde); flex-shrink: 0; }
    .hero-reassurance:hover { color: var(--verde-dark); }
    .hero-reassurance .u { text-underline-offset: 3px; }
    .hero-reassurance:hover .u { text-decoration: underline; }
    .hero-tagline { font-size: 1.15rem; max-width: 460px; color: var(--texto-medio); }

    /* ── Etiquetas de datos clave (sobre el fondo de la portada) ── */
    .intro-features {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      gap: 10px;
      max-width: 1000px;
      margin: 68px auto 0;
      position: relative;
      z-index: 1;
    }
    .intro-feature {
      position: relative;
      z-index: 1;
      background: var(--crema);
      border: 1px solid var(--verde-light);
      border-radius: 50px;
      padding: 7px 18px 7px 9px;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      box-shadow: 0 2px 10px rgba(58,50,69,.06);
    }
    .intro-feature .if-icon {
      width: 32px; height: 32px;
      background: var(--verde-light);
      color: var(--verde);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .intro-feature .if-icon svg { width: 16px; height: 16px; }
    .intro-feature strong { display: block; font-size: .84rem; color: var(--texto-medio); font-weight: 600; }
    @media(max-width:768px){
      .intro-features { flex-wrap: wrap; }
      .intro-feature { white-space: normal; }
    }
    .hero-trust {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding-top: 24px;
      border-top: 1px solid var(--verde-mid);
    }
    .hero-trust-item {
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 8px;
      font-size: .85rem;
      color: var(--texto-medio);
      font-weight: 500;
      text-align: left;
    }
    .hero-trust-item svg { color: var(--verde); flex-shrink: 0; margin-top: 2px; }
    .hero-img-wrap {
      position: relative;
    }
    /* Logo como realce de la imagen (asoma alrededor de la foto, único elemento del fondo) */
    .hero-img-wrap::before {
      content: '';
      position: absolute;
      top: 60%; left: 53%;
      transform: translate(-50%, -50%);
      width: 188%; aspect-ratio: 1 / 1;
      background: url("/assets/img/logo-purple.png") no-repeat center / contain;
      opacity: .10;
      z-index: 0;
      pointer-events: none;
      /* Se mantiene a la izquierda y se funde con el fondo hacia la derecha */
      -webkit-mask-image: linear-gradient(to right, #000 35%, rgba(0,0,0,.25) 70%, transparent 92%);
      mask-image: linear-gradient(to right, #000 35%, rgba(0,0,0,.25) 70%, transparent 92%);
    }
    .hero-img-wrap img {
      position: relative;
      z-index: 1;
      border-radius: 130px 30px 130px 30px;
      width: 100%;
      height: 480px;
      object-fit: cover;
      box-shadow: var(--sombra-lg);
      filter: grayscale(1);
      transition: transform .5s ease, filter .5s ease;
    }
    .hero-img-wrap:hover img { transform: scale(1.04); filter: grayscale(0); }
    @media(max-width:768px){
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-img-wrap img { height: 300px; }
    }

    /* ═══════════════════════════════════════
       SECTION HEADER
    ═══════════════════════════════════════ */
    .section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; position: relative; }
    .section-header > * { position: relative; z-index: 1; }
    /* Marca de agua del logo, amplia y centrada en la cabecera (elemento decorativo de fondo) */
    .section-header::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 320px; height: 320px;
      background: url("/assets/img/logo-purple.png") no-repeat center / contain;
      opacity: .07;
      pointer-events: none;
      z-index: 0;
    }
    .section-header p { margin-top: 12px; }
    .section-header p strong { color: var(--verde-dark); font-weight: 600; }

    /* Giro suave, discreto (medio giro) de la marca de agua al entrar la sección en pantalla */
    @keyframes headerLogoSpin {
      from { transform: translate(-50%, -50%) rotate(-180deg); }
      to   { transform: translate(-50%, -50%) rotate(0deg); }
    }
    .section-header.in-view::before,
    #faq.in-view::before {
      animation: headerLogoSpin 2.4s cubic-bezier(.22,.61,.36,1) both;
    }
    @media (prefers-reduced-motion: reduce) {
      .section-header.in-view::before,
      #faq.in-view::before { animation: none; }
    }

    /* Contacto: sin marca de agua en la cabecera */
    #contacto .section-header::before { display: none; }

    /* FAQ y Testimonios: la marca de agua pasa al fondo de la sección (más grande, en una esquina) */
    #faq .section-header::before,
    #testimonios .section-header::before { display: none; }
    #faq, #testimonios { position: relative; overflow: hidden; }
    #faq > .container, #testimonios > .container { position: relative; z-index: 1; }
    #faq::before, #testimonios::before {
      content: '';
      position: absolute;
      width: 540px; height: 540px;
      background: url("/assets/img/logo-purple.png") no-repeat center / contain;
      opacity: .05;
      pointer-events: none;
      z-index: 0;
    }
    #faq::before {
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 780px; height: 780px;
    }
    #testimonios::before { bottom: -150px; left: -150px; }

    /* ═══════════════════════════════════════
       METODOLOGÍA (pasos)
    ═══════════════════════════════════════ */
    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 820px;
      margin: 0 auto;
    }
    .step-card {
      background: var(--blanco);
      border-radius: var(--radio);
      box-shadow: var(--sombra);
      border-left: 4px solid var(--verde);
      overflow: hidden;
      transition: var(--trans);
    }
    .step-card:hover { box-shadow: var(--sombra-lg); }
    .step-q {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 20px;
      text-align: left;
      background: none;
      border: none;
      padding: 26px 28px;
      cursor: pointer;
      font-family: 'Corbel', 'Calibri', sans-serif;
    }
    .step-num {
      font-family: 'Corbel', 'Calibri', sans-serif;
      font-size: 2.4rem;
      color: var(--verde-mid);
      font-weight: 700;
      line-height: 1;
      flex-shrink: 0;
      min-width: 44px;
    }
    .step-heading { flex: 1; }
    .step-heading h3 { margin-bottom: 4px; }
    .step-heading p { margin: 0; font-size: .9rem; }
    .step-q svg { flex-shrink: 0; color: var(--verde); transition: transform var(--trans); }
    .step-q[aria-expanded="true"] svg { transform: rotate(180deg); }
    .step-a {
      display: none;
      padding: 0 28px 28px 92px;
    }
    .step-a.open { display: block; }
    .step-a p { margin-bottom: 14px; }
    .step-a p:last-child { margin-bottom: 0; }
    .step-a h4 {
      font-family: 'Corbel', 'Calibri', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      color: var(--texto);
      margin-bottom: 14px;
    }
    .step-detail-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 18px;
    }
    .step-detail-list li { display: flex; gap: 14px; align-items: flex-start; }
    .step-detail-icon {
      width: 34px; height: 34px;
      background: var(--verde-light);
      color: var(--verde);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .step-detail-icon svg { width: 17px; height: 17px; }
    .step-detail-text strong { display: block; font-size: .92rem; color: var(--texto); margin-bottom: 2px; }
    .step-detail-text span { font-size: .88rem; color: var(--texto-medio); line-height: 1.55; }
    .quote-block {
      position: relative;
      max-width: 640px;
      margin: 48px auto 0;
      background: var(--verde-light);
      border-radius: var(--radio);
      padding: 38px 44px 32px;
      text-align: center;
    }
    .quote-block::before {
      content: '';
      position: absolute;
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background-color: var(--verde);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.17 6C4.87 6 3 7.87 3 10.17c0 2.3 1.87 4.17 4.17 4.17.3 0 .59-.03.87-.09-.62 1.6-1.93 2.91-3.55 3.5a1 1 0 00.35 1.94c3.53-.66 6.16-3.86 6.16-7.52V10.17C11 7.87 9.13 6 7.17 6zm10 0c-2.3 0-4.17 1.87-4.17 4.17 0 2.3 1.87 4.17 4.17 4.17.3 0 .59-.03.87-.09-.62 1.6-1.93 2.91-3.55 3.5a1 1 0 00.35 1.94c3.53-.66 6.16-3.86 6.16-7.52V10.17C21 7.87 19.13 6 17.17 6z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 22px;
      box-shadow: 0 6px 16px rgba(154,129,181,.4);
    }
    .quote-block p {
      font-family: 'Corbel', 'Calibri', sans-serif;
      font-style: italic;
      font-size: 1.15rem;
      color: var(--verde-dark);
      line-height: 1.55;
      margin-bottom: 14px;
    }
    .quote-block cite {
      display: block;
      font-family: 'Corbel', 'Calibri', sans-serif;
      font-style: normal;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--verde-dark);
    }
    .quote-block--inline {
      text-align: left;
      background: var(--crema);
      border-radius: var(--radio-sm);
      max-width: none;
      margin: 32px 0 0;
      padding: 32px 24px 20px;
    }
    .quote-block--inline::before { left: 24px; transform: none; }
    .quote-block--inline p { font-size: 1.1rem; margin-top: 0; }
    @media(max-width:600px){
      .quote-block { padding: 36px 24px 28px; }
      .quote-block--inline { padding: 32px 20px 20px; }
      .step-q { padding: 20px 20px; gap: 14px; }
      .step-num { font-size: 1.8rem; min-width: 32px; }
      .step-a { padding: 0 20px 24px 20px; }
    }

    /* ═══════════════════════════════════════
       SERVICIOS (3 poblaciones)
    ═══════════════════════════════════════ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }
    .service-card {
      background: var(--blanco);
      border-radius: var(--radio);
      overflow: hidden;
      box-shadow: var(--sombra);
      display: flex;
      flex-direction: column;
      transition: var(--trans);
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-lg); }
    .service-card-img {
      height: 220px;
      overflow: hidden;
    }
    .service-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1);
      transition: transform .5s ease, filter .5s ease;
    }
    .service-card:hover .service-card-img img { transform: scale(1.04); filter: grayscale(0); }
    .service-card-body {
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .service-card-body h3 { color: var(--texto); margin: 0; }
    .service-card-body > p {
      margin: 0;
      line-height: 1.6;
    }
    .service-card-img.placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--verde-light) 0%, var(--verde-mid) 100%);
      color: var(--verde-dark);
      text-align: center;
      padding: 0 24px;
    }
    .service-card-img.placeholder svg { width: 36px; height: 36px; opacity: .7; }
    .service-card-img.placeholder span { font-size: .8rem; font-weight: 600; }
    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin: 0;
      flex: 1;                  /* empuja el botón al fondo para alinearlos */
    }
    .service-card-body .btn { margin-top: 4px; align-self: flex-start; }
    /* Listado de detalle homogéneo, siempre visible: categoría en línea propia + descripción debajo */
    .service-list-full li {
      display: block;
      position: relative;
      padding-left: 15px;
    }
    .service-list-full li::before {
      content: '';
      position: absolute;
      left: 0; top: 6px;
      width: 6px; height: 6px;
      background: var(--verde);
      border-radius: 50%;
    }
    .service-list-full li strong {
      display: block;
      font-size: .89rem;
      line-height: 1.3;
      color: var(--texto);
      margin-bottom: 2px;
    }
    .service-list-full li span {
      display: block;
      font-size: .87rem;
      color: var(--texto-medio);
      line-height: 1.5;
    }
    .service-icon {
      width: 50px; height: 50px;
      background: var(--verde-light);
      border-radius: 18px 6px 18px 6px;   /* eco de la forma de "hoja" del hero */
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 2px;
      transition: var(--trans);
    }
    .service-card:hover .service-icon {
      background: var(--verde);
      border-radius: 6px 18px 6px 18px;
    }
    .service-card:hover .service-icon svg { stroke: var(--blanco); }
    @media(max-width:900px){
      .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    }

    /* ═══════════════════════════════════════
       CHEQUE SERVICIO
    ═══════════════════════════════════════ */
    .cheque-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .cheque-copy { display: flex; flex-direction: column; gap: 20px; }
    .cheque-copy h2 { color: var(--texto); }
    .cheque-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 8px;
      border-radius: var(--radio);
      overflow: hidden;
      box-shadow: var(--sombra);
    }
    .cheque-table th {
      background: var(--verde);
      color: var(--blanco);
      padding: 12px 16px;
      text-align: left;
      font-size: .88rem;
      font-weight: 600;
    }
    .cheque-table td {
      padding: 12px 16px;
      font-size: .9rem;
      border-bottom: 1px solid var(--verde-light);
      color: var(--texto-medio);
    }
    .cheque-table tr:last-child td { border-bottom: none; }
    .cheque-table tr:nth-child(even) td { background: var(--verde-light); }
    .cheque-visual {
      background: linear-gradient(135deg, var(--verde) 0%, var(--verde-mid) 100%);
      border-radius: 20px;
      padding: 48px 40px;
      color: var(--blanco);
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .cheque-visual h3 { font-size: 1.8rem; color: var(--blanco); }
    .cheque-visual p { color: rgba(255,255,255,.85); }
    .cheque-steps {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .cheque-steps::before {
      content: '';
      position: absolute;
      left: 21px;
      top: 22px;
      bottom: 22px;
      width: 2px;
      background: rgba(255,255,255,.3);
    }
    .cheque-step {
      position: relative;
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }
    .cs-num {
      position: relative;
      z-index: 1;
      width: 44px; height: 44px;
      background: var(--blanco);
      color: var(--verde-dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 1.05rem;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0,0,0,.18);
    }
    .cs-text strong { display: block; font-size: 1.08rem; margin-bottom: 3px; }
    .cs-text span { font-size: .92rem; opacity: .88; line-height: 1.5; }
    @media(max-width:768px){
      .cheque-wrap { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════
       EQUIPO
    ═══════════════════════════════════════ */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-items: start;
      gap: 32px;
      max-width: 800px;
      margin: 0 auto;
    }
    /* Cromo: foto grande con info al pasar el cursor. La biografía se desliza hacia
       arriba tapando la foto; si no cabe entera, se desplaza dentro de su propio
       recuadro (en vez de cortarse) para que siempre se pueda leer completa. */
    .team-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--sombra);
      aspect-ratio: 3 / 4;
      transition: var(--trans);
      cursor: pointer;
    }
    .team-card:hover, .team-card:focus-within { transform: translateY(-6px); box-shadow: var(--sombra-lg); outline: none; }
    .team-photo {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform .6s ease;
    }
    .team-card:hover .team-photo, .team-card:focus-within .team-photo { transform: scale(1.06); }
    /* Capa de información */
    .team-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px 26px;
      color: var(--blanco);
      background: linear-gradient(to top, rgba(44,38,64,.92) 0%, rgba(44,38,64,.78) 28%, rgba(44,38,64,.15) 58%, rgba(44,38,64,0) 80%);
      opacity: 1;
      transition: background .4s ease;
    }
    .team-card:hover .team-overlay, .team-card:focus-within .team-overlay {
      background: linear-gradient(to top, rgba(44,38,64,.95) 0%, rgba(60,50,86,.9) 55%, rgba(74,63,99,.82) 100%);
    }
    .team-overlay h3 {
      font-size: 1.35rem;
      color: var(--blanco);
      margin-bottom: 8px;
    }
    .team-overlay .colegiado {
      font-size: .76rem;
      color: var(--blanco);
      font-weight: 600;
      background: rgba(255,255,255,.22);
      padding: 4px 12px;
      border-radius: 50px;
      display: inline-block;
      align-self: flex-start;
      backdrop-filter: blur(4px);
    }
    .team-rol {
      font-size: .86rem;
      color: rgba(255,255,255,.9);
      margin-top: 10px;
      font-weight: 500;
    }
    /* Contenido que se revela al hacer hover; si es más largo que el hueco disponible,
       se desplaza dentro de este recuadro en vez de cortarse sin más */
    .team-extra {
      max-height: 0;
      opacity: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      transform: translateY(8px);
      transition: max-height .5s ease, opacity .4s ease, transform .4s ease;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,.4) transparent;
    }
    .team-extra::-webkit-scrollbar { width: 5px; }
    .team-extra::-webkit-scrollbar-thumb { background: rgba(255,255,255,.35); border-radius: 3px; }
    .team-card:hover .team-extra, .team-card:focus-within .team-extra {
      max-height: 42%;
      opacity: 1;
      transform: translateY(0);
      margin-top: 14px;
      padding-right: 4px;
    }
    .team-extra p {
      font-size: .88rem;
      color: rgba(255,255,255,.92);
      line-height: 1.55;
      margin-bottom: 14px;
    }
    .team-tecnicas {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .tag {
      background: rgba(255,255,255,.18);
      color: var(--blanco);
      font-size: .73rem;
      font-weight: 600;
      padding: 4px 11px;
      border-radius: 50px;
      backdrop-filter: blur(4px);
    }
    /* Pista visual de "pasa el cursor" */
    .team-hint {
      position: absolute;
      top: 16px; right: 16px;
      width: 34px; height: 34px;
      background: rgba(255,255,255,.9);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--verde-dark);
      transition: var(--trans);
      z-index: 2;
    }
    .team-card:hover .team-hint { opacity: 0; transform: scale(.6); }
    @media(max-width:600px){
      .team-grid { grid-template-columns: 1fr; max-width: 380px; }
      /* En táctil mostramos la info siempre (no hay hover) */
      .team-extra { max-height: 46%; opacity: 1; transform: none; margin-top: 14px; padding-right: 4px; }
      .team-hint { display: none; }
      .team-overlay { background: linear-gradient(to top, rgba(44,38,64,.95) 0%, rgba(60,50,86,.9) 55%, rgba(74,63,99,.78) 100%); }
    }

    /* ═══════════════════════════════════════
       COLABORADORES (muro de logos)
    ═══════════════════════════════════════ */
    .colaboradores { text-align: center; }
    .colaboradores-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }
    .colaborador-logo {
      background: var(--blanco);
      border: 1px solid var(--verde-light);
      border-radius: var(--radio);
      box-shadow: var(--sombra);
      width: 150px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
      transition: var(--trans);
    }
    .colaborador-logo:hover { transform: translateY(-4px); box-shadow: var(--sombra-lg); }
    .colaborador-logo img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }
    @media(max-width:600px){
      .colaborador-logo { width: 128px; height: 78px; }
    }

    /* ═══════════════════════════════════════
       CTA INSTAGRAM
    ═══════════════════════════════════════ */
    .ig-cta {
      margin-top: 48px;
      background: linear-gradient(135deg, var(--verde) 0%, var(--verde-mid) 100%);
      border-radius: 20px;
      padding: 40px 44px;
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      color: var(--blanco);
    }
    .ig-cta-icon {
      width: 60px; height: 60px;
      background: rgba(255,255,255,.2);
      border-radius: 18px 6px 18px 6px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ig-cta-copy { flex: 1; min-width: 240px; }
    .ig-cta-copy h3 { color: var(--blanco); margin-bottom: 6px; }
    .ig-cta-copy p { color: rgba(255,255,255,.9); margin: 0; }
    .ig-cta .btn-primary {
      background: var(--blanco);
      color: var(--verde-dark);
      flex-shrink: 0;
    }
    .ig-cta .btn-primary:hover { background: var(--crema); transform: translateY(-2px); }
    @media(max-width:600px){
      .ig-cta { padding: 32px 24px; flex-direction: column; text-align: center; }
    }

    /* ═══════════════════════════════════════
       CARRUSEL DE LA CLÍNICA
    ═══════════════════════════════════════ */
    .clinica-carousel { position: relative; padding: 0 60px; margin-top: 8px; margin-bottom: 56px; }
    .clinica-grid {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 6px 4px 10px;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .clinica-grid::-webkit-scrollbar { display: none; }
    .clinica-photo {
      flex: 0 0 calc((100% - 40px) / 3);
      scroll-snap-align: start;
      min-width: 0;
      aspect-ratio: 4 / 5;
      border-radius: var(--radio);
      overflow: hidden;
      box-shadow: var(--sombra);
    }
    .clinica-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1);
      transition: transform .5s ease, filter .5s ease;
    }
    .clinica-photo:hover img { transform: scale(1.05); filter: grayscale(0); }
    #clinica-prev { left: 4px; }
    #clinica-next { right: 4px; }
    .clinica-carousel:hover .carousel-btn,
    .clinica-carousel:focus-within .carousel-btn {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(-50%) scale(1);
    }
    @media(max-width:900px){
      .clinica-photo { flex: 0 0 calc((100% - 20px) / 2); }
    }
    @media(max-width:600px){
      .clinica-carousel { padding: 0; }
      .clinica-photo { flex: 0 0 78%; }
      #clinica-prev { left: 2px; }
      #clinica-next { right: 2px; }
    }

    /* ═══════════════════════════════════════
       PREGUNTAS FRECUENTES
    ═══════════════════════════════════════ */
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--blanco);
      border-radius: var(--radio);
      box-shadow: var(--sombra);
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 22px 28px;
      font-family: 'Corbel', 'Calibri', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--texto);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: var(--trans);
    }
    .faq-q:hover { color: var(--verde); }
    .faq-q svg { flex-shrink: 0; transition: transform var(--trans); color: var(--verde); }
    .faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
    .faq-a {
      display: none;
      padding: 0 28px 22px;
    }
    .faq-a.open { display: block; }
    .faq-a p { font-size: .95rem; }

    /* ═══════════════════════════════════════
       TESTIMONIOS
    ═══════════════════════════════════════ */
    /* Carrusel deslizable */
    .testimonios-carousel { position: relative; padding: 0 60px; }
    .testimonios-grid {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 6px 4px 18px;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .testimonios-grid::-webkit-scrollbar { display: none; }
    .test-card {
      background: var(--blanco);
      border-radius: var(--radio);
      padding: 28px;
      box-shadow: var(--sombra);
      display: flex;
      flex-direction: column;
      gap: 16px;
      flex: 0 0 calc((100% - 48px) / 3);
      scroll-snap-align: start;
      min-width: 0;
      border: 1px solid transparent;
      transition: var(--trans);
    }
    .test-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--sombra-lg);
    }
    /* Flechas de navegación: superpuestas, aparecen al pasar el cursor */
    .carousel-nav { margin: 0; }
    .carousel-btn {
      position: absolute;
      top: 45%;
      transform: translateY(-50%) scale(.92);
      width: 48px; height: 48px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(8px);
      color: var(--verde-dark);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(58,50,69,.16);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease, background .25s ease, color .25s ease, transform .25s ease;
      z-index: 3;
    }
    /* Quedan en el espacio lateral, fuera de las tarjetas */
    #test-prev { left: 4px; }
    #test-next { right: 4px; }
    .testimonios-carousel:hover .carousel-btn,
    .testimonios-carousel:focus-within .carousel-btn {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(-50%) scale(1);
    }
    .carousel-btn:hover { background: var(--verde); color: var(--blanco); }
    @media(max-width:768px){
      /* En táctil: sin gutter y botones siempre visibles, pegados al borde */
      .testimonios-carousel { padding: 0; }
      .carousel-btn { opacity: 1; pointer-events: auto; transform: translateY(-50%) scale(1); width: 40px; height: 40px; background: rgba(255,255,255,.9); }
      #test-prev { left: 2px; }
      #test-next { right: 2px; }
    }
    .stars { color: var(--dorado); font-size: 1rem; letter-spacing: 2px; }
    .test-text { font-size: .92rem; color: var(--texto-medio); font-style: italic; flex: 1; }
    .test-author { display: flex; align-items: center; gap: 10px; }
    .test-avatar {
      width: 40px; height: 40px;
      background: var(--verde-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: .95rem;
      color: var(--verde-dark);
      flex-shrink: 0;
    }
    .test-author-info strong { display: block; font-size: .9rem; color: var(--texto); }
    .test-author-info span { font-size: .78rem; color: var(--texto-medio); }
    @media(max-width:900px){
      .test-card { flex: 0 0 calc((100% - 24px) / 2); }
    }
    @media(max-width:600px){
      .test-card { flex: 0 0 88%; }
    }

    /* ═══════════════════════════════════════
       CONTACTO / CTA FINAL
    ═══════════════════════════════════════ */
    .contacto-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: stretch;
    }
    .contacto-info { display: flex; flex-direction: column; gap: 28px; }
    .contacto-info h2 { color: var(--texto); }
    .contacto-dato {
      display: flex;
      gap: 16px;
      align-items: center;
    }
    .cd-icon {
      width: 48px; height: 48px;
      background: var(--verde-light);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--verde);
    }
    .cd-text strong { display: block; font-size: .9rem; color: var(--texto); margin-bottom: 4px; }
    .cd-text a { font-size: .9rem; color: var(--verde); font-weight: 600; transition: var(--trans); }
    .cd-text a:hover { color: var(--verde-dark); }
    .cd-text p { font-size: .9rem; }
    .horario-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4px 16px;
      font-size: .9rem;
    }
    .horario-grid .dia { font-weight: 400; color: var(--texto); }
    .horario-grid .hora { color: var(--texto-medio); }
    .contacto-form {
      background: var(--blanco);
      border-radius: var(--radio);
      padding: 40px;
      box-shadow: var(--sombra-lg);
    }
    .contacto-form h3 { margin-bottom: 24px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: .85rem;
      font-weight: 600;
      color: var(--texto);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--verde-mid);
      border-radius: var(--radio-sm);
      font-family: 'Corbel', 'Calibri', sans-serif;
      font-size: .95rem;
      color: var(--texto);
      background: var(--blanco);
      transition: var(--trans);
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--verde);
      box-shadow: 0 0 0 3px rgba(154,129,181,.18);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-note { font-size: .78rem; color: var(--texto-medio); margin-top: 12px; }
    @media(max-width:768px){
      .contacto-wrap { grid-template-columns: 1fr; }
      .contacto-form { padding: 28px 20px; }
    }

    /* ═══════════════════════════════════════
       MAPA
    ═══════════════════════════════════════ */
    .mapa-wrap {
      border-radius: var(--radio);
      overflow: hidden;
      box-shadow: var(--sombra);
      flex: 1;
      min-height: 320px;
    }
    .mapa-wrap iframe { width: 100%; height: 100%; border: none; }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: var(--verde);
      color: rgba(255,255,255,.78);
      padding: 32px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      align-items: start;
      gap: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,.1);
      margin-bottom: 20px;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 6px; }
    .footer-logo-lockup {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      margin-top: -18px;
    }
    .footer-logo-lockup img {
      height: 190px;
      width: auto;
      object-fit: contain;
    }
    .footer-brand p { font-size: .88rem; line-height: 1.6; color: rgba(255,255,255,.78); }
    .footer-col { padding-top: 0; }
    .footer-col h4 {
      font-family: 'Corbel', 'Calibri', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--blanco);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul a {
      font-size: .88rem;
      transition: var(--trans);
    }
    .footer-col ul a:hover { color: var(--verde-mid); }
    .footer-social { display: flex; gap: 10px; margin-top: 8px; }
    .footer-social a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: var(--trans);
    }
    .footer-social a:hover { background: var(--verde); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      font-size: .82rem;
    }
    .footer-legal { display: flex; gap: 16px; }
    .footer-legal a { transition: var(--trans); }
    .footer-legal a:hover { color: var(--verde-mid); }
    .footer-cs {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,.08);
      padding: 4px 12px;
      border-radius: 50px;
      font-size: .78rem;
    }
    @media(max-width:860px){
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media(max-width:480px){
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* ═══════════════════════════════════════
       FLOATING WHATSAPP
    ═══════════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      background: #25D366;
      color: var(--blanco);
      height: 56px;
      padding: 0 18px 0 16px;
      border-radius: 50px;
      display: flex; align-items: center; gap: 10px;
      font-weight: 600;
      font-size: .92rem;
      box-shadow: 0 6px 22px rgba(37,211,102,.40);
      transition: transform .25s ease, box-shadow .25s ease;
      animation: pulse-wa 2.8s infinite;
      white-space: nowrap;
    }
    .wa-float svg { flex-shrink: 0; }
    .wa-float .wa-label {
      max-width: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-width .35s ease, opacity .3s ease;
    }
    .wa-float:hover { transform: translateY(-2px); }
    .wa-float:hover .wa-label { max-width: 160px; opacity: 1; }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 6px 22px rgba(37,211,102,.40); }
      50% { box-shadow: 0 6px 34px rgba(37,211,102,.66); }
    }
    @media(max-width:600px){
      .wa-float { padding: 0; width: 56px; justify-content: center; }
      .wa-float .wa-label { display: none; }
    }

    .pub-link {
      color: var(--verde);
      font-weight: 600;
      font-size: .88rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--trans);
    }
    .pub-link:hover { gap: 10px; color: var(--verde-dark); }

    /* ═══════════════════════════════════════
       UTILITIES
    ═══════════════════════════════════════ */
    .text-center { text-align: center; }
    .mt-4 { margin-top: 16px; }
    .mt-6 { margin-top: 24px; }
    .divider {
      width: 60px;
      height: 3px;
      background: var(--verde);
      border-radius: 2px;
      margin: 16px auto 0;
    }
    .divider--left { margin-left: 0; }
