/* Extraido de servicios.html — paginas categoria + nosotros */
:root {
      --bg: #f8fafc;
      --bg-soft: #f1f5f9;
      --card: #ffffff;
      --accent: #d4af37;
      --accent-soft: rgba(212, 175, 55, 0.1);
      --text: #1e293b;
      --muted: #64748b;
      --border: #e2e8f0;
      --radius: 0px;
      --radius-button: 999px;
      --radius-badge: 999px;
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      overflow-x: hidden;
      max-width: 100%;
    }
    
    body {
      font-family: "Open Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #f1f5f9 0, #e2e8f0 55%, #ffffff 100%);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      position: relative;
      overflow-x: hidden;
      max-width: 100%;
      width: 100%;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 220, 120, 0.03) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    main {
      position: relative;
      z-index: 1;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
      overflow: visible;
    }

    /* Botones WhatsApp solo con borde en servicios */
    #servicios-interior .btn-whatsapp,
    #servicios-exterior .btn-whatsapp,
    #servicios-interior .btn-whatsapp:hover,
    #servicios-exterior .btn-whatsapp:hover {
      background: #25d366;
      color: #fff;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    #servicios-interior .btn-whatsapp::before,
    #servicios-exterior .btn-whatsapp::before {
      display: none;
    }

    /* WhatsApp en fichas del catálogo (contenido vive en #srv-body-strip tras el script de regiones) */
    #catalogo-servicios .srv-cat-region-inner .card .service-content > a.btn.btn-whatsapp,
    #catalogo-servicios .srv-cat-region-inner .card .service-content a.btn.btn-whatsapp {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 3.15rem;
      padding: 0.82rem 1.55rem !important;
      width: calc(100% - 1rem);
      max-width: min(20.5rem, 100%) !important;
      font-size: 0.95rem !important;
      font-weight: 700 !important;
      letter-spacing: 0.04em;
      text-transform: none;
      color: #fff !important;
      background: linear-gradient(180deg, #3be57f 0%, #25d366 42%, #1ebe5b 100%) !important;
      border: 1px solid rgba(255, 255, 255, 0.28) !important;
      border-radius: 999px !important;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.28) inset,
        0 8px 22px rgba(37, 211, 102, 0.38),
        0 2px 6px rgba(15, 23, 42, 0.12) !important;
      transform: translateY(0);
      transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-content a.btn.btn-whatsapp::before {
      display: none !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-content a.btn.btn-whatsapp:hover {
      transform: translateY(-2px);
      filter: brightness(1.04);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 12px 28px rgba(37, 211, 102, 0.45),
        0 3px 8px rgba(15, 23, 42, 0.14) !important;
    }

    @media (prefers-reduced-motion: reduce) {
      #catalogo-servicios .srv-cat-region-inner .card .service-content a.btn.btn-whatsapp,
      #catalogo-servicios .srv-cat-region-inner .card .service-content a.btn.btn-whatsapp:hover {
        transform: none !important;
        transition: none !important;
      }
    }

    /* SECTIONS GENERALES */
    section {
      padding: 3rem 0;
      scroll-margin-top: 90px;
      overflow: visible;
    }

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      margin-bottom: 2.5rem;
      position: relative;
    }

    .section-header::before {
      content: "";
      position: absolute;
      left: -1rem;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, #d4af37, #f2dc78);
      border-radius: 2px;
      opacity: 0.6;
      box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
    }

    .section-eyebrow {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--text), var(--muted));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.6;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.6rem;
      align-items: stretch;
      overflow: visible;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.6rem;
      align-items: stretch;
    }

    .card {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 12px;
      border: 1px solid rgba(226, 232, 240, 0.9);
      padding: 1.5rem 1.4rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
      position: relative;
      overflow: visible;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .card-highlight {
      overflow: visible;
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
      box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card h3 {
      font-size: 1rem;
      margin-bottom: 0.4rem;
    }

    .card p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.6rem;
    }

    .card ul {
      list-style: none;
      font-size: 0.86rem;
      color: var(--muted);
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .card ul li {
      position: relative;
      padding-left: 1.5rem;
    }

    .card ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.35rem;
      width: 6px;
      height: 6px;
      background: linear-gradient(135deg, #d4af37, #f2dc78);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }

    /* SECCIÓN PAQUETES */
    .price {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 1rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1rem;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(242, 220, 120, 0.04));
      border-radius: 0;
      border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .price span {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 400;
    }

    .card-highlight {
      border-color: rgba(212, 175, 55, 0.4);
      background: linear-gradient(to bottom, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.98));
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
    }

    /* PROCESO */
    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      font-size: 0.85rem;
    }

    .step {
      padding: 1.2rem 1.2rem;
      border-radius: 0;
      border: 1px solid rgba(226, 232, 240, 0.9);
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      position: relative;
      transition: all 0.3s ease;
    }

    .step::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, #d4af37, #f2dc78);
      border-radius: 0 2px 2px 0;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .step:hover {
      transform: translateX(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-color: rgba(212, 175, 55, 0.3);
    }

    .step:hover::before {
      opacity: 1;
    }

    .step-number {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 0.3rem;
    }

    .step-title {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    /* ESCALA DE INTENSIDAD DE PULIDO - Barra Horizontal Continua */
    .polish-intensity {
      margin: 1.2rem 0;
      padding: 1rem;
      background: rgba(241, 245, 249, 0.6);
      border-radius: 8px;
      border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .polish-intensity-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-bottom: 0.8rem;
      font-weight: 600;
    }

    .polish-scale {
      position: relative;
      width: 100%;
      height: 24px;
      background: rgba(226, 232, 240, 0.5);
      border-radius: 12px;
      overflow: hidden;
      margin-top: 0.5rem;
    }

    .polish-bar {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      background: linear-gradient(90deg, #86efac, #60a5fa);
      border-radius: 12px;
      transition: width 0.6s ease, background 0.6s ease;
      box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    }

    .polish-scale[data-level="1"] .polish-bar {
      width: 33.33%;
      background: linear-gradient(90deg, #86efac, #6ee7b7);
    }

    .polish-scale[data-level="2"] .polish-bar {
      width: 66.66%;
      background: linear-gradient(90deg, #86efac, #60a5fa);
    }

    .polish-scale[data-level="3"] .polish-bar {
      width: 100%;
      background: linear-gradient(90deg, #86efac, #60a5fa);
      box-shadow: 0 2px 12px rgba(34, 197, 94, 0.3);
    }

    .polish-markers {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0.3rem;
      pointer-events: none;
    }

    .polish-marker {
      font-size: 0.65rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* ICONOS DE SERVICIOS */
    .service-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(242, 220, 120, 0.08));
      border: 2px solid rgba(212, 175, 55, 0.2);
      border-radius: 0;
      margin-bottom: 1rem;
      flex-shrink: 0;
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
      stroke: #d4af37;
      fill: none;
      stroke-width: 2;
    }

    .service-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 1rem;
    }

    .service-icon {
      margin-bottom: 1rem;
      margin-right: 0;
    }

    .service-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      text-align: center;
      width: 100%;
    }

    .service-content h3 {
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .service-content > p {
      margin-bottom: 1rem;
      text-align: center;
    }

    .service-content ul {
      flex: 1;
      margin-bottom: 1.2rem;
      text-align: left;
      list-style-position: inside;
    }

    .service-content .polish-intensity {
      margin: 1.2rem 0;
    }

    .service-content .ceramic-variant {
      margin: 1.5rem 0 0 0;
      text-align: left;
    }

    .service-content .btn-whatsapp {
      margin-bottom: 1.5rem !important;
    }

    .service-content .ceramic-variant-title,
    .service-content .ceramic-variant-desc {
      text-align: center;
    }

    .service-content .ceramic-variant ul {
      text-align: left;
    }

    .service-content .btn-whatsapp {
      margin-top: auto !important;
      margin-bottom: 1rem !important;
      align-self: center;
      width: calc(100% - 1rem);
      max-width: 280px;
    }

    .service-content .ceramic-variant {
      margin-bottom: 1.5rem;
    }

    /* Listas de inclusiones: colapsables (se envuelven con JS en <details>) */
    .service-content details.service-inclusions {
      width: 100%;
      flex: 0 0 auto;
      margin: 0 0 1rem;
      /* Centra el summary (inline-flex); el cuerpo vuelve a izquierda en .service-inclusions__inner */
      text-align: center;
    }

    .service-content details.service-inclusions > summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      margin: 0.15rem auto 0;
      padding: 0.42rem 0.2rem 0.5rem;
      max-width: min(22rem, 100%);
      width: fit-content;
      font-family: "Open Sans", "Inter", system-ui, sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #9a7209;
      border-bottom: 1px solid transparent;
      transition:
        border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.28s ease,
        letter-spacing 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .service-content details.service-inclusions > summary::-webkit-details-marker {
      display: none;
    }

    .service-content details.service-inclusions > summary::marker {
      content: "";
    }

    .service-content details.service-inclusions .service-inclusions__label--less {
      display: none;
    }

    .service-content details.service-inclusions[open] > summary .service-inclusions__label--more {
      display: none;
    }

    .service-content details.service-inclusions[open] > summary .service-inclusions__label--less {
      display: inline;
    }

    .service-content details.service-inclusions > summary::after {
      content: "";
      width: 0.42rem;
      height: 0.42rem;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-0.08rem);
      transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
      flex-shrink: 0;
      opacity: 0.85;
    }

    .service-content details.service-inclusions[open] > summary::after {
      transform: rotate(-135deg) translateY(0.06rem);
    }

    .service-content details.service-inclusions > summary:hover {
      border-bottom-color: rgba(212, 175, 55, 0.42);
      letter-spacing: 0.16em;
    }

    .service-content details.service-inclusions > summary:focus-visible {
      outline: 2px solid rgba(212, 175, 55, 0.65);
      outline-offset: 3px;
      border-radius: 4px;
    }

    .service-content details.service-inclusions .service-para-quien {
      margin: 0 0 0.9rem !important;
      text-align: left !important;
    }

    .service-content details.service-inclusions .service-inclusions__inner {
      text-align: left;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition:
        max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease;
    }

    .service-content details.service-inclusions[open] .service-inclusions__inner {
      max-height: 2400px;
      opacity: 1;
    }

    @media (prefers-reduced-motion: reduce) {
      .service-content details.service-inclusions > summary,
      .service-content details.service-inclusions > summary::after,
      .service-content details.service-inclusions .service-inclusions__inner {
        transition-duration: 0.01ms !important;
      }

      .service-content details.service-inclusions:not([open]) .service-inclusions__inner {
        display: none !important;
      }

      .service-content details.service-inclusions[open] .service-inclusions__inner {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
      }

      #catalogo-servicios .ceramic-variant-details > summary,
      #catalogo-servicios .ceramic-variant-details > summary::after,
      #catalogo-servicios .ceramic-variant-details__body {
        transition-duration: 0.01ms !important;
      }

      #catalogo-servicios .ceramic-variant-details:not([open]) .ceramic-variant-details__body {
        display: none !important;
      }

      #catalogo-servicios .ceramic-variant-details[open] .ceramic-variant-details__body {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
      }
    }

    /* Cerámico: bloque desplegable en catálogo (estructura inyectada por JS) */
    #catalogo-servicios .ceramic-variant-details {
      width: 100%;
    }

    #catalogo-servicios .ceramic-variant-details__summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.45rem 0.75rem;
      padding: 0.05rem 0;
      margin: 0;
    }

    #catalogo-servicios .ceramic-variant-details__summary::-webkit-details-marker {
      display: none;
    }

    #catalogo-servicios .ceramic-variant-details__summary::marker {
      content: "";
    }

    #catalogo-servicios .ceramic-variant-details__summary .ceramic-variant-title {
      text-align: left !important;
      flex: 1 1 10rem;
      margin: 0 !important;
    }

    #catalogo-servicios .ceramic-variant-details__labels {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.64rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #9a7209;
      font-family: "Open Sans", "Inter", system-ui, sans-serif;
    }

    #catalogo-servicios .ceramic-variant-details__less {
      display: none;
    }

    #catalogo-servicios .ceramic-variant-details[open] .ceramic-variant-details__more {
      display: none;
    }

    #catalogo-servicios .ceramic-variant-details[open] .ceramic-variant-details__less {
      display: inline;
    }

    #catalogo-servicios .ceramic-variant-details__summary::after {
      content: "";
      width: 0.4rem;
      height: 0.4rem;
      border-right: 2px solid #9a7209;
      border-bottom: 2px solid #9a7209;
      transform: rotate(45deg) translateY(-0.06rem);
      transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
      flex-shrink: 0;
      opacity: 0.85;
    }

    #catalogo-servicios .ceramic-variant-details[open] .ceramic-variant-details__summary::after {
      transform: rotate(-135deg) translateY(0.05rem);
    }

    #catalogo-servicios .ceramic-variant-details__summary:focus-visible {
      outline: 2px solid rgba(212, 175, 55, 0.55);
      outline-offset: 3px;
      border-radius: 4px;
    }

    #catalogo-servicios .ceramic-variant-details__body {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition:
        max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;
    }

    #catalogo-servicios .ceramic-variant-details[open] .ceramic-variant-details__body {
      max-height: 1200px;
      opacity: 1;
    }

    #catalogo-servicios .ceramic-variant-details__body .ceramic-variant-desc {
      margin-top: 0.55rem !important;
    }

    #catalogo-servicios .ceramic-variant-details__body > a {
      display: inline-block;
      margin-top: 0.5rem;
    }

    .ceramic-variant {
      margin-top: 1rem;
      padding: 1rem;
      background: rgba(212, 175, 55, 0.05);
      border-left: 3px solid rgba(212, 175, 55, 0.3);
      border-radius: 8px;
    }

    /* Badge Recomendado — pastilla en esquina (legible, sin cinta diagonal) */
    .card-highlight {
      border: 2px solid rgba(212, 175, 55, 0.3);
      box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    }

    .recommended-badge {
      position: absolute;
      top: 0.6rem;
      right: 0.6rem;
      left: auto;
      transform: none;
      background: linear-gradient(135deg, #f7eacb 0%, #e8c96a 42%, #d4af37 100%);
      color: #1c1917;
      padding: 0.26rem 0.62rem;
      font-size: 0.62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      box-shadow: 0 2px 10px rgba(125, 95, 40, 0.18);
      z-index: 10;
      white-space: nowrap;
      line-height: 1.25;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .recommended-badge::before {
      content: none;
      margin: 0;
    }

    .price-tag {
      text-align: center;
      margin: 1.2rem 0 1rem 0;
      position: relative;
      display: block;
    }

    .price-tag .price-label {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
      display: inline-block;
      vertical-align: middle;
      margin-right: 0.5rem;
    }

    .price-tag .price-amount {
      background: linear-gradient(135deg, #d4af37, #f2dc78);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: -0.03em;
      display: inline-block;
      line-height: 1.1;
      vertical-align: middle;
      position: relative;
    }

    .price-tag .price-amount::before {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -4px;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }

    .ceramic-variant-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.3rem;
    }

    .ceramic-variant-desc {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* Extras interior — tarjetas destacadas */
    .interior-extras-wrap {
      margin-top: 2.75rem;
      padding: clamp(1.65rem, 3vw, 2rem) clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.5rem, 2.5vw, 1.85rem);
      border-radius: 18px;
      background: linear-gradient(168deg, #ffffff 0%, #faf9f7 50%, #f8fafc 100%);
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 24px 56px -28px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.06);
    }

    .interior-extras-head {
      text-align: center;
      margin-bottom: 1.5rem;
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
    }

    .interior-extras-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #b8941e;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(242, 220, 120, 0.1));
      border: 1px solid rgba(212, 175, 55, 0.28);
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      margin-bottom: 0.65rem;
    }

    .interior-extras-head h3 {
      margin: 0 0 0.6rem 0;
      font-size: clamp(1.15rem, 2.5vw, 1.35rem);
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .interior-extras-head p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .interior-extras-head p + p {
      margin-top: 0.55rem;
    }

    .interior-extras-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.15rem;
      align-items: stretch;
    }

    @media (max-width: 720px) {
      .interior-extras-grid {
        grid-template-columns: 1fr;
      }
    }

    .interior-extra-card {
      position: relative;
      padding: 1.45rem 1.35rem 1.35rem;
      border-radius: 16px;
      background: linear-gradient(165deg, #ffffff 0%, #faf9f7 100%);
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 20px 48px -24px rgba(15, 23, 42, 0.12);
      overflow: hidden;
      text-align: left;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .interior-extra-card:hover {
      border-color: rgba(212, 175, 55, 0.28);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.98) inset,
        0 24px 56px -22px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(212, 175, 55, 0.08);
      transform: translateY(-2px);
    }

    .interior-extra-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, #c4a632, #f2dc78, #c4a632, transparent);
      opacity: 0.95;
    }

    .interior-extra-card__num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.75rem;
      height: 1.75rem;
      font-size: 0.75rem;
      font-weight: 800;
      color: #fff;
      background: linear-gradient(135deg, #c4a632, #d4af37);
      border-radius: 8px;
      margin-bottom: 0.5rem;
      box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
    }

    .interior-extra-card h4 {
      margin: 0 0 0.5rem 0;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }

    .interior-extra-card .interior-extra-lead {
      margin: 0 0 0.65rem 0;
      font-size: 0.84rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .interior-extra-card .interior-extra-lead strong {
      color: var(--text);
    }

    .interior-extra-meta {
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 0.82rem;
      color: var(--text);
      line-height: 1.55;
    }

    .interior-extra-meta li {
      position: relative;
      padding-left: 1rem;
      margin-bottom: 0.45rem;
    }

    .interior-extra-meta li:last-child {
      margin-bottom: 0;
    }

    .interior-extra-meta li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: linear-gradient(135deg, #d4af37, #f2dc78);
    }

    .interior-extras-foot {
      margin-top: 1.25rem;
      padding-top: 1.1rem;
      border-top: 1px dashed rgba(212, 175, 55, 0.25);
      text-align: center;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.55;
    }

    .process-image {
      border-radius: 0;
      overflow: hidden;
      margin: 1.5rem 0;
      border: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
      height: 400px;
      position: relative;
    }

    .process-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    /* SERVICIOS ADICIONALES */
    .service-card {
      position: relative;
      padding-left: 1.5rem;
      border-left: 4px solid #d4af37;
    }

    .service-card::before {
      content: "";
      position: absolute;
      left: -12px;
      top: 1.5rem;
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, #d4af37, #f2dc78);
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }

      .grid-2 {
        grid-template-columns: minmax(0, 1fr);
      }

      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .process-image {
        height: 300px;
      }

      .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .service-icon {
        margin-bottom: 0.8rem;
        margin-left: auto;
        margin-right: auto;
      }

      .polish-scale {
        flex-wrap: wrap;
        gap: 0.3rem;
      }

      .polish-step-label {
        font-size: 0.6rem;
        top: -18px;
      }
    }

    @media (max-width: 720px) {
      .steps {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 1.1rem;
      }
    }

/* Catálogo: fila de pestañas + franja de contenido a ancho de sección (regiones en #srv-body-strip) */
    .srv-cat-triggers-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.85rem;
      align-items: stretch;
    }

    .srv-cat-panel {
      min-width: 0;
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      border: 1px solid rgba(226, 232, 240, 0.95);
      background: #ffffff;
      overflow: hidden;
      box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
      transition:
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        transform 0.25s ease,
        background 0.3s ease;
    }

    /* Cerrados: tarjeta oscura tipo selector boutique */
    .srv-cat-panel:not(.is-open) {
      background: linear-gradient(165deg, #151c2e 0%, #0d1321 42%, #121a2c 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 12px 32px -8px rgba(0, 0, 0, 0.55),
        0 0 40px -12px rgba(212, 175, 55, 0.12);
    }

    .srv-cat-panel:not(.is-open):hover {
      border-color: rgba(212, 175, 55, 0.45);
      transform: translateY(-2px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 0 1px rgba(212, 175, 55, 0.22),
        0 20px 44px -10px rgba(0, 0, 0, 0.6),
        0 0 48px -8px rgba(212, 175, 55, 0.22);
    }

    .srv-cat-panel.is-open {
      background: #ffffff;
      border-color: rgba(212, 175, 55, 0.42);
      box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.12),
        0 20px 48px -14px rgba(15, 23, 42, 0.18),
        0 0 36px -12px rgba(212, 175, 55, 0.18);
    }

    .srv-cat-trigger {
      flex: 1 1 auto;
      width: 100%;
      margin: 0;
      padding: 1.2rem 1.4rem;
      border: none;
      cursor: pointer;
      font: inherit;
      color: var(--text);
      text-align: left;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 1rem;
      min-height: 4.1rem;
      transition: background 0.28s ease, transform 0.2s ease, box-shadow 0.28s ease;
    }

    .srv-cat-panel:not(.is-open) .srv-cat-trigger {
      background: transparent;
      color: #f1f5f9;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .srv-cat-panel:not(.is-open) .srv-cat-trigger:hover {
      background: linear-gradient(105deg, rgba(212, 175, 55, 0.14) 0%, transparent 55%);
    }

    .srv-cat-panel.is-open .srv-cat-trigger {
      padding: 1.05rem 1.35rem;
      min-height: 3.9rem;
      background: linear-gradient(98deg, rgba(212, 175, 55, 0.16) 0%, rgba(255, 252, 246, 0.99) 38%, #ffffff 100%);
      border-bottom: 1px solid rgba(212, 175, 55, 0.35);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .srv-cat-panel.is-open .srv-cat-trigger:hover {
      background: linear-gradient(98deg, rgba(212, 175, 55, 0.22) 0%, #ffffff 52%);
    }

    .srv-cat-trigger:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .srv-cat-trigger-icon {
      flex-shrink: 0;
      color: var(--accent);
      filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    }

    .srv-cat-panel:not(.is-open) .srv-cat-trigger-icon {
      width: 28px;
      height: 28px;
      color: #f2dc78;
      filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.28));
    }

    .srv-cat-panel.is-open .srv-cat-trigger-icon {
      width: 26px;
      height: 26px;
      color: #9a7209;
      filter: drop-shadow(0 1px 4px rgba(212, 175, 55, 0.2));
    }

    .srv-cat-label {
      font-size: clamp(1rem, 2vw, 1.18rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .srv-cat-panel:not(.is-open) .srv-cat-label {
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-size: clamp(0.92rem, 1.9vw, 1.06rem);
      color: #ffffff;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
    }

    .srv-cat-panel.is-open .srv-cat-label {
      color: #0f172a;
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    .srv-cat-chevron {
      display: block;
      width: 0.5rem;
      height: 0.5rem;
      margin-left: auto;
      flex-shrink: 0;
      border-right: 2.5px solid rgba(15, 23, 42, 0.45);
      border-bottom: 2.5px solid rgba(15, 23, 42, 0.45);
      transform: rotate(-45deg);
      transition: transform 0.32s ease, border-color 0.25s ease;
    }

    .srv-cat-panel:not(.is-open) .srv-cat-chevron {
      width: 0.55rem;
      height: 0.55rem;
      border-right-width: 2.5px;
      border-bottom-width: 2.5px;
      border-color: rgba(242, 220, 120, 0.9);
    }

    .srv-cat-panel.is-open .srv-cat-chevron {
      transform: rotate(45deg);
      border-color: rgba(15, 23, 42, 0.55);
    }

    /* Franja de contenido: hermana del .container, ancho completo de la sección */
    .srv-cat-body-strip {
      width: 100%;
      margin-top: 1.25rem;
      padding: 2rem 0 2.75rem;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.98) 100%);
      border-top: 1px solid rgba(226, 232, 240, 0.95);
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
      overflow: visible;
    }

    .srv-cat-body-strip[hidden] {
      display: none !important;
    }

    /* Al abrir categoría: scroll suave respeta navbar fija (premium --nav-h) */
    #srv-body-strip {
      scroll-margin-top: calc(var(--nav-h, 76px) + 12px);
    }

    .srv-cat-body-inner .srv-cat-region {
      display: none;
      overflow: visible;
    }

    .srv-cat-body-inner .srv-cat-region.is-open {
      display: block;
    }

    .srv-cat-body-inner .srv-cat-region-inner {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0;
      overflow: visible;
      min-height: 0;
    }

    .srv-cat-body-inner .section-header {
      margin-bottom: 1.25rem;
    }

    .srv-cat-body-inner .grid-2 {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(1.35rem, 2.5vw, 1.85rem);
      margin-bottom: 1.5rem;
      box-sizing: border-box;
    }

    #catalogo-servicios .srv-cat-body-inner .grid-2,
    #catalogo-servicios .srv-cat-body-inner .grid-3 {
      gap: clamp(0.95rem, 1.8vw, 1.25rem);
      margin-bottom: 1.15rem;
    }

    .srv-cat-body-inner .grid-3 {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(1.35rem, 2.5vw, 1.85rem);
      margin-bottom: 1.5rem;
      box-sizing: border-box;
    }

    .srv-cat-body-inner .card {
      min-width: 0;
      max-width: 100%;
    }

    @media (max-width: 900px) {
      .srv-cat-triggers-row {
        grid-template-columns: 1fr;
      }

      .srv-cat-trigger {
        padding: 1.05rem 1.25rem;
        min-height: 3.85rem;
      }

      .srv-cat-panel.is-open .srv-cat-trigger {
        padding: 1rem 1.2rem;
      }

      .srv-cat-body-inner .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }

      .srv-cat-body-inner .grid-2 {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* #promociones: dos columnas en escritorio; en móvil carrusel con scroll nativo (no forzar eje táctil) */
    #promociones .promo-cards-wrap {
      position: relative;
      width: 100%;
      min-width: 0;
    }

    #promociones .promo-edge-hint {
      display: none;
    }

    #promociones .promo-edge-glow {
      display: none;
    }

    #promociones .promo-cards-track {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(1.35rem, 2.8vw, 2rem);
      align-items: stretch;
    }

    #promociones .promo-slide {
      min-width: 0;
    }

    #promociones .promo-slide > .card {
      height: 100%;
    }

    #promociones .promo-swipe-hint {
      display: none;
      text-align: center;
      font-size: 0.78rem;
      color: var(--muted);
      margin: 0.6rem 0 0;
      letter-spacing: 0.02em;
    }

    @media (max-width: 720px) {
      #promociones .promo-cards-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scrollbar-width: none;
        padding-bottom: 0.25rem;
      }

      #promociones .promo-cards-track::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
      }

      #promociones .promo-slide {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      #promociones .promo-swipe-hint {
        display: block;
      }

      /* Brillo fijo en el borde derecho (siempre visible; no se quita al deslizar ni al bajar) */
      #promociones .promo-edge-glow {
        display: block;
        position: absolute;
        inset: 0 -2px 0 auto;
        width: clamp(2.75rem, 14vw, 3.75rem);
        pointer-events: none;
        z-index: 3;
        overflow: hidden;
        border-radius: 0 14px 14px 0;
      }

      #promociones .promo-edge-glow__bar {
        position: absolute;
        top: 8%;
        bottom: 8%;
        right: 0;
        width: 4px;
        border-radius: 999px;
        background: linear-gradient(
          180deg,
          rgba(212, 175, 55, 0.15),
          rgba(242, 220, 120, 0.95) 45%,
          rgba(212, 175, 55, 0.55) 100%
        );
        box-shadow:
          0 0 14px rgba(242, 220, 120, 0.75),
          0 0 28px rgba(212, 175, 55, 0.45),
          -4px 0 20px rgba(212, 175, 55, 0.25);
        animation: promo-edge-bar-pulse 2s ease-in-out infinite;
      }

      #promociones .promo-edge-glow__sheen {
        position: absolute;
        top: -40%;
        left: -30%;
        width: 55%;
        height: 180%;
        background: linear-gradient(
          125deg,
          transparent 0%,
          transparent 35%,
          rgba(255, 255, 255, 0.55) 48%,
          rgba(255, 252, 235, 0.95) 50%,
          rgba(255, 255, 255, 0.5) 52%,
          transparent 65%,
          transparent 100%
        );
        transform-origin: 100% 50%;
        animation: promo-edge-sheen 3.2s ease-in-out infinite;
        mix-blend-mode: screen;
        opacity: 0.92;
      }

      @keyframes promo-edge-bar-pulse {
        0%,
        100% {
          opacity: 0.75;
          filter: brightness(1);
          box-shadow:
            0 0 10px rgba(242, 220, 120, 0.55),
            0 0 22px rgba(212, 175, 55, 0.35),
            -3px 0 16px rgba(212, 175, 55, 0.2);
        }
        50% {
          opacity: 1;
          filter: brightness(1.2);
          box-shadow:
            0 0 22px rgba(242, 220, 120, 0.95),
            0 0 40px rgba(212, 175, 55, 0.55),
            -6px 0 28px rgba(212, 175, 55, 0.35);
        }
      }

      @keyframes promo-edge-sheen {
        0% {
          transform: translateY(0) translateX(0) rotate(0deg);
        }
        45% {
          transform: translateY(55%) translateX(6%) rotate(0deg);
        }
        100% {
          transform: translateY(110%) translateX(0) rotate(0deg);
        }
      }

      /* Flecha encima del brillo; pista constante */
      #promociones .promo-edge-hint {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: absolute;
        inset: 0 0 0 auto;
        width: clamp(2.35rem, 11vw, 3.1rem);
        padding-right: 0.15rem;
        pointer-events: none;
        z-index: 4;
        background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 250, 235, 0.25) 42%,
          rgba(255, 252, 245, 0.72) 100%
        );
      }

      #promociones .promo-edge-hint__svg {
        color: rgba(140, 100, 20, 0.95);
        filter: drop-shadow(0 0 6px rgba(242, 220, 120, 0.65)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
        animation: promo-edge-nudge 1.6s ease-in-out infinite;
      }

      @keyframes promo-edge-nudge {
        0%,
        100% {
          transform: translateX(0);
          opacity: 0.65;
        }
        50% {
          transform: translateX(9px);
          opacity: 1;
        }
      }

      /* Segunda ficha (Protección total): brillo y flecha a la izquierda, dirección invertida */
      #promociones .promo-cards-wrap.promo-edge-target-left .promo-edge-glow {
        inset: 0 auto 0 -2px;
        border-radius: 14px 0 0 14px;
      }

      #promociones .promo-cards-wrap.promo-edge-target-left .promo-edge-glow__bar {
        right: auto;
        left: 0;
        animation: promo-edge-bar-pulse-left 2s ease-in-out infinite;
      }

      #promociones .promo-cards-wrap.promo-edge-target-left .promo-edge-glow__sheen {
        left: auto;
        right: -30%;
        transform-origin: 0% 50%;
        background: linear-gradient(
          235deg,
          transparent 0%,
          transparent 35%,
          rgba(255, 255, 255, 0.55) 48%,
          rgba(255, 252, 235, 0.95) 50%,
          rgba(255, 255, 255, 0.5) 52%,
          transparent 65%,
          transparent 100%
        );
        animation: promo-edge-sheen-up 3.2s ease-in-out infinite;
      }

      @keyframes promo-edge-bar-pulse-left {
        0%,
        100% {
          opacity: 0.75;
          filter: brightness(1);
          box-shadow:
            0 0 10px rgba(242, 220, 120, 0.55),
            0 0 22px rgba(212, 175, 55, 0.35),
            3px 0 16px rgba(212, 175, 55, 0.2);
        }
        50% {
          opacity: 1;
          filter: brightness(1.2);
          box-shadow:
            0 0 22px rgba(242, 220, 120, 0.95),
            0 0 40px rgba(212, 175, 55, 0.55),
            6px 0 28px rgba(212, 175, 55, 0.35);
        }
      }

      @keyframes promo-edge-sheen-up {
        0% {
          transform: translateY(110%) translateX(0);
        }
        45% {
          transform: translateY(55%) translateX(-6%);
        }
        100% {
          transform: translateY(0) translateX(0);
        }
      }

      #promociones .promo-cards-wrap.promo-edge-target-left .promo-edge-hint {
        inset: 0 auto 0 0;
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 0.15rem;
        background: linear-gradient(
          270deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 250, 235, 0.25) 42%,
          rgba(255, 252, 245, 0.72) 100%
        );
      }

      #promociones .promo-cards-wrap.promo-edge-target-left .promo-edge-hint__svg {
        animation: promo-edge-nudge-left 1.6s ease-in-out infinite;
      }

      @keyframes promo-edge-nudge-left {
        0%,
        100% {
          transform: scaleX(-1) translateX(0);
          opacity: 0.65;
        }
        50% {
          transform: scaleX(-1) translateX(-9px);
          opacity: 1;
        }
      }
    }

    @media (max-width: 720px) and (prefers-reduced-motion: reduce) {
      #promociones .promo-cards-track {
        scroll-behavior: auto;
      }

      #promociones .promo-edge-hint {
        display: none !important;
      }

      #promociones .promo-edge-glow__bar,
      #promociones .promo-edge-glow__sheen {
        animation: none !important;
      }

      #promociones .promo-edge-glow__bar {
        opacity: 0.85;
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
      }

      #promociones .promo-edge-glow__sheen {
        opacity: 0.35;
        top: 20%;
        height: 60%;
      }

      #promociones .promo-cards-wrap.promo-edge-target-left .promo-edge-glow {
        inset: 0 auto 0 -2px;
        border-radius: 14px 0 0 14px;
      }

      #promociones .promo-cards-wrap.promo-edge-target-left .promo-edge-glow__bar {
        right: auto;
        left: 0;
      }

      #promociones .promo-cards-wrap.promo-edge-target-left .promo-edge-glow__sheen {
        left: auto;
        right: -20%;
        top: 25%;
        height: 50%;
      }
    }

    /* Protocolo: un paso visible con transición (reemplazo creativo paso a paso) */
    #protocolo .protocolo-step {
      padding: 0 !important;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
    }

    #protocolo .protocolo-step::before {
      display: none !important;
    }

    #protocolo .protocolo-step:hover {
      transform: none !important;
      box-shadow: none !important;
      border-color: transparent !important;
    }

    #protocolo .protocolo-step-surface {
      position: relative;
      overflow: hidden;
      padding: 1.35rem 1.4rem 1.3rem;
      border-radius: 16px;
      background: linear-gradient(168deg, #ffffff 0%, #f8fafc 52%, #fffdf7 100%);
      border: 1px solid rgba(226, 232, 240, 0.92);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 14px 42px -24px rgba(15, 23, 42, 0.12);
    }

    #protocolo .protocolo-step-surface::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 3px;
      background: linear-gradient(90deg, rgba(212, 175, 55, 0.25), rgba(242, 220, 120, 0.95), rgba(212, 175, 55, 0.35));
      border-radius: 16px 16px 0 0;
    }

    #protocolo .protocolo-step-head {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.05rem;
    }

    #protocolo .protocolo-step-icon {
      flex-shrink: 0;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      color: #b8860b;
      background: linear-gradient(148deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.92));
      border: 1px solid rgba(212, 175, 55, 0.32);
      box-shadow: 0 6px 18px -6px rgba(212, 175, 55, 0.35);
    }

    #protocolo .protocolo-step-icon svg {
      display: block;
    }

    #protocolo .protocolo-step-titles {
      min-width: 0;
      flex: 1;
      padding-top: 0.1rem;
    }

    #protocolo .protocolo-step-badge {
      display: inline-block;
      margin: 0 0 0.45rem;
      padding: 0.22rem 0.65rem;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.58);
      border-radius: 999px;
      background: rgba(212, 175, 55, 0.11);
      border: 1px solid rgba(212, 175, 55, 0.22);
    }

    #protocolo .protocolo-step-heading {
      margin: 0;
      font-size: clamp(1.02rem, 2.5vw, 1.22rem);
      font-weight: 700;
      line-height: 1.28;
      letter-spacing: -0.025em;
      color: var(--text);
      font-family: inherit;
    }

    #protocolo .protocolo-step.is-active .protocolo-step-surface {
      border-color: rgba(212, 175, 55, 0.28);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 16px 48px -22px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(212, 175, 55, 0.08);
    }

    #protocolo .protocolo-step-desc {
      margin: 0;
      font-size: 0.94rem;
      line-height: 1.68;
      color: var(--muted);
      max-width: 60ch;
    }

    #protocolo .protocolo-steps-root {
      margin-bottom: 2rem;
    }

    #protocolo .protocolo-steps-toolbar {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-bottom: 1.25rem;
    }

    #protocolo .protocolo-steps-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    #protocolo .protocolo-steps-progress {
      height: 4px;
      border-radius: 999px;
      background: rgba(226, 232, 240, 0.95);
      overflow: hidden;
    }

    #protocolo .protocolo-steps-progress-fill {
      display: block;
      height: 100%;
      width: 25%;
      border-radius: inherit;
      background: linear-gradient(90deg, rgba(212, 175, 55, 0.55), rgba(242, 220, 120, 0.95));
      transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #protocolo .protocolo-stage {
      display: grid;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    #protocolo .protocolo-step {
      grid-area: 1 / 1;
      align-self: start;
      opacity: 0;
      visibility: hidden;
      transform: translateX(1.1rem) scale(0.985);
      pointer-events: none;
      z-index: 0;
      /* Sin retraso en visibility: los inactivos dejan de pintarse al instante (no “fantasmas” encima) */
      transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #protocolo .protocolo-step.is-active {
      opacity: 1;
      visibility: visible;
      transform: translateX(0) scale(1);
      pointer-events: auto;
      z-index: 3;
      transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #protocolo .protocolo-nav-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.35rem;
      flex-wrap: wrap;
    }

    #protocolo .protocolo-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border: none;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.45);
      cursor: pointer;
      transition:
        width 0.35s ease,
        background 0.25s ease,
        transform 0.2s ease;
    }

    #protocolo .protocolo-dot:hover {
      background: rgba(212, 175, 55, 0.55);
      transform: scale(1.08);
    }

    #protocolo .protocolo-dot.is-active {
      width: 1.65rem;
      background: linear-gradient(90deg, var(--accent), #f2dc78);
    }

    #protocolo .protocolo-swipe-hint {
      display: none;
      text-align: center;
      font-size: 0.78rem;
      color: var(--muted);
      margin: 0 0 0.65rem;
      letter-spacing: 0.02em;
    }

    @media (max-width: 720px) {
      #protocolo .protocolo-swipe-hint {
        display: block;
      }

      #protocolo .protocolo-stage {
        touch-action: pan-y;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      #protocolo .protocolo-step,
      #protocolo .protocolo-steps-progress-fill,
      #protocolo .protocolo-dot {
        transition: none !important;
      }

      #protocolo .protocolo-step {
        transform: none !important;
      }

      #protocolo .protocolo-step:not(.is-active) {
        visibility: hidden !important;
      }

      #protocolo .protocolo-step.is-active {
        visibility: visible !important;
      }
    }

    /* ── CUIDADOS POST-SERVICIO – sección oscura ─────────────────── */
    #cuidados {
      position: relative;
      overflow: hidden;
      padding: 4rem 0 4.5rem !important;
      background-color: #0b0f18;
      background-image: linear-gradient(145deg, #0b0f18 0%, #121a2b 42%, #161f33 100%);
      color: #e2e8f0;
    }

    #cuidados::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        repeating-linear-gradient(
          -18deg,
          transparent 0,
          transparent 36px,
          rgba(212, 175, 55, 0.04) 36px,
          rgba(212, 175, 55, 0.04) 37px
        ),
        radial-gradient(ellipse 80% 55% at 30% 20%, rgba(212, 175, 55, 0.10), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 85%, rgba(59, 130, 246, 0.05), transparent 50%);
      pointer-events: none;
    }

    #cuidados > .container {
      position: relative;
      z-index: 1;
    }

    .cuidados-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #0f172a;
      background: linear-gradient(90deg, #f2dc78, #d4af37);
      padding: 0.4rem 0.95rem;
      border-radius: 999px;
      margin-bottom: 1rem;
      box-shadow: 0 8px 28px rgba(212, 175, 55, 0.25);
    }

    .cuidados-title {
      font-size: clamp(1.65rem, 3.2vw, 2.15rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin: 0 0 0.85rem 0;
      color: #f8fafc;
    }

    .cuidados-title span {
      background: linear-gradient(115deg, #f2dc78 0%, #d4af37 45%, #fde68a 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .cuidados-subtitle {
      font-size: clamp(0.88rem, 1.5vw, 1rem);
      color: rgba(226, 232, 240, 0.72);
      max-width: 540px;
      line-height: 1.65;
      margin-bottom: 2.5rem;
    }

    /* ── Cuidados: tarjetas propias (sin colisión con .card global) ── */
    .cuidados-card {
      background: rgba(13, 18, 30, 0.75);
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-left: 3px solid rgba(212, 175, 55, 0.45);
      border-radius: 12px;
      padding: 1.5rem 1.4rem;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .cuidados-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-left-color: #d4af37;
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
    }

    .cuidados-card-header {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }

    .cuidados-card-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(212, 175, 55, 0.1);
      border: 1px solid rgba(212, 175, 55, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #d4af37;
    }

    .cuidados-card-icon svg {
      stroke: #d4af37;
    }

    .cuidados-card-meta {
      flex: 1;
      min-width: 0;
    }

    .cuidados-card-meta h3 {
      font-size: 1rem;
      font-weight: 700;
      color: #f8fafc;
      margin: 0 0 0.2rem;
      line-height: 1.3;
    }

    .cuidados-badge {
      flex-shrink: 0;
      align-self: flex-start;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      padding: 0.28rem 0.65rem;
      border-radius: 999px;
      background: rgba(212, 175, 55, 0.12);
      border: 1px solid rgba(212, 175, 55, 0.32);
      color: #d4af37;
      white-space: nowrap;
    }

    .cuidados-aplica {
      font-size: 0.79rem;
      color: rgba(212, 175, 55, 0.62);
      margin: 0 0 0.9rem;
      line-height: 1.4;
    }

    .cuidados-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.42rem;
      font-size: 0.855rem;
      color: rgba(226, 232, 240, 0.75);
      flex: 1;
    }

    .cuidados-list li {
      position: relative;
      padding-left: 1.15rem;
      line-height: 1.5;
    }

    .cuidados-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: linear-gradient(135deg, #d4af37, #f2dc78);
      box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.12);
    }

    .cuidados-list li strong {
      color: #f0e6b0;
      font-weight: 600;
    }

    /* Card ancha (mantenimiento): lista en 2 columnas en escritorio */
    .cuidados-card--wide {
      margin-top: 2rem;
    }

    .cuidados-card--wide .cuidados-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.42rem 2.5rem;
    }

    .cuidados-footer {
      text-align: center;
      margin-top: 2.25rem;
      font-size: 0.88rem;
      color: rgba(226, 232, 240, 0.5);
    }

    .cuidados-footer a {
      color: #d4af37;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }

    .cuidados-footer a:hover {
      color: #f2dc78;
    }

    @media (max-width: 700px) {
      .cuidados-card--wide .cuidados-list {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* ── Catálogo: claro, minimal, alineado al sitio ─────── */
    #catalogo-servicios {
      position: relative;
      padding: clamp(3.25rem, 7vw, 5.25rem) 0 clamp(3.5rem, 8vw, 5.75rem);
      background:
        radial-gradient(ellipse 100% 70% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 58%),
        radial-gradient(ellipse 70% 50% at 0% 80%, rgba(15, 23, 42, 0.03), transparent 45%),
        linear-gradient(178deg, #fdfcfa 0%, #f5f4f2 42%, #faf9f7 100%) !important;
      border-top: 1px solid rgba(212, 175, 55, 0.28);
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
      overflow: hidden;
    }

    #catalogo-servicios::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, #000 0%, transparent 72%);
      -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, #000 0%, transparent 72%);
      opacity: 0.55;
    }

    #catalogo-servicios > .container {
      position: relative;
      z-index: 1;
    }

    #catalogo-servicios .catalogo-header {
      text-align: center;
      margin-bottom: clamp(1.85rem, 4.5vw, 2.65rem);
      padding-bottom: clamp(1.65rem, 3vw, 2.25rem);
      position: relative;
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    #catalogo-servicios .catalogo-header::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -1px;
      transform: translateX(-50%);
      width: min(200px, 42vw);
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.75), rgba(242, 220, 120, 0.55), transparent);
      box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
    }

    #catalogo-servicios .catalogo-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.62rem;
      font-weight: 700;
      font-family: "Open Sans", "Inter", system-ui, sans-serif;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #64748b;
      background: #ffffff;
      border: 1px solid rgba(226, 232, 240, 0.95);
      padding: 0.42rem 1rem 0.42rem 0.88rem;
      border-radius: 999px;
      margin-bottom: 1.1rem;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    #catalogo-servicios .catalogo-subtitle {
      font-size: clamp(0.92rem, 1.45vw, 1.05rem);
      color: #64748b !important;
      max-width: 34rem;
      margin: 0 auto;
      line-height: 1.7;
      font-weight: 400;
      font-family: "Open Sans", "Inter", system-ui, sans-serif;
    }

    #catalogo-servicios .catalogo-title {
      font-family: "Open Sans", "Inter", system-ui, sans-serif !important;
      font-size: clamp(1.85rem, 3.5vw, 2.5rem) !important;
      font-weight: 700 !important;
      letter-spacing: -0.03em !important;
      line-height: 1.1 !important;
      color: #0f172a !important;
      text-shadow: none;
    }

    #catalogo-servicios .catalogo-title span {
      background: linear-gradient(115deg, #9a7209 0%, #d4af37 42%, #c9a227 100%) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      color: transparent !important;
    }

    #catalogo-servicios .srv-cat-body-strip {
      border-radius: 22px;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.98) inset,
        0 28px 56px -24px rgba(15, 23, 42, 0.1);
      margin-top: 1.65rem;
      padding-top: clamp(2rem, 4vw, 2.6rem);
      padding-bottom: clamp(2.25rem, 4.5vw, 2.85rem);
      background: linear-gradient(185deg, #ffffff 0%, #fdfcfa 50%, #faf8f5 100%);
    }

    #catalogo-servicios .srv-cat-body-inner .section-header {
      margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    #catalogo-servicios .srv-cat-body-inner .section-eyebrow {
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      color: #64748b !important;
    }

    #catalogo-servicios .srv-cat-body-inner .section-subtitle {
      max-width: 52rem;
      margin-left: auto;
      margin-right: auto;
      color: #64748b !important;
    }

    #catalogo-servicios .srv-cat-body-inner .section-title {
      font-family: "Open Sans", "Inter", system-ui, sans-serif !important;
      font-size: clamp(1.45rem, 2.5vw, 1.75rem) !important;
      font-weight: 700 !important;
      letter-spacing: -0.02em !important;
      line-height: 1.15 !important;
      background: linear-gradient(135deg, #0f172a 0%, #334155 100%) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      color: transparent !important;
      text-shadow: none;
    }

    #catalogo-servicios .catalogo-switcher.srv-cat-triggers-row {
      gap: 0.6rem;
      padding: 0.5rem;
      background: #f8fafc;
      border-radius: 16px;
      border: 1px solid rgba(226, 232, 240, 0.95);
      box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    }

    @media (max-width: 900px) {
      #catalogo-servicios .catalogo-switcher.srv-cat-triggers-row {
        padding: 0.45rem;
        border-radius: 16px;
        gap: 0.5rem;
      }
    }

    /* ─── HERO SERVICIOS ─── */
    .srv-hero {
      position: relative;
      min-height: 58vh;
      display: flex;
      align-items: center;
      background: #0a0e1a url('images/galeria/hero_servicios.png') center/cover no-repeat;
      overflow: hidden;
    }

    .srv-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(108deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.35) 100%),
        linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.45) 100%);
      z-index: 1;
    }

    .srv-hero::after {
      content: "";
      position: absolute;
      top: -20%;
      right: -5%;
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 68%);
      pointer-events: none;
      z-index: 1;
    }

    .srv-hero-inner {
      position: relative;
      z-index: 2;
      padding: 5.5rem 0 4.5rem;
      max-width: 680px;
    }

    .srv-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(212, 175, 55, 0.92);
      border: 1px solid rgba(212, 175, 55, 0.28);
      background: rgba(212, 175, 55, 0.08);
      padding: 0.4rem 1rem;
      border-radius: 999px;
      margin-bottom: 1.4rem;
    }

    .srv-hero-line {
      width: 36px;
      height: 2px;
      background: linear-gradient(90deg, #d4af37, rgba(212,175,55,0.3));
      border-radius: 999px;
      margin-bottom: 1.4rem;
    }

    .srv-hero-title {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.07;
      color: #ffffff;
      margin-bottom: 1.1rem;
    }

    .srv-hero-title span {
      background: linear-gradient(115deg, #c9a227 0%, #f2dc78 50%, #d4af37 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .srv-hero-subtitle {
      font-size: clamp(0.95rem, 1.4vw, 1.05rem);
      color: rgba(226, 232, 240, 0.82);
      max-width: 500px;
      line-height: 1.7;
      margin-bottom: 2.2rem;
    }

    .srv-hero-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.28);
      color: rgba(255, 255, 255, 0.82);
      border-radius: 999px;
      padding: 0.6rem 1.4rem;
      font-size: 0.9rem;
      font-weight: 500;
      transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.18s;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-ghost:hover {
      border-color: rgba(212, 175, 55, 0.55);
      color: #d4af37;
      background: rgba(212, 175, 55, 0.07);
      transform: translateY(-2px);
    }

    /* ─── BODY PREMIUM ─── */
    body {
      background: #f8fafc;
    }

    /* ─── SECCIÓN TÍTULOS MÁS DRAMÁTICOS ─── */
    .catalogo-title {
      font-size: clamp(2rem, 4vw, 2.85rem) !important;
      font-weight: 800 !important;
      letter-spacing: -0.035em !important;
      line-height: 1.05 !important;
      margin: 0 0 0.85rem !important;
      color: #0f172a !important;
    }

    .catalogo-title span {
      background: linear-gradient(115deg, #9a7209 0%, #d4af37 42%, #f2dc78 100%) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      color: transparent !important;
    }

    .section-title {
      font-size: clamp(1.5rem, 2.5vw, 1.85rem) !important;
      font-weight: 800 !important;
      letter-spacing: -0.025em !important;
      background: linear-gradient(135deg, #0f172a 0%, #334155 100%) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      color: transparent !important;
    }

    /* ─── CARDS ELITE ─── */
    .card {
      border-radius: 16px !important;
      border: 1px solid rgba(226, 232, 240, 0.7) !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.03) !important;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease !important;
    }

    .card:hover {
      transform: translateY(-4px) !important;
      box-shadow: 0 20px 48px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05) !important;
      border-color: rgba(212, 175, 55, 0.25) !important;
    }

    .card-highlight {
      border-color: rgba(212, 175, 55, 0.3) !important;
      background: linear-gradient(150deg, rgba(255,255,255,0.99) 0%, rgba(253,251,242,0.98) 100%) !important;
    }

    /* ─── Catálogo: fichas claras, barra lateral de color ─── */
    #catalogo-servicios .srv-cat-region-inner {
      counter-reset: srv-ficha;
    }

    #catalogo-servicios .srv-cat-region-inner .grid-2 > .card,
    #catalogo-servicios .srv-cat-region-inner .grid-3 > .card,
    #catalogo-servicios .srv-cat-region-inner > .card {
      counter-increment: srv-ficha;
      --cat-accent: #64748b;
      --cat-tint: rgba(100, 116, 139, 0.06);
      position: relative;
      padding: clamp(1.1rem, 2.2vw, 1.45rem) clamp(1rem, 2vw, 1.35rem) !important;
      border-radius: 16px !important;
      border: 1px solid rgba(226, 232, 240, 0.85) !important;
      background: linear-gradient(160deg, var(--cat-tint) 0%, #ffffff 40%, #fcfcfc 100%) !important;
      box-shadow:
        inset 4px 0 0 0 var(--cat-accent),
        0 6px 24px rgba(15, 23, 42, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03) !important;
      transform: translateY(0) !important;
      transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s ease !important;
    }

    #catalogo-servicios .srv-cat-region-inner .grid-2 > .card:nth-child(4n + 2),
    #catalogo-servicios .srv-cat-region-inner .grid-3 > .card:nth-child(4n + 2) {
      --cat-accent: #d4af37;
      --cat-tint: rgba(212, 175, 55, 0.08);
    }

    #catalogo-servicios .srv-cat-region-inner .grid-2 > .card:nth-child(4n + 3),
    #catalogo-servicios .srv-cat-region-inner .grid-3 > .card:nth-child(4n + 3) {
      --cat-accent: #14b8a6;
      --cat-tint: rgba(20, 184, 166, 0.07);
    }

    #catalogo-servicios .srv-cat-region-inner .grid-2 > .card:nth-child(4n + 4),
    #catalogo-servicios .srv-cat-region-inner .grid-3 > .card:nth-child(4n + 4) {
      --cat-accent: #818cf8;
      --cat-tint: rgba(129, 140, 248, 0.08);
    }

    #catalogo-servicios .srv-cat-region-inner .grid-2 > .card.card-highlight,
    #catalogo-servicios .srv-cat-region-inner .grid-3 > .card.card-highlight {
      --cat-accent: #d4af37;
      --cat-tint: rgba(253, 251, 242, 0.95);
      border-color: rgba(212, 175, 55, 0.35) !important;
      background: linear-gradient(160deg, rgba(255, 252, 240, 0.98) 0%, #ffffff 45%, #fdfcfa 100%) !important;
      box-shadow:
        inset 4px 0 0 0 #d4af37,
        0 10px 32px rgba(212, 175, 55, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.04) !important;
    }

    #catalogo-servicios .srv-cat-region-inner .grid-2 > .card:hover,
    #catalogo-servicios .srv-cat-region-inner .grid-3 > .card:hover,
    #catalogo-servicios .srv-cat-region-inner > .card:hover {
      transform: translateY(-2px) !important;
      border-color: rgba(212, 175, 55, 0.28) !important;
      box-shadow:
        inset 5px 0 0 0 var(--cat-accent),
        0 12px 32px rgba(15, 23, 42, 0.07),
        0 1px 4px rgba(0, 0, 0, 0.04) !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-header {
      display: none !important;
    }

    #catalogo-servicios .srv-cat-region-inner .grid-2 > .card::after,
    #catalogo-servicios .srv-cat-region-inner .grid-3 > .card::after,
    #catalogo-servicios .srv-cat-region-inner > .card::after {
      content: counter(srv-ficha, decimal-leading-zero);
      position: absolute;
      top: 0.7rem;
      left: 0.7rem;
      z-index: 2;
      min-width: 1.65rem;
      height: 1.65rem;
      padding: 0 0.35rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      font-variant-numeric: tabular-nums;
      font-family: "Open Sans", "Inter", system-ui, sans-serif;
      color: #475569;
      background: #f1f5f9;
      border: 1px solid rgba(226, 232, 240, 0.95);
      border-radius: 8px;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
      pointer-events: none;
    }

    #catalogo-servicios .srv-cat-region-inner .grid-2 > .card.card-highlight::after,
    #catalogo-servicios .srv-cat-region-inner .grid-3 > .card.card-highlight::after {
      color: #0f172a;
      background: linear-gradient(145deg, #fffef8, #f2dc78);
      border-color: rgba(212, 175, 55, 0.35);
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-content h3 {
      font-family: "Open Sans", "Inter", system-ui, sans-serif !important;
      font-size: clamp(1.18rem, 2.15vw, 1.42rem) !important;
      font-weight: 800 !important;
      letter-spacing: -0.03em !important;
      line-height: 1.2 !important;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #334155 100%) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      color: transparent !important;
      margin-bottom: 0.4rem !important;
      padding-bottom: 0.35rem;
      border-bottom: 1px solid rgba(212, 175, 55, 0.35);
      max-width: 28ch;
      margin-left: auto;
      margin-right: auto;
      text-align: center !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-content > p {
      font-size: 0.9rem !important;
      line-height: 1.65 !important;
      color: #64748b !important;
      margin-bottom: 0.65rem !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card p {
      color: #64748b !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-content ul {
      flex: 0 1 auto !important;
      gap: 0.42rem !important;
      font-size: 0.85rem !important;
      line-height: 1.5 !important;
      color: #475569 !important;
      padding: 0.65rem 0.8rem !important;
      margin: 0 !important;
      background: #f8fafc !important;
      border: 1px solid rgba(226, 232, 240, 0.95) !important;
      border-radius: 12px;
      text-align: left !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-content details.service-inclusions {
      margin-bottom: 1rem !important;
      text-align: center !important;
    }

    /* Detalle técnico: bloque desplegado centrado en la tarjeta (útil en card ancha, p. ej. cristales) */
    #catalogo-servicios .srv-cat-region-inner .card .service-content details.service-inclusions .service-inclusions__inner {
      max-width: 40rem;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-content ul li {
      padding-left: 1.25rem !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .service-content ul li::before {
      top: 0.42rem !important;
      width: 4px !important;
      height: 4px !important;
      background: var(--cat-accent) !important;
      box-shadow: none !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .price {
      margin-top: auto;
      border-radius: 12px !important;
      border: 1px solid rgba(226, 232, 240, 0.95) !important;
      background: #fafafa !important;
      color: #0f172a !important;
      box-shadow: none;
    }

    #catalogo-servicios .srv-cat-region-inner .card .price span {
      color: #64748b !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .ceramic-variant {
      margin-top: 0.65rem;
      padding: 0.72rem 0.85rem;
      background: #f8fafc;
      border: 1px solid rgba(226, 232, 240, 0.95);
      border-left: 3px solid rgba(212, 175, 55, 0.45);
      border-radius: 12px;
      box-shadow: none;
    }

    #catalogo-servicios .srv-cat-region-inner .card .ceramic-variant-title {
      font-size: 0.7rem !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase !important;
      font-weight: 700 !important;
      color: #334155 !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .ceramic-variant-desc {
      font-size: 0.82rem !important;
      margin-top: 0.28rem;
      color: #64748b !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .polish-intensity {
      margin: 0.75rem 0;
      background: #f8fafc;
      border: 1px solid rgba(226, 232, 240, 0.95);
      border-radius: 12px;
      padding: 0.72rem 0.85rem;
    }

    #catalogo-servicios .srv-cat-region-inner .card .polish-intensity-label {
      color: #64748b !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .polish-scale {
      background: #e2e8f0;
    }

    #catalogo-servicios .srv-cat-region-inner .card .polish-marker {
      color: #94a3b8 !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .polish-bar {
      background: linear-gradient(90deg, rgba(212, 175, 55, 0.45), rgba(242, 220, 120, 0.95)) !important;
      box-shadow: none;
    }

    #catalogo-servicios .srv-cat-region-inner .card .polish-scale[data-level="1"] .polish-bar {
      background: linear-gradient(90deg, rgba(100, 116, 139, 0.45), rgba(212, 175, 55, 0.45)) !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .polish-scale[data-level="2"] .polish-bar {
      background: linear-gradient(90deg, rgba(212, 175, 55, 0.45), rgba(242, 220, 120, 0.85)) !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .polish-scale[data-level="3"] .polish-bar {
      background: linear-gradient(90deg, #c4a632, #f2dc78) !important;
    }

    #catalogo-servicios .srv-cat-region-inner .card .recommended-badge {
      top: 0.45rem !important;
      right: 0.45rem !important;
      transform: none !important;
      font-size: 0.58rem !important;
      padding: 0.22rem 0.55rem !important;
      letter-spacing: 0.05em !important;
    }

    /* Pastilla “Recomendado”: mismo título que el resto del catálogo + un poco de aire respecto a la etiqueta */
    #catalogo-servicios .srv-cat-region-inner .card:has(.recommended-badge) .service-content {
      padding-top: clamp(0.45rem, 1.2vw, 0.75rem) !important;
    }

    /* Centrado real: mismo respiro a ambos lados (solo padding-end corría el bloque a la izquierda) */
    #catalogo-servicios .srv-cat-region-inner .card:has(.recommended-badge) .service-content h3 {
      width: 100% !important;
      max-width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      padding-inline: clamp(2rem, 16%, 4.75rem) !important;
      box-sizing: border-box !important;
      text-align: center !important;
    }

    /* ─── PRECIO ELITE ─── */
    .price-tag .price-amount {
      font-size: 2.4rem !important;
      font-weight: 900 !important;
    }

    /* ─── PROMO SECTION (claro, coherente con el sitio) ─── */
    #promociones {
      background:
        radial-gradient(ellipse 100% 65% at 50% 0%, rgba(212, 175, 55, 0.08), transparent 55%),
        linear-gradient(180deg, #fdfcfa 0%, #f5f4f2 50%, #faf9f7 100%) !important;
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
      padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2rem, 4vw, 2.75rem) !important;
    }

    #promociones .promo-bundle-card {
      text-align: center !important;
      padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem) !important;
      border-radius: 18px !important;
      border: 1px solid rgba(226, 232, 240, 0.95) !important;
      background: #ffffff !important;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 18px 40px rgba(15, 23, 42, 0.06) !important;
      transform: translateY(0) !important;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.22s ease !important;
    }

    #promociones .promo-bundle-card:hover {
      transform: translateY(-4px) !important;
      border-color: rgba(212, 175, 55, 0.28) !important;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.98) inset,
        0 22px 48px rgba(15, 23, 42, 0.08) !important;
    }

    #promociones .promo-bundle-card .price-tag {
      margin: 1.15rem 0 1rem;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      background: #f8fafc;
      border: 1px solid rgba(226, 232, 240, 0.95);
    }

    #promociones .promo-bundle-card .price-tag .price-label {
      color: #64748b !important;
    }

    #promociones .promo-bundle-card h2 {
      font-family: "Open Sans", "Inter", system-ui, sans-serif !important;
      font-size: clamp(1.2rem, 2.2vw, 1.45rem) !important;
      font-weight: 700 !important;
      line-height: 1.25 !important;
      color: #0f172a !important;
      background: none !important;
      -webkit-background-clip: border-box !important;
      background-clip: border-box !important;
      margin-bottom: 0.3rem !important;
    }

    #promociones .promo-bundle-card p {
      color: #64748b !important;
    }

    #promociones .promo-bundle-card div[style*="grid-template-columns"] > div {
      background: #f8fafc !important;
      border-radius: 12px !important;
      border: 1px solid rgba(226, 232, 240, 0.95) !important;
      border-left: 3px solid rgba(212, 175, 55, 0.4) !important;
    }

    #promociones .promo-bundle-card div[style*="grid-template-columns"] h3 {
      color: #0f172a !important;
    }

    #promociones .promo-bundle-card div[style*="grid-template-columns"] p {
      color: #64748b !important;
    }

    #promociones .promo-swipe-hint {
      color: #94a3b8 !important;
    }

    #nota-iva-precios {
      padding: 0.65rem 0 1.35rem !important;
      line-height: 1.45 !important;
      background: #f8fafc !important;
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    #nota-iva-precios .container {
      text-align: center;
    }

    #nota-iva-precios .container p {
      display: inline-block;
      max-width: 38rem;
      margin: 0 auto !important;
      padding: 0.45rem 1.1rem !important;
      border-radius: 999px;
      border: 1px solid rgba(226, 232, 240, 0.95);
      background: #ffffff;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
      font-size: 0.74rem !important;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-weight: 600;
      color: #64748b !important;
    }

    #protocolo {
      padding: clamp(3rem, 6vw, 4.75rem) 0 !important;
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.06), transparent 55%),
        linear-gradient(to bottom, rgba(248, 250, 252, 0.85), #ffffff 40%, #fafafa 100%) !important;
      border-top: 1px solid rgba(226, 232, 240, 0.75);
    }

    /* ─── SEPARADOR ENTRE HERO Y CONTENIDO ─── */
    .srv-divider {
      height: 4px;
      background: linear-gradient(90deg, #d4af37 0%, rgba(212,175,55,0.2) 60%, transparent 100%);
      border: none;
    }

    /* ─── MOBILE HERO ─── */
    @media (max-width: 768px) {
      .srv-hero {
        min-height: 48vh;
      }
      .srv-hero-inner {
        padding: 4rem 0 3.5rem;
      }
      .srv-hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* Página dedicada rines — mismo criterio que interior/exterior */
    #servicios-rines .btn-whatsapp,
    #servicios-rines .btn-whatsapp:hover {
      background: #25d366;
      color: #fff;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    #servicios-rines .btn-whatsapp::before {
      display: none;
    }

    /* /servicios: tarjetas del catálogo enlazan a URLs dedicadas */
    #srv-categories-accordion.srv-cat-triggers-as-links .srv-cat-panel-link.srv-cat-panel {
      text-decoration: none;
      cursor: pointer;
      /* No usar color:inherit: hereda el texto oscuro del layout y el subtítulo casi desaparece */
      color: #e2e8f0;
      justify-content: center;
      align-items: stretch;
      min-height: clamp(6.25rem, 17vw, 7.25rem);
    }

    #srv-categories-accordion.srv-cat-triggers-as-links .srv-cat-panel-link .srv-cat-trigger {
      flex: 0 0 auto;
      min-height: 0;
      padding: 0.85rem 1.35rem 0.35rem;
    }

    #srv-categories-accordion.srv-cat-triggers-as-links .srv-cat-link-hint {
      display: block;
      flex: 0 0 auto;
      font-size: 0.8rem;
      font-weight: 500;
      line-height: 1.45;
      color: rgba(226, 232, 240, 0.9) !important;
      padding: 0 1.35rem 0.95rem;
      text-align: left;
    }

    #srv-categories-accordion.srv-cat-triggers-as-links .srv-cat-panel-link:hover .srv-cat-trigger {
      background: linear-gradient(105deg, rgba(212, 175, 55, 0.18) 0%, transparent 55%);
    }