/* Verificador de visibilidad en IA. Fuente única: lo usan el home y la
   página de SEO & GEO. */
.checker { display: flex; gap: 10px; justify-content: center; max-width: 540px; margin: 4px auto 12px; flex-wrap: wrap; }
.checker input { flex: 1; min-width: 220px; padding: 15px 18px; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; font-size: 1.05rem; font-family: inherit; }
.checker input::placeholder { color: #8aa0bd; }
.checker input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(28,154,249,.25); }
.checker-hint { color: #8aa0bd; font-size: .9rem; }
.checker-invite { font-size: 1.05rem; color: var(--muted); margin: 26px 0 10px; }
.checker-invite b { color: #fff; font-weight: 600; }
.checker-result { max-width: 560px; margin: 22px auto 0; }
.checker-card { background: linear-gradient(170deg, rgba(18,32,56,.96), rgba(11,19,34,.96)); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 30px 26px; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.checker-load { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 46px 26px; }
/* OJO con el nombre: esta hoja es global y se carga en todas las páginas que
   montan el verificador. La página de servicios ya tiene un @keyframes girar
   (el carrusel del celular de la maqueta, que traslada en vertical). Como este
   archivo se carga después, ganaba y el texto del celular salía rotando. */
.checker-load .spin { width: 44px; height: 44px; border-radius: 50%; border: 3px solid rgba(255,255,255,.1); border-top-color: var(--accent); animation: checkerGirar .9s linear infinite; }
@keyframes checkerGirar { to { transform: rotate(360deg); } }
.checker-load b { font-family: 'Jost', sans-serif; font-size: 1.1rem; color: #fff; }
.checker-load span { color: var(--muted); font-size: .9rem; max-width: 30ch; }
.gauge { position: relative; width: 130px; height: 130px; margin: 0 auto 6px; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge circle { fill: none; stroke-width: 9; stroke-linecap: round; }
.gauge .pista { stroke: rgba(255,255,255,.07); }
.gauge .valor { transition: stroke-dashoffset 1.1s cubic-bezier(.2,.7,.2,1); }
.res.bajo .valor { stroke: #f87171; } .res.medio .valor { stroke: #fbbf24; } .res.alto .valor { stroke: #4ade80; }
.gauge-txt { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gauge-txt b { font-family: 'Jost', sans-serif; font-size: 2.6rem; font-weight: 800; line-height: 1; color: #fff; }
.gauge-txt small { color: #8aa0bd; font-size: .78rem; }
.checker-card .rotulo { color: #8aa0bd; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.checker-card .teaser { color: #dbe4f2; font-size: 1rem; line-height: 1.55; margin-bottom: 20px; }
.checker-card .finds { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; text-align: left; }
.checker-card .finds li { display: flex; align-items: flex-start; gap: 11px; font-size: .93rem; color: #c8d4e4; line-height: 1.45; }
.checker-card .finds i { flex-shrink: 0; width: 21px; height: 21px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-style: normal; font-size: .7rem; font-weight: 700; margin-top: 1px; }
.checker-card .finds li.ok i { background: rgba(74,222,128,.15); border: 1px solid rgba(74,222,128,.45); color: #4ade80; }
.checker-card .finds li.no i { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.4); color: #f87171; }
.checker-card .nota { display: block; margin-top: 11px; color: var(--muted); font-size: .78rem; }
.checker-card .full-cta { display: block; text-align: center; width: 100%; }
/* modal */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,6,12,.78); backdrop-filter: blur(4px); }
.modal-box { position: relative; z-index: 1; width: 100%; max-width: 520px; animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: -16px; right: -6px; z-index: 3; background: #0f1a2e; border: 1px solid rgba(255,255,255,.16); color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .2s; }
.modal-close:hover { background: #1a2942; }
.modal .checker-result { margin: 0; }
