    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:      #0a0b0f;
      --dark:       #0f1018;
      --card:       #14161e;
      --border:     #1e2130;
      --navy:       #1a1740;
      --navy-mid:   #252260;
      --red:        #c0403f;
      --red-dark:   #a03030;
      --red-dim:    rgba(192,64,63,0.15);
      --white:      #f4f4f6;
      --muted:      #6a6e80;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body:    'DM Sans', sans-serif;
    }

    /* ─── LIGHT MODE ─── */
    html.light {
      --black:   #f5f5f7;
      --dark:    #eaeaee;
      --card:    #ffffff;
      --border:  #d8d8e0;
      --navy:    #1a1740;
      --red:     #b03030;
      --red-dim: rgba(176,48,48,0.08);
      --white:   #12131a;
      --muted:   #6a6e80;
    }
    html.light body  { background: var(--black); color: var(--white); }
    html.light .hero-bg {
      background:
        radial-gradient(ellipse 65% 55% at 75% 35%, rgba(26,23,64,0.08) 0%, transparent 65%),
        radial-gradient(ellipse 45% 70% at 15% 75%, rgba(192,64,63,0.05) 0%, transparent 55%),
        linear-gradient(160deg, #f5f5f7 0%, #eaeaee 100%);
    }
    html.light .hero-deco       { color: rgba(26,23,64,0.04); }
    html.light h1               { color: var(--white); }
    html.light .hero-sub        { color: rgba(18,19,26,0.70); }
    html.light .hero-tag        { color: var(--red); }
    html.light .stat-num        { color: var(--red); }
    html.light .stat-label      { color: var(--muted); }
    html.light .btn-ghost       { color: var(--white); border-color: #b0b0be; }
    html.light .btn-ghost:hover { color: var(--white); border-color: var(--navy); }
    html.light .nav-cta         { border-color: var(--red); color: var(--red); }
    html.light .nav-cta:hover   { background: var(--red); color: #fff; }
    html.light .nav-links a     { color: #555; }
    html.light .nav-links a:hover { color: var(--white); }
    html.light .section-sub     { color: rgba(18,19,26,0.70); }
    html.light .services-grid   { background: transparent; border: none; }
    html.light .service-card    { background: var(--card); }
    html.light .service-card:hover { background: #f2f2f6; }
    html.light .service-card:nth-child(1),
    html.light .service-card:nth-child(6) { background: linear-gradient(135deg, rgba(26,23,64,0.08), var(--card)); }
    html.light .service-card:nth-child(1):hover,
    html.light .service-card:nth-child(6):hover { background: linear-gradient(135deg, rgba(26,23,64,0.12), #f2f2f6); }
    html.light .service-desc    { color: rgba(18,19,26,0.70); }
    html.light .price-card      { background: var(--card); }
    html.light .price-card.featured { background: linear-gradient(145deg, rgba(192,64,63,0.05), #fff); }
    html.light .price-desc      { color: #666; }
    html.light .price-note      { color: #777; }
    html.light .price-items li  { color: rgba(18,19,26,0.7); border-bottom-color: var(--border); }
    html.light .price-amount    { color: var(--white); }
    html.light .promo-text p    { color: rgba(18,19,26,0.75); }
    html.light .about-box-main  { background: var(--card); }
    html.light .about-gfx       { color: rgba(26,23,64,0.1); }
    html.light .about-gfx-wrap::before { border-color: rgba(26,23,64,0.12); box-shadow: 0 0 0 32px rgba(26,23,64,0.03), 0 0 0 64px rgba(26,23,64,0.015); }
    html.light .value-pill      { color: rgba(18,19,26,0.6); border-color: var(--border); }
    html.light #servicio-domicilio { background: linear-gradient(135deg, rgba(192,64,63,0.03) 0%, rgba(26,23,64,0.02) 100%); }
    html.light .domicilio-benefits li { color: rgba(18,19,26,0.80); }
    html.light .cita-card       { background: var(--card); }
    html.light .cita-card > p   { color: #777; }
    html.light .step-content p  { color: #777; }
    html.light .cita-note       { color: #777; }
    html.light .contact-row span { color: rgba(18,19,26,0.75); }
    html.light .cita-divider    { background: var(--border); }
    html.light footer           { background: var(--dark); }
    html.light .divider-strip   { background: var(--dark); }
    html.light .divider-text    { color: rgba(18,19,26,0.35); }
    html.light .footer-brand p  { color: #777; }
    html.light .social-btn { color: #555; border-color: rgba(0,0,0,0.15); }
    html.light .social-btn:hover { color: var(--white); }
    html.light .footer-col ul li a,
    html.light .footer-col ul li span { color: #777; }
    html.light .footer-col ul li a:hover { color: var(--white); }
    html.light .footer-bottom p { color: rgba(18,19,26,0.50); }
    html.light .logo-dark  { display: none !important; }
    html.light .logo-light { display: inline-block !important; }

    /* ─── THEME TOGGLE ─── */
    .theme-toggle {
      background: none; border: 1px solid var(--border); color: var(--muted);
      cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s, transform 0.2s; flex-shrink: 0;
    }
    .theme-toggle:hover { border-color: var(--red); color: var(--red); transform: rotate(20deg); }
    .theme-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .icon-sun  { display: none; }
    .icon-moon { display: block; }
    html.light .icon-sun  { display: block; }
    html.light .icon-moon { display: none; }

    html { scroll-behavior: smooth; }
    body {
      background: var(--black); color: var(--white);
      font-family: var(--font-body); font-size: 16px;
      line-height: 1.6; overflow-x: hidden;
    }
    body::before {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    }
    html.light body::before { opacity: 0.015; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: calc(14px + env(safe-area-inset-top, 0px)) 5% 14px;
      background: var(--black);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-text {
      font-family: var(--font-display); font-size: 1.4rem;
      letter-spacing: 0.07em; color: var(--white); line-height: 1;
    }
    .nav-logo-text span { color: var(--red); }
    .nav-logo-sub {
      font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--muted); display: block; margin-top: 2px;
    }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted); text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .nav-cta {
      background: transparent; border: 1px solid var(--red); color: var(--red);
      padding: 9px 22px; border-radius: 0;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      transform: skewX(-10deg);
    }
    .nav-cta:hover { background: var(--red); color: #fff; }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh; display: flex; flex-direction: column;
      justify-content: flex-end; padding: 80px 5% 80px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 65% 55% at 75% 35%, rgba(26,23,64,0.35) 0%, transparent 65%),
        radial-gradient(ellipse 45% 70% at 15% 75%, rgba(192,64,63,0.1) 0%, transparent 55%),
        linear-gradient(160deg, #0a0b0f 0%, #0f1018 100%);
      z-index: 0;
    }
    .hero-deco {
      position: absolute; right: -1%; top: 50%; transform: translateY(-52%);
      font-family: var(--font-display); font-size: clamp(200px, 24vw, 380px);
      color: rgba(26,23,64,0.12); line-height: 1;
      pointer-events: none; user-select: none; z-index: 0;
    }
    .hero-accent-line {
      position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: linear-gradient(to bottom, transparent, var(--red) 35%, var(--red) 65%, transparent);
      z-index: 1;
    }
    .hero-badge {
      position: absolute; top: 110px; right: 4%;
      width: 220px; height: 220px; border-radius: 50%;
      background:
        radial-gradient(circle at 32% 28%, #fcefa1 0%, #e6c75a 28%, #c9a227 58%, #8b6914 100%);
      box-shadow:
        inset 0 0 0 3px rgba(15,16,24,0.92),
        inset 0 0 0 7px #d4af37,
        inset 0 0 0 9px rgba(15,16,24,0.92),
        0 14px 36px rgba(0,0,0,0.5);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; gap: 2px;
      transform: rotate(-8deg);
      z-index: 5; pointer-events: none; user-select: none;
      font-family: var(--font-display);
      color: #fff;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
      padding: 0 16px;
    }
    .hero-badge-top {
      font-size: 1.35rem; letter-spacing: 0.08em;
      text-transform: uppercase; line-height: 1;
    }
    .hero-badge-main {
      font-size: 1.65rem; letter-spacing: 0.04em;
      text-transform: uppercase; line-height: 1;
    }
    /* En viewports angostos (< 1024px) el badge se hace mucho más chico y se coloca a la altura del h1 sobre la derecha, donde las palabras del título son más cortas (no llegan al margen derecho). Esto evita chocar con el hero-tag, el subtítulo, los botones y las stats. */
    @media (max-width: 1023px) {
      .hero-badge {
        top: auto; bottom: 56%; right: 16px;
        width: 90px; height: 90px;
        box-shadow:
          inset 0 0 0 2px rgba(15,16,24,0.92),
          inset 0 0 0 4px #d4af37,
          inset 0 0 0 5px rgba(15,16,24,0.92),
          0 6px 16px rgba(0,0,0,0.5);
        padding: 0 4px;
      }
      .hero-badge-top  { font-size: 0.6rem; letter-spacing: 0.04em; }
      .hero-badge-main { font-size: 0.7rem; letter-spacing: 0; }
    }
    @media (max-width: 720px) {
      .hero-badge {
        top: auto; bottom: 58%; right: 12px;
        width: 72px; height: 72px;
        box-shadow:
          inset 0 0 0 1.5px rgba(15,16,24,0.92),
          inset 0 0 0 3px #d4af37,
          inset 0 0 0 4px rgba(15,16,24,0.92),
          0 5px 14px rgba(0,0,0,0.5);
        padding: 0 3px;
      }
      .hero-badge-top  { font-size: 0.48rem; letter-spacing: 0.02em; }
      .hero-badge-main { font-size: 0.55rem; letter-spacing: 0; }
    }
    .hero-content { position: relative; z-index: 1; max-width: 840px; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--red); margin-bottom: 22px;
    }
    .hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--red); display: block; }
    h1 {
      font-family: var(--font-display);
      font-size: clamp(60px, 8.5vw, 114px);
      line-height: 0.92; letter-spacing: 0.02em; margin-bottom: 28px;
    }
    h1 em { color: transparent; -webkit-text-stroke: 2px var(--red); font-style: normal; }
    .hero-sub {
      font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: rgba(244,244,246,0.55);
      font-weight: 300; max-width: 520px; margin-bottom: 50px; line-height: 1.8;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-whatsapp {
      display: inline-flex; align-items: center; gap: 10px;
      background: #25D366; color: #fff; padding: 15px 30px; border-radius: 0;
      font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      transform: skewX(-10deg);
    }
    .btn-whatsapp > * { display: inline-block; transform: skewX(10deg); }
    .btn-whatsapp:hover { background: #1ebe5a; transform: skewX(-10deg) translateY(-2px); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid var(--border); color: rgba(244,244,246,0.65);
      padding: 15px 30px; border-radius: 3px;
      font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; text-decoration: none;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }
    .btn-ghost:hover { border-color: var(--muted); color: var(--white); transform: translateY(-2px); }
    .hero-stats {
      position: absolute; right: 5%; bottom: 80px;
      display: flex; gap: 52px; z-index: 1;
    }
    .stat-item { text-align: center; }
    .stat-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--red); line-height: 1; display: block; }
    .stat-label { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }

    /* ─── MARQUEE ─── */
    .divider-strip {
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 16px 0; overflow: hidden; white-space: nowrap; background: var(--dark);
    }
    .divider-text {
      display: inline-flex; gap: 48px; font-family: var(--font-display);
      font-size: 1rem; letter-spacing: 0.14em;
      color: rgba(244,244,246,0.28); text-transform: uppercase;
      animation: marquee 22s linear infinite;
    }
    .divider-text b { color: var(--red); font-weight: 400; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── SECTION COMMON ─── */
    section { padding: 100px 5%; }
    .section-tag {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block;
    }
    .section-title {
      font-family: var(--font-display); font-size: clamp(36px, 4.8vw, 58px);
      line-height: 1; letter-spacing: 0.02em; margin-bottom: 14px;
    }
    .section-sub {
      color: rgba(244,244,246,0.65); font-weight: 300; font-size: 0.98rem;
      max-width: 500px; line-height: 1.85; margin-bottom: 56px;
    }

    /* ─── SERVICIOS ─── */
    #servicios { background: var(--dark); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      background: transparent;
      border: none;
    }
    .service-card {
      background: var(--card); padding: 38px 34px;
      position: relative; overflow: hidden; transition: background 0.25s;
      border: 1px solid var(--border);
    }
    .service-card:nth-child(1) {
      grid-column: span 2;
      background: linear-gradient(135deg, var(--navy-mid), var(--card));
    }
    .service-card:nth-child(6) {
      grid-column: span 2;
      background: linear-gradient(135deg, var(--navy-mid), var(--card));
    }
    .service-card:nth-child(1):hover { background: linear-gradient(135deg, #2e2a6e, #1a1c28); }
    .service-card:nth-child(6):hover { background: linear-gradient(135deg, #2e2a6e, #1a1c28); }
    .service-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--navy), var(--red));
      transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
    }
    .service-card:hover { background: #1a1c28; }
    .service-card:hover::after { transform: scaleX(1); }
    .svc-icon { width: 44px; height: 44px; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; }
    .svc-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .service-name { font-family: var(--font-display); font-size: 1.45rem; letter-spacing: 0.04em; margin-bottom: 10px; }
    .service-desc { font-size: 0.88rem; color: rgba(244,244,246,0.65); line-height: 1.78; font-weight: 300; }

    /* ─── PRECIOS ─── */
    #precios { background: var(--black); }
    .promo-banner {
      margin-bottom: 48px; border: 1px solid #C4A55F; border-radius: 4px;
      padding: 22px 30px;
      background: linear-gradient(135deg, rgba(196,165,95,0.18) 0%, rgba(196,165,95,0.06) 50%, rgba(196,165,95,0.10) 100%);
      box-shadow: inset 0 0 80px rgba(196,165,95,0.04), 0 0 24px rgba(196,165,95,0.06);
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    }
    .promo-icon svg { width: 30px; height: 30px; stroke: #C4A55F; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .promo-text h4 { font-family: var(--font-display); font-size: 1.3rem; color: #C4A55F; letter-spacing: 0.05em; margin-bottom: 2px; }
    .promo-text p { font-size: 0.84rem; color: rgba(244,244,246,0.70); line-height: 1.6; }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 18px; }
    .price-card {
      border: 1px solid var(--border); border-radius: 4px; padding: 34px 30px;
      position: relative; transition: border-color 0.25s, transform 0.2s; background: var(--card);
    }
    .price-card:hover { border-color: rgba(192,64,63,0.4); transform: translateY(-4px); }
    .price-card.featured {
      border-color: var(--red);
      background: linear-gradient(145deg, rgba(192,64,63,0.06), var(--card));
    }
    .price-badge {
      position: absolute; top: -11px; left: 24px;
      background: var(--red); color: #fff;
      font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; padding: 3px 12px; border-radius: 20px;
    }
    .price-name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.04em; margin-bottom: 6px; }
    .price-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
    .price-amount { font-family: var(--font-display); font-size: 2.6rem; color: var(--white); line-height: 1; margin-bottom: 4px; }
    .price-amount span { font-size: 0.95rem; color: var(--muted); font-family: var(--font-body); font-weight: 300; }
    .price-note { font-size: 0.72rem; color: var(--muted); margin-bottom: 24px; }
    .price-items { list-style: none; }
    .price-items li {
      font-size: 0.85rem; color: rgba(244,244,246,0.65);
      padding: 7px 0; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 10px;
    }
    .price-items li:last-child { border-bottom: none; }
    .check-icon { flex-shrink: 0; width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* ─── SERVICIO A DOMICILIO ─── */
    #servicio-domicilio { background: linear-gradient(135deg, rgba(192,64,63,0.08) 0%, rgba(26,23,64,0.04) 100%); }
    .domicilio-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .domicilio-image { position: relative; border-radius: 8px; overflow: hidden; }
    .domicilio-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
    .domicilio-content h2 { margin-bottom: 20px; line-height: 1.2; }
    .domicilio-content .section-sub { margin-bottom: 30px; }
    .domicilio-benefits { list-style: none; margin-bottom: 32px; }
    .domicilio-benefits li {
      font-size: 0.95rem; color: rgba(244,244,246,0.85);
      padding: 12px 0; display: flex; align-items: center; gap: 14px;
    }
    .domicilio-benefits .check-icon { width: 18px; height: 18px; stroke-width: 2; }

    /* ─── NOSOTROS ─── */
    #nosotros { background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-visual { position: relative; height: 460px; }
    .about-box-main {
      position: absolute; inset: 0; background: var(--card);
      border: 1px solid var(--border); border-radius: 4px;
      display: flex; align-items: center; justify-content: center; overflow: hidden;
    }
    .about-gfx-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
    .about-gfx-wrap::before {
      content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
      border: 1px solid rgba(26,23,64,0.3);
      box-shadow: 0 0 0 32px rgba(26,23,64,0.06), 0 0 0 64px rgba(192,64,63,0.03);
    }
    .about-gfx { font-family: var(--font-display); font-size: clamp(90px, 12vw, 160px); color: rgba(26,23,64,0.25); line-height: 1; user-select: none; position: relative; z-index: 1; }
    .about-box-accent {
      position: absolute; bottom: -18px; right: -18px;
      width: 130px; height: 130px; background: var(--red); border-radius: 4px; z-index: 2;
      display: flex; align-items: center; justify-content: center;
    }
    .about-box-accent .num { font-family: var(--font-display); font-size: 2.6rem; color: #fff; line-height: 1; }
    .about-box-accent .lbl { font-size: 0.64rem; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 0 8px; }
    .about-text .section-sub { max-width: 100%; }
    .about-values { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
    .value-pill {
      padding: 7px 16px; border: 1px solid var(--border); border-radius: 20px;
      font-size: 0.78rem; color: rgba(244,244,246,0.55); letter-spacing: 0.04em;
      display: flex; align-items: center; gap: 7px;
    }
    .value-pill svg { width: 13px; height: 13px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ─── CITA ─── */
    #cita { background: var(--black); }
    .cita-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .cita-steps { margin-top: 8px; }
    .step { display: flex; gap: 20px; margin-bottom: 36px; }
    .step-num { font-family: var(--font-display); font-size: 2rem; color: var(--red); line-height: 1; flex-shrink: 0; width: 44px; opacity: 0.6; }
    .step-content h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; }
    .step-content p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }
    .cita-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 6px; padding: 38px 34px; position: relative; overflow: hidden;
    }
    .cita-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--navy), var(--red));
    }
    .cita-card h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.03em; margin-bottom: 8px; }
    .cita-card > p { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
    .whatsapp-btn {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      background: #25D366; color: #fff; padding: 16px 24px; border-radius: 0;
      font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em;
      text-decoration: none; width: 100%;
      transition: background 0.2s, transform 0.15s; margin-bottom: 14px;
      transform: skewX(-10deg);
    }
    .whatsapp-btn > * { display: inline-block; transform: skewX(10deg); }
    .whatsapp-btn:hover { background: #1ebe5a; transform: skewX(-10deg) translateY(-2px); }
    .cita-note { font-size: 0.75rem; color: var(--muted); text-align: center; line-height: 1.6; margin-bottom: 22px; }
    .cita-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
    .contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
    .contact-row:last-child { margin-bottom: 0; }
    .contact-row svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
    .contact-row span { font-size: 0.84rem; color: rgba(244,244,246,0.75); line-height: 1.55; }

    /* ─── FOOTER ─── */
    footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 5% 36px; }
    .footer-red-line { height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); margin-bottom: 48px; opacity: 0.4; }
    .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
    .footer-brand p { font-size: 0.86rem; color: var(--muted); max-width: 280px; line-height: 1.75; margin-top: 10px; }
    .footer-col h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a, .footer-col ul li span { font-size: 0.86rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 0.76rem; color: var(--muted); }
    .social-links { margin-top: 24px; }
    .social-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
    .social-btns { display: flex; gap: 10px; flex-wrap: wrap; }
    .social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 4px; font-size: 0.82rem; font-weight: 600; text-decoration: none; border: 1px solid var(--border); color: var(--muted); background: transparent; transition: color 0.2s, border-color 0.2s, background 0.2s; }
    .social-btn:hover { color: var(--white); }
    .social-btn--instagram:hover { border-color: #E1306C; background: rgba(225,48,108,0.08); color: #E1306C; }
    .social-btn--facebook:hover  { border-color: #1877F2; background: rgba(24,119,242,0.08); color: #1877F2; }
    .social-btn--maps:hover      { border-color: #34A853; background: rgba(52,168,83,0.08);  color: #34A853; }

    /* ─── CHECKERED DIVIDER ─── */
    .checkered-divider {
      height: 8px; width: 100%;
      background-image: conic-gradient(#0a0b0f 90deg, #f4f4f6 90deg 180deg, #0a0b0f 180deg 270deg, #f4f4f6 270deg);
      background-size: 16px 16px;
    }
    html.light .checkered-divider {
      background-image: conic-gradient(#12131a 90deg, #f5f5f7 90deg 180deg, #12131a 180deg 270deg, #f5f5f7 270deg);
    }

    /* ─── ANIMATION ─── */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hero-stats { position: static; margin-top: 48px; justify-content: flex-start; }
      #hero { padding-top: 110px; justify-content: center; }
      #nosotros { grid-template-columns: 1fr; }
      .about-visual { height: 280px; }
      .domicilio-container { grid-template-columns: 1fr; gap: 40px; }
      .cita-wrapper { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .service-card:nth-child(1), .service-card:nth-child(6) { grid-column: span 1; }
    }
    @media (max-width: 600px) {
      section { padding: 72px 5%; }
      .hero-stats { gap: 28px; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .services-grid { grid-template-columns: 1fr; }
    }

    /* ─── BOOKING CTA (cita card) ─── */
    .booking-cta-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 16px 24px; margin-bottom: 0;
      background: var(--red); color: #fff; border: none; cursor: pointer;
      font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
      letter-spacing: 0.04em; text-transform: uppercase;
      transform: skewX(-10deg); transition: background 0.2s, transform 0.15s;
    }
    .booking-cta-btn > * { display: inline-block; transform: skewX(10deg); }
    .booking-cta-btn:hover { background: var(--red-dark); transform: skewX(-10deg) translateY(-2px); }
    .cita-divider-or {
      display: flex; align-items: center; gap: 10px; margin: 18px 0;
      font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
    }
    .cita-divider-or::before, .cita-divider-or::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    /* ─── BOOKING MODAL ─── */
    .bm-backdrop {
      position: fixed; inset: 0; z-index: 200;
      display: none; align-items: center; justify-content: center;
      padding: 20px;
    }
    .bm-backdrop.open { display: flex; }
    .bm-overlay {
      position: absolute; inset: 0;
      background: rgba(10,11,15,0.82); backdrop-filter: blur(6px);
    }
    .bm-box {
      position: relative; z-index: 1; width: 100%; max-width: 680px;
      max-height: 90vh; overflow-y: auto;
      background: var(--card); border: 1px solid var(--border);
      border-top: 2px solid var(--red);
      border-radius: 6px; padding: 36px 40px;
      animation: bmSlideIn 0.28s ease;
    }
    @keyframes bmSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    /* Header */
    .bm-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
    .bm-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 4px; }
    .bm-title { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.03em; line-height: 1; }
    .bm-close {
      background: none; border: 1px solid var(--border); color: var(--muted);
      width: 34px; height: 34px; border-radius: 50%; cursor: pointer; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s;
    }
    .bm-close:hover { border-color: var(--red); color: var(--red); }
    .bm-close svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

    /* Progress */
    .bm-progress {
      display: flex; align-items: center; gap: 0; margin-bottom: 32px;
    }
    .bm-prog-step {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
      opacity: 0.35; transition: opacity 0.2s;
    }
    .bm-prog-step.active, .bm-prog-step.done { opacity: 1; }
    .bm-prog-num {
      width: 28px; height: 28px; border-radius: 50%;
      border: 2px solid var(--muted); display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; color: var(--muted);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .bm-prog-step.active .bm-prog-num { border-color: var(--red); color: var(--red); }
    .bm-prog-step.done .bm-prog-num { border-color: var(--red); background: var(--red); color: #fff; }
    .bm-prog-lbl { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
    .bm-prog-line { flex: 1; height: 1px; background: var(--border); margin: 0 6px; margin-bottom: 18px; }

    /* Steps */
    .bm-step { display: none; }
    .bm-step.active { display: block; }
    .bm-step-hint { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

    /* Calendar */
    .bm-cal-nav {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
    }
    .bm-cal-month { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.05em; }
    .bm-cal-arr {
      background: none; border: 1px solid var(--border); color: var(--muted);
      width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 0.85rem;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s;
    }
    .bm-cal-arr:hover { border-color: var(--red); color: var(--red); }
    .bm-cal-arr:disabled { opacity: 0.25; cursor: default; }
    .bm-cal-days-header {
      display: grid; grid-template-columns: repeat(7, 1fr);
      text-align: center; margin-bottom: 8px;
    }
    .bm-cal-days-header span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; padding: 6px 0; }
    .bm-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
    .bm-cal-day {
      aspect-ratio: 1; border: 1px solid transparent; border-radius: 4px;
      background: none; cursor: pointer; font-size: 0.85rem; font-weight: 500; color: var(--white);
      display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px;
      transition: background 0.15s, border-color 0.15s;
      position: relative;
    }
    .bm-cal-day:hover:not(:disabled) { background: var(--red-dim); border-color: var(--red); }
    .bm-cal-day.selected { background: var(--red); border-color: var(--red); color: #fff; }
    .bm-cal-day:disabled { color: var(--muted); opacity: 0.3; cursor: default; }
    .bm-cal-day.empty { cursor: default; border: none; }
    .bm-cal-day-dot {
      width: 5px; height: 5px; border-radius: 50%; background: #4caf50; flex-shrink: 0;
    }
    .bm-cal-day.full .bm-cal-day-dot { background: var(--muted); }
    .bm-cal-day.loading { opacity: 0.5; pointer-events: none; }
    .bm-cal-legend {
      display: flex; align-items: center; gap: 16px; margin-top: 14px;
      font-size: 0.72rem; color: var(--muted);
    }
    .bm-legend-dot {
      width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 4px;
    }
    .bm-legend-dot.available { background: #4caf50; }
    .bm-legend-dot.unavailable { background: var(--muted); }

    /* Time slots */
    .bm-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-bottom: 20px; }
    .bm-slot {
      padding: 14px 10px; text-align: center; background: none;
      border: 1px solid var(--border); border-radius: 4px; cursor: pointer;
      font-size: 1rem; font-family: var(--font-display); letter-spacing: 0.06em; color: var(--white);
      transition: background 0.15s, border-color 0.15s;
    }
    .bm-slot:hover { background: var(--red-dim); border-color: var(--red); }
    .bm-slot.selected { background: var(--red); border-color: var(--red); color: #fff; }

    /* Form */
    .bm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .bm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .bm-field label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
    .bm-field input, .bm-field textarea {
      background: var(--dark); border: 1px solid var(--border); color: var(--white);
      padding: 11px 14px; border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem;
      transition: border-color 0.2s; outline: none; width: 100%;
    }
    .bm-field input:focus, .bm-field textarea:focus { border-color: var(--red); }
    .bm-field input.error, .bm-field textarea.error { border-color: #e04040; }
    .bm-field textarea { resize: vertical; min-height: 80px; }
    .bm-divider-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--red); margin: 4px 0 16px;
    }
    .bm-radio-group { display: flex; gap: 14px; flex-wrap: wrap; }
    .bm-radio {
      display: flex; align-items: center; gap: 8px; cursor: pointer;
      font-size: 0.9rem; color: rgba(244,244,246,0.8); padding: 10px 16px;
      border: 1px solid var(--border); border-radius: 4px; transition: border-color 0.2s;
    }
    .bm-radio:has(input:checked) { border-color: var(--red); color: var(--white); }
    .bm-radio input { accent-color: var(--red); }

    /* Services */
    .bm-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 6px; }
    .bm-svc {
      padding: 14px 16px; background: none; border: 1px solid var(--border); border-radius: 4px;
      cursor: pointer; text-align: left; color: var(--white);
      font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
      display: flex; flex-direction: column; gap: 4px;
      transition: background 0.15s, border-color 0.15s;
    }
    .bm-svc span { font-size: 0.74rem; color: var(--muted); font-weight: 400; }
    .bm-svc:hover { background: var(--red-dim); border-color: var(--red); }
    .bm-svc.selected { background: var(--red-dim); border-color: var(--red); }
    .bm-svc--fault { border-style: dashed; }

    /* Actions */
    .bm-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; gap: 12px; }
    .bm-next {
      background: var(--red); color: #fff; border: none; cursor: pointer;
      padding: 13px 28px; font-family: var(--font-body); font-size: 0.88rem;
      font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      transform: skewX(-10deg); transition: background 0.2s;
      text-decoration: none; display: inline-block;
    }
    .bm-next > * { transform: skewX(10deg); display: inline-block; }
    .bm-next:hover { background: var(--red-dark); }
    .bm-back {
      background: none; border: none; color: var(--muted); cursor: pointer;
      font-size: 0.82rem; font-family: var(--font-body); padding: 0;
      transition: color 0.2s;
    }
    .bm-back:hover { color: var(--white); }
    .bm-error { font-size: 0.8rem; color: #e04040; margin-top: -8px; min-height: 18px; }

    /* Success */
    .bm-success { text-align: center; padding: 20px 0 10px; }
    .bm-success-icon {
      width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
      background: rgba(76,175,80,0.12); border: 2px solid #4caf50;
      display: flex; align-items: center; justify-content: center;
    }
    .bm-success-icon svg { width: 32px; height: 32px; stroke: #4caf50; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .bm-success h3 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.03em; margin-bottom: 10px; }
    .bm-success p { margin-bottom: 8px; font-size: 0.9rem; }
    .bm-success strong { color: var(--red); font-size: 1.1rem; }
    .bm-success-actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

    /* Light mode adjustments */
    html.light .bm-box { background: var(--card); }
    html.light .bm-field input, html.light .bm-field textarea { background: var(--dark); color: var(--white); }
    html.light .bm-svc { color: var(--white); }
    html.light .bm-cal-day { color: var(--white); }

    /* Booking modal responsive */
    @media (max-width: 600px) {
      .bm-box { padding: 24px 20px; }
      .bm-form-row { grid-template-columns: 1fr; }
      .bm-services { grid-template-columns: 1fr; }
      .bm-slots { grid-template-columns: repeat(3, 1fr); }
      .bm-prog-lbl { display: none; }
    }
