/* Caefy — hoja de estilos de la web pública. Tokens del Brand Book (sept. 2026). */
@font-face { font-family: 'TASA Orbiter'; font-style: normal; font-weight: 400 800; font-display: swap; src: url('/assets/fonts/tasa-orbiter-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'TASA Orbiter'; font-style: normal; font-weight: 400 800; font-display: swap; src: url('/assets/fonts/tasa-orbiter-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
[hidden] { display: none !important; }
/* ── Tokens: Brand Book Caefy (sept. 2026) ─────────────────────────── */
  :root {
    --orange: #ff9400; --orange-dark: #ce5300;
    --grad-hard: linear-gradient(90deg, #ff9400 0%, #ce5300 100%);
    --grad-soft: linear-gradient(135deg, #f8f9ff 0%, #f0f0ff 50%, #fef8f2 100%);
    --success: #22c55e; --warning: #f59e0b; --error: #ef4444; --info: #3b82f6;
    --ink: #1a1a1a; --ink-2: #454545; --ink-3: #767676;
    --paper: #ffffff; --paper-2: #f6f6f8; --line: #e3e3e8; --rule: #1a1a1a;
    --dark: #1a1a1a; --on-dark: #f5f5f5; --on-dark-2: #b8b8b8; --line-dark: rgba(255,255,255,0.14);
    --font: 'TASA Orbiter', 'Inter', system-ui, -apple-system, sans-serif;
    --max: 1200px; --gutter: clamp(20px, 4vw, 48px); --nav-h: 68px;
  }
  html { color-scheme: light; scroll-behavior: smooth; }
  main { display: block; }
  body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
  * { box-sizing: border-box; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
  p { margin: 0; }
  ul { margin: 0; padding: 0; list-style: none; }
  button { font-family: inherit; }
  [id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

  .wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
  .section { padding-block: clamp(72px, 9vw, 128px); }
  .section.alt { background: var(--paper-2); }
  .section.dark { background: var(--dark); color: var(--on-dark); }

  .sec-head { border-top: 2px solid var(--rule); border-bottom: 2px solid var(--rule); padding: 16px 0; margin-bottom: clamp(40px, 5vw, 64px); display: flex; align-items: baseline; gap: 18px; }
  .sec-head .num { color: var(--orange); font-weight: 800; font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
  .sec-head h2, .sec-head h1 { text-transform: uppercase; font-weight: 800; font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -0.01em; line-height: 1; }
  .dark .sec-head { border-color: rgba(255,255,255,0.6); }

  .statement { font-size: clamp(30px, 4.2vw, 54px); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; max-width: 20ch; }
  .lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-2); line-height: 1.5; max-width: 58ch; }
  .dark .lead { color: var(--on-dark-2); }
  .overline { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
  .muted { color: var(--ink-3); }
  .note { font-size: 13px; color: var(--ink-3); margin-top: 40px; }

  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 16px; padding: 14px 24px; border-radius: 8px; text-decoration: none; border: 2px solid transparent; background-origin: border-box; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
  .btn-primary { background-image: var(--grad-hard); background-origin: border-box; background-clip: border-box; color: #fff; box-shadow: 0 10px 30px rgba(206,83,0,0.22); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(206,83,0,0.3); }
  .btn-primary:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
  .btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
  .btn-ghost:hover { background: var(--ink); color: #fff; }
  .dark .btn-ghost { border-color: var(--on-dark); color: var(--on-dark); }
  .btn-lg { padding: 18px 32px; font-size: 18px; }
  .btn-link { background: none; border: 0; color: var(--ink-3); font-weight: 600; cursor: pointer; padding: 10px 6px; font-size: 15px; }
  .btn-link:hover { color: var(--ink); }
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

  /* ── Navbar con desplegable ─────────────────────────────────────── */
  .nav { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: rgba(255,255,255,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
  .nav .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 16px; }
  .nav .logo img { height: 26px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links > li { position: relative; }
  .nav-links a.navlink { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink-2); padding: 10px 14px; border-radius: 8px; }
  .nav-links a.navlink:hover, .nav-links a.navlink.active { color: var(--ink); background: var(--paper-2); }
  .nav-links a.navlink.active { box-shadow: inset 0 -2px 0 var(--orange); border-radius: 8px 8px 0 0; }
  .nav-links .chev { width: 14px; height: 14px; transition: transform .2s ease; }
  .has-menu:hover .chev, .has-menu.open .chev { transform: rotate(180deg); }
  .menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 280px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 24px 60px rgba(26,26,26,0.14); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
  .has-menu:hover .menu, .has-menu.open .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: none; }
  .menu::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
  .menu a { display: grid; grid-template-columns: 30px 1fr; align-items: baseline; gap: 8px; padding: 9px 12px; border-radius: 6px; text-decoration: none; font-size: 15px; font-weight: 600; color: var(--ink-2); }
  .menu a:hover { background: var(--paper-2); color: var(--ink); }
  .menu a b { color: var(--orange); font-weight: 800; font-size: 13px; font-variant-numeric: tabular-nums; }
  .menu .all { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; color: var(--orange-dark); grid-template-columns: 1fr; }
  .nav .cta { margin-left: 10px; padding: 10px 18px; font-size: 15px; }
  .burger { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; }
  .burger svg { width: 22px; height: 22px; }
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .burger { display: inline-flex; }
    .nav .cta { display: none; }
  }
  .drawer { display: none; position: fixed; inset: calc(var(--nav-h) + env(safe-area-inset-top, 0px)) 0 0 0; background: #fff; z-index: 49; padding: 20px var(--gutter) 40px; overflow-y: auto; }
  .drawer.open { display: block; }
  .drawer a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; font-size: 20px; }
  .drawer .sub a { font-weight: 500; font-size: 16px; padding: 10px 0 10px 18px; color: var(--ink-2); border-bottom: 0; }
  .drawer .btn { margin-top: 24px; width: 100%; }

  /* ── Páginas ───────────────────────────────────────────────────── */
  .placeholder { padding-block: clamp(56px, 8vw, 96px); }
  .placeholder .box { border: 1px dashed rgba(26,26,26,0.25); border-radius: 12px; padding: clamp(28px, 4vw, 48px); background: var(--paper-2); display: grid; gap: 14px; max-width: 720px; }
  .placeholder .box .tag { display: inline-block; width: max-content; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-dark); background: rgba(255,148,0,0.12); padding: 5px 10px; border-radius: 999px; }

  /* Hero */
  .hero { background: var(--grad-soft); padding-block: clamp(56px, 8vw, 104px); border-bottom: 1px solid var(--line); }
  .hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
  .hero h1 { text-transform: uppercase; font-weight: 800; font-size: clamp(38px, 5.6vw, 70px); line-height: 0.98; letter-spacing: -0.03em; margin: 18px 0 14px; }
  .hero h1 .accent { color: var(--orange); }
  .hero .claim { font-size: clamp(20px, 2vw, 26px); font-weight: 600; color: var(--ink); margin-bottom: 20px; letter-spacing: -0.01em; }
  .hero .claim::before { content: ''; display: inline-block; width: 28px; height: 3px; background: var(--orange); vertical-align: middle; margin-right: 12px; }
  .hero .lead { margin-bottom: 32px; }
  .badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
  .badge { font-size: 13px; font-weight: 600; color: var(--ink-2); padding: 8px 14px; border: 1px solid rgba(26,26,26,0.16); border-radius: 999px; background: rgba(255,255,255,0.6); }
  .frame { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: 0 30px 70px rgba(26,26,26,0.14); }
  .frame-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
  .frame-bar span { width: 10px; height: 10px; border-radius: 50%; background: #d9d9de; }
  .frame-bar em { font-style: normal; font-size: 12px; color: var(--ink-3); margin-left: 8px; }
  @media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }

  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
  .split { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(32px, 5vw, 64px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
  @media (max-width: 1000px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 760px) { .grid-4, .grid-3, .grid-2, .split { grid-template-columns: 1fr; } }

  .item { border-top: 2px solid var(--rule); padding-top: 20px; }
  .item .idx { color: var(--orange); font-weight: 800; font-size: 14px; letter-spacing: 0.1em; }
  .item h3 { font-size: 21px; font-weight: 700; line-height: 1.2; margin: 12px 0 10px; }
  .item p { font-size: 15.5px; color: var(--ink-2); }
  .dark .item { border-top-color: var(--line-dark); }
  .dark .item p { color: var(--on-dark-2); }

  .feature { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); }
  .feature:last-child { border-bottom: 1px solid var(--line); }
  .feature .mark { width: 40px; height: 4px; background: var(--orange); margin-top: 14px; }
  .feature h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
  .feature p { color: var(--ink-2); font-size: 16px; max-width: 60ch; }

  .status { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot.live { background: var(--success); box-shadow: 0 0 0 4px rgba(34,197,94,0.16); }
  .dot.soon { background: var(--warning); box-shadow: 0 0 0 4px rgba(245,158,11,0.18); }
  .dot.next { background: var(--info); box-shadow: 0 0 0 4px rgba(59,130,246,0.16); }
  .tile { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
  .tile strong { display: block; font-size: 20px; font-weight: 700; }
  .tile span { font-size: 14px; color: var(--ink-3); }
  .tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
  @media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }
  .plat { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; }
  @media (max-width: 900px) { .plat { grid-template-columns: 1fr; } }
  .prio { background: var(--dark); color: var(--on-dark); border-radius: 8px; padding: 28px; margin-top: 32px; }
  .prio h3 { font-size: 20px; font-weight: 700; margin: 10px 0 8px; }
  .prio p { color: var(--on-dark-2); font-size: 15px; margin-bottom: 20px; }
  .col { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
  .col ul { display: grid; gap: 10px; margin-top: 18px; }
  .col li { background: var(--paper-2); border-radius: 6px; padding: 13px 16px; font-size: 18px; font-weight: 700; line-height: 1.25; }
  .col li small { display: block; font-size: 13px; font-weight: 400; color: var(--ink-3); margin-top: 2px; }
  .col li.cta { background: transparent; border: 1px dashed rgba(26,26,26,0.25); font-size: 15px; }
  .col li.cta a { color: var(--orange-dark); text-decoration: none; }

  .checks { display: grid; gap: 12px; margin-top: 28px; }
  .checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
  .checks li::before { content: ''; width: 18px; height: 2px; background: var(--orange); margin-top: 12px; flex-shrink: 0; }
  .quote { border-left: 3px solid var(--orange); padding-left: 16px; font-weight: 600; color: var(--ink-2); margin: 20px 0 0; }
  .phone { width: 300px; max-width: 100%; margin-inline: auto; background: var(--dark); border-radius: 38px; padding: 12px; box-shadow: 0 30px 70px rgba(26,26,26,0.22); }
  .phone .screen { background: var(--paper-2); border-radius: 28px; aspect-ratio: 9 / 16; display: flex; align-items: center; justify-content: center; padding: 28px; text-align: center; }
  .phone .mark-c { width: 56px; height: 56px; margin: 0 auto 18px; }
  .phone .bar { height: 8px; border-radius: 999px; background: #dcdce2; margin: 8px auto; }
  .phone .cta { background: var(--grad-hard); color: #fff; font-weight: 700; font-size: 14px; padding: 12px; border-radius: 8px; margin-top: 24px; }

  .product { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
  .product + .product { margin-top: clamp(56px, 8vw, 96px); }
  .product.flip { grid-template-columns: 3fr 2fr; }
  .product.flip .copy { order: 2; }
  .product h3 { font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; line-height: 1.12; margin: 12px 0 16px; }
  .product p { color: var(--ink-2); }
  .product .foot { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 0; margin-top: 24px; font-size: 14px; color: var(--ink-3); }
  .shot { border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 24px 60px rgba(26,26,26,0.12); }
  @media (max-width: 860px) { .product, .product.flip { grid-template-columns: 1fr; } .product.flip .copy { order: 0; } }

  .pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-dark); background: rgba(255,148,0,0.12); padding: 5px 10px; border-radius: 999px; margin-right: 10px; vertical-align: middle; }
  .mail { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px; max-width: 520px; margin-inline: auto; box-shadow: 0 24px 60px rgba(26,26,26,0.1); }
  .mail .k { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
  .mail .v { font-weight: 600; font-size: 15px; margin-bottom: 14px; }
  .mail .v.to { color: var(--orange-dark); }
  .mail .subj { font-weight: 700; font-size: 17px; margin-bottom: 14px; }
  .mail .bar { height: 8px; border-radius: 999px; background: #e6e6ea; margin: 8px 0; }
  .mail .out { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 20px; }
  .mail .row { display: flex; gap: 12px; align-items: flex-start; margin-top: 12px; }
  .mail .row i { font-style: normal; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
  .mail .row i.w { background: rgba(245,158,11,0.16); color: #b45309; }
  .mail .row i.s { background: rgba(34,197,94,0.16); color: #15803d; }
  .mail .row b { display: block; font-size: 15px; }
  .mail .row small { color: var(--ink-3); font-size: 13px; }

  .callout { position: relative; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--orange); border-radius: 10px; padding: 28px 32px 28px 36px; max-width: 860px; margin: 32px 0 52px; font-weight: 700; font-size: clamp(19px, 1.8vw, 23px); line-height: 1.4; letter-spacing: -0.01em; box-shadow: 0 24px 60px rgba(26,26,26,0.08); }
  .callout .k { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 8px; }
  .sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
  .sec-grid .item h3 { font-size: 18px; }
  .sec-grid .item { padding: 24px 0; background: transparent; }
  @media (max-width: 900px) { .sec-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .sec-grid { grid-template-columns: 1fr; } }

  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { width: 100%; min-width: 640px; border-collapse: collapse; }
  th { text-align: left; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding: 14px 16px; border-bottom: 2px solid var(--rule); }
  th.caefy { color: var(--orange-dark); }
  td { padding: 18px 16px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 16px; }
  td.k { font-weight: 700; } td.m { color: var(--ink-3); } td.c { color: var(--orange-dark); font-weight: 700; }
  tr:hover td { background: rgba(255,148,0,0.04); }

  .faq { max-width: 820px; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-item:first-child { border-top: 2px solid var(--rule); }
  .faq-btn { width: 100%; background: none; border: 0; font: inherit; color: inherit; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; cursor: pointer; }
  .faq-btn span { font-size: 19px; font-weight: 700; line-height: 1.3; }
  .faq-btn i { font-style: normal; color: var(--orange); font-size: 28px; font-weight: 300; line-height: 1; flex-shrink: 0; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-a.open { max-height: 900px; }
  .faq-a p { color: var(--ink-2); padding-bottom: 14px; font-size: 16.5px; max-width: 70ch; }
  .faq-a p:last-child { padding-bottom: 26px; }

  /* Banda final del producto */
  .cta-band { display: grid; grid-template-columns: 1fr 1fr; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
  .cta-art { position: relative; background: #1a1a1a url('/images/brand/patron.jpg') center / cover no-repeat; min-height: 340px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; }
  .cta-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,26,26,0.05) 0%, rgba(26,26,26,0.55) 100%); }
  .cta-art > * { position: relative; z-index: 1; }
  .cta-art img { height: 30px; width: auto; align-self: flex-start; }
  .cta-art h2 { text-transform: uppercase; font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); line-height: 0.98; letter-spacing: -0.02em; }
  .cta-copy { background: #fff; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; gap: 18px; }
  .cta-copy ul { display: grid; gap: 10px; }
  .cta-copy li { display: flex; gap: 10px; color: var(--ink-2); font-size: 16px; }
  .cta-copy li::before { content: ''; width: 16px; height: 2px; background: var(--orange); margin-top: 12px; flex-shrink: 0; }
  @media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; } .cta-art { min-height: 240px; } }

  /* ── Partners ─────────────────────────────────────────────────── */
  .partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 960px) { .partners { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .partners { grid-template-columns: 1fr; } }
  .partner { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 36px 28px 28px; display: grid; grid-template-rows: 88px auto; gap: 18px; align-items: center; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
  .partner:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(26,26,26,0.10); border-color: rgba(255,148,0,0.5); }
  .partner .logo-box { display: flex; align-items: center; justify-content: center; height: 88px; }
  .partner img { max-height: 64px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .8; transition: filter .3s ease, opacity .3s ease; }
  .partner:hover img { filter: none; opacity: 1; }
  .partner .meta { border-top: 1px solid var(--line); padding-top: 14px; }
  .partner .meta b { display: block; font-size: 16px; }
  .partner .meta span { font-size: 13px; color: var(--ink-3); }
  .partner .meta em { display: block; font-style: normal; font-size: 12px; color: var(--orange-dark); font-weight: 700; margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
  .partner-band { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 420px; }
  @media (max-width: 760px) { .partner-band { grid-template-columns: 1fr; } }
  .partner-band .item h3 { font-size: 18px; }

  /* ── Equipo ───────────────────────────────────────────────────── */
  .team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 900px) { .team { grid-template-columns: 1fr; } }
  .member { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 32px 28px; display: grid; gap: 16px; justify-items: start; transition: transform .25s ease, box-shadow .25s ease; }
  .member:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(26,26,26,0.10); }
  .member img { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid #fff; box-shadow: 0 10px 30px rgba(26,26,26,0.14); }
  .member .who b { display: block; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
  .member .who span { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-dark); }
  .member p { color: var(--ink-2); font-size: 15.5px; }
  .member .btn { padding: 10px 18px; font-size: 14px; margin-top: 4px; }

  /* ── Qué es Caefy: sección en preparación ─────────────────────── */
  .coming { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: clamp(28px, 4vw, 44px); max-width: 760px; display: grid; gap: 14px; justify-items: start; }
  .coming::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 56px; background-image: var(--grad-hard); }
  .coming .pill { margin: 0; }
  .coming h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
  .coming p { color: var(--ink); font-size: clamp(18px, 1.8vw, 22px); font-weight: 600; line-height: 1.4; max-width: 52ch; }
  .coming a { color: var(--orange-dark); font-weight: 600; text-decoration: none; }
  .coming a:hover { text-decoration: underline; }

  /* ── Valores ──────────────────────────────────────────────────── */
  .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 900px) { .values { grid-template-columns: 1fr; } }
  .value { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 34px 30px 32px; transition: transform .25s ease, box-shadow .25s ease; }
  .value::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 56px; background-image: var(--grad-hard); transition: width .45s ease; }
  .value:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(26,26,26,0.10); }
  .value:hover::before { width: 100%; }
  .value .n { display: inline-block; font-size: clamp(34px, 3.4vw, 46px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; background-image: var(--grad-hard); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 26px; }
  .value h3 { font-size: 22px; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 12px; }
  .value p { color: var(--ink-2); font-size: 16px; }
  .teal { position: relative; overflow: hidden; margin-top: 24px; border-radius: 12px; background: #1a1a1a url('/images/brand/patron.jpg') center / cover no-repeat; color: #fff; padding: clamp(36px, 5vw, 64px); display: grid; gap: 14px; }
  .teal::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.45) 55%, rgba(26,26,26,0.08) 100%); }
  .teal > * { position: relative; z-index: 1; }
  .teal .k { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
  .teal h3 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; max-width: 24ch; }
  .teal p { font-size: clamp(17px, 1.6vw, 21px); color: rgba(255,255,255,0.9); max-width: 44ch; }
  @media (prefers-reduced-motion: reduce) { .value, .value::before { transition: none; } }

  /* ── Contacto ─────────────────────────────────────────────────── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
  @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: clamp(24px, 3vw, 36px); }
  .contact-list { display: grid; gap: 16px; margin-top: 28px; }
  .contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 16px; }
  .contact-list li:last-child { border-bottom: 1px solid var(--line); }
  .contact-list li span { color: var(--ink-3); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 3px; }
  .contact-list li a { color: var(--orange-dark); text-decoration: none; font-weight: 600; }
  .field { display: grid; gap: 6px; margin-bottom: 16px; }
  .field label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
  .field input, .field textarea { font: inherit; font-size: 16px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: #fff; width: 100%; }
  .field textarea { min-height: 120px; resize: vertical; }
  .field input:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,148,0,0.16); outline: none; }
  .field .err { display: none; color: #b91c1c; font-size: 13px; font-weight: 600; }
  .field.error input { border-color: var(--error); box-shadow: 0 0 0 3px rgba(239,68,68,0.14); }
  .field.error .err { display: block; }
  .ok { display: none; margin-top: 16px; padding: 12px 16px; border-radius: 8px; background: rgba(34,197,94,0.12); color: #15803d; font-weight: 600; font-size: 15px; }
  .ok.show { display: block; }

  /* ── Solicitar demo: wizard + calendario ───────────────────────── */
  .demo-wrap { max-width: 860px; margin-inline: auto; }
  .wizard { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 30px 70px rgba(26,26,26,0.10); overflow: hidden; }
  .wiz-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 28px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
  .wiz-top .step { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
  .wiz-top .time { font-size: 13px; color: var(--ink-3); }
  .progress { height: 4px; background: var(--line); }
  .progress > i { display: block; height: 100%; background: var(--grad-hard); width: 0; transition: width .35s ease; }
  .wiz-body { padding: clamp(28px, 4vw, 48px); min-height: 380px; }
  .wiz-body .q { font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 8px; }
  .wiz-body .hint { color: var(--ink-3); font-size: 15px; margin-bottom: 28px; }
  .chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
  .chips + .group { margin-top: 22px; }
  .group { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
  .chip { text-align: left; background: #fff; border: 2px solid var(--line); border-radius: 10px; padding: 16px 18px; font-size: 16px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: border-color .15s ease, background .15s ease, transform .15s ease; }
  .chip:hover { border-color: rgba(26,26,26,0.5); transform: translateY(-1px); }
  .chip.on { border-color: var(--orange); background: rgba(255,148,0,0.08); }
  .chip .k { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; }
  .chip.on .k { background: var(--orange); border-color: var(--orange); }
  .wiz-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 28px; border-top: 1px solid var(--line); }
  .wiz-foot .btn { padding: 12px 22px; font-size: 15px; }
  .two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
  @media (max-width: 600px) { .two { grid-template-columns: 1fr; } }

  .cal { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
  @media (max-width: 720px) { .cal { grid-template-columns: 1fr; } }
  .cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .cal-head b { font-size: 17px; text-transform: capitalize; }
  .cal-head button { background: #fff; border: 1px solid var(--line); border-radius: 8px; width: 36px; height: 36px; cursor: pointer; font-size: 18px; line-height: 1; }
  .cal-head button:disabled { opacity: .35; cursor: not-allowed; }
  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
  .cal-grid .dow { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); text-align: center; padding: 6px 0; }
  .day { aspect-ratio: 1; border: 1px solid transparent; background-origin: border-box; border-radius: 8px; background: transparent; font: inherit; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .day.free { background: var(--paper-2); border-color: var(--line); }
  .day.free:hover { border-color: var(--orange); }
  .day.on { background-image: var(--grad-hard); background-origin: border-box; color: #fff; border-color: transparent; }
  .day:disabled { color: #c4c4cc; cursor: not-allowed; }
  .day.today:not(.on) { box-shadow: inset 0 0 0 2px rgba(255,148,0,0.5); }
  .slots h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .slots .hint { margin-bottom: 14px; }
  .slots .chips { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .slots .chip { justify-content: center; padding: 12px; }
  .slots .empty { color: var(--ink-3); font-size: 15px; padding: 24px 0; }

  .field.other { margin-top: 18px; max-width: 520px; }
  .avail-rule { display: grid; gap: 4px; background: var(--paper-2); border: 1px solid var(--line); border-left: 5px solid var(--orange); border-radius: 10px; padding: 20px 24px; }
  .avail-rule .k { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-dark); }
  .avail-rule b { font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
  .avail-rule small { color: var(--ink-3); font-size: 14px; }
  .chip.static { cursor: default; justify-content: center; font-weight: 600; }
  .chip.static:hover { border-color: var(--line); transform: none; }
  .done { text-align: center; padding: 16px 0; }
  .done .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(34,197,94,0.14); color: #15803d; display: inline-flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 800; margin-bottom: 18px; }
  .summary { text-align: left; margin: 28px auto 0; max-width: 520px; border-top: 2px solid var(--rule); }
  .summary li { display: grid; grid-template-columns: 150px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .summary li span { color: var(--ink-3); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 3px; }

  /* Reveal */
  .rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .rv.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

  footer { border-top: 2px solid var(--rule); padding: 40px 0; }
  footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
  footer img { height: 24px; width: auto; }
  footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
  footer a { text-decoration: none; font-weight: 600; color: var(--ink-2); font-size: 15px; }
  footer a:hover { color: var(--orange-dark); }
  footer .copy { width: 100%; border-top: 1px solid var(--line); margin-top: 24px; padding-top: 20px; font-size: 13px; color: var(--ink-3); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
