/* ============================================================
   PÁGINAS INTELIGENTES — Template Cliente Final
   Sistema de diseño para webs de profesionales (light + premium)
   Paleta configurable por --c-primary y --c-accent (override por cliente)
   Tipografía: Figtree (heading) + Noto Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* === VARIABLES (configurables por cliente vía inline style en :root) === */
:root {
    /* Paleta primaria — sobreescribible por cliente */
    --c-primary:        #0891B2;          /* trust cyan médico (default) */
    --c-primary-light:  #22D3EE;
    --c-primary-dark:   #164E63;
    --c-primary-bg:     rgba(8,145,178,0.08);

    --c-accent:         #16A34A;          /* verde salud (default) */
    --c-accent-light:   #22C55E;
    --c-accent-dark:    #15803D;
    --c-accent-bg:      rgba(22,163,74,0.10);

    /* Neutros (no se cambian por cliente) */
    --c-bg:           #ffffff;
    --c-bg-soft:      #f8fafc;
    --c-bg-muted:     #f1f5f9;
    --c-card:         #ffffff;
    --c-border:       #e2e8f0;
    --c-border-soft:  #f1f5f9;

    --c-text:         #0f172a;
    --c-text-soft:    #334155;
    --c-text-muted:   #64748b;
    --c-text-dim:     #94a3b8;

    --c-warning:      #f59e0b;
    --c-danger:       #dc2626;

    /* Spacing */
    --c-1: 0.25rem; --c-2: 0.5rem;  --c-3: 0.75rem; --c-4: 1rem;
    --c-5: 1.25rem; --c-6: 1.5rem;  --c-8: 2rem;    --c-10: 2.5rem;
    --c-12: 3rem;   --c-16: 4rem;   --c-20: 5rem;   --c-24: 6rem;

    /* Typography */
    --c-font-h: 'Figtree', system-ui, -apple-system, sans-serif;
    --c-font-b: 'Noto Sans', system-ui, -apple-system, sans-serif;

    /* Radius */
    --c-r-sm: 6px;
    --c-r:    12px;
    --c-r-lg: 18px;
    --c-r-xl: 24px;
    --c-r-full: 999px;

    /* Shadows premium suaves */
    --c-sh-sm:  0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
    --c-sh:     0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
    --c-sh-lg:  0 16px 40px rgba(15,23,42,0.12), 0 4px 8px rgba(15,23,42,0.04);
    --c-sh-xl:  0 32px 64px rgba(15,23,42,0.18), 0 8px 16px rgba(15,23,42,0.06);

    /* Transitions */
    --c-tr:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --c-tr-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --c-container: 1180px;
}

/* === BASE === */
html { font-family: var(--c-font-b); color: var(--c-text); background: var(--c-bg); }
body {
    font-family: var(--c-font-b);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--c-font-h);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--c-text);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--c-text-soft); font-size: 1.02rem; line-height: 1.7; }
.lead { font-size: 1.18rem; line-height: 1.65; color: var(--c-text); font-weight: 400; }

/* === LAYOUT === */
.c-container {
    width: 100%;
    max-width: var(--c-container);
    margin: 0 auto;
    padding: 0 var(--c-6);
}
section { padding: var(--c-20) 0; position: relative; scroll-margin-top: 84px; }
section.tight { padding: var(--c-12) 0; }
.c-section-h { text-align: center; max-width: 720px; margin: 0 auto var(--c-12); }
.c-section-h h2 { color: var(--c-text); }
.c-section-h h2 .accent { color: var(--c-primary); }
.c-section-h p { margin-top: var(--c-3); font-size: 1.1rem; color: var(--c-text-muted); }

/* === BUTTONS === */
.c-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.95rem 1.7rem;
    font-family: var(--c-font-h);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--c-r-full);
    transition: var(--c-tr);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.c-btn-primary {
    background: var(--c-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(8,145,178,0.30);
}
.c-btn-primary:hover {
    background: var(--c-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(8,145,178,0.40);
}
.c-btn-accent {
    background: var(--c-accent);
    color: white;
    box-shadow: 0 6px 20px rgba(22,163,74,0.30);
}
.c-btn-accent:hover {
    background: var(--c-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(22,163,74,0.40);
}
.c-btn-ghost {
    background: white;
    color: var(--c-text);
    border: 1.5px solid var(--c-border);
}
.c-btn-ghost:hover {
    background: var(--c-bg-muted);
    border-color: var(--c-primary);
    color: var(--c-primary);
}
.c-btn-lg { padding: 1.15rem 2rem; font-size: 1.08rem; }

/* === BADGES === */
.c-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: var(--c-primary-bg);
    color: var(--c-primary-dark);
    border: 1px solid rgba(8,145,178,0.20);
    border-radius: var(--c-r-full);
    font-size: 0.84rem;
    font-weight: 600;
}
.c-badge-accent { background: var(--c-accent-bg); color: var(--c-accent-dark); border-color: rgba(22,163,74,0.20); }
.c-badge-warning { background: rgba(245,158,11,0.10); color: #b45309; border-color: rgba(245,158,11,0.30); }

/* === NAV === */
.c-nav {
    position: sticky; top: 0; z-index: 100;
    padding: var(--c-4) 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--c-border);
}
.c-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--c-4); }
.c-nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.c-nav-brand .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--c-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--c-font-h); font-weight: 800; font-size: 1.1rem;
    box-shadow: var(--c-sh);
}
.c-nav-brand .name { font-family: var(--c-font-h); font-weight: 800; color: var(--c-text); font-size: 1.05rem; line-height: 1.1; }
.c-nav-brand .role { font-size: 0.8rem; color: var(--c-text-muted); display: block; margin-top: 0.1rem; }
.c-nav-links { display: flex; align-items: center; gap: var(--c-6); }
.c-nav-links a { color: var(--c-text-muted); font-size: 0.95rem; font-weight: 500; transition: var(--c-tr-fast); }
.c-nav-links a:hover { color: var(--c-primary); }
@media (max-width: 800px) { .c-nav-links { display: none; } .c-nav-cta { padding: 0.7rem 1.2rem; font-size: 0.9rem; } }

/* === HERO === */
.c-hero {
    position: relative;
    padding: var(--c-20) 0;
    background:
        radial-gradient(ellipse 800px 500px at 80% 30%, var(--c-primary-bg), transparent 70%),
        radial-gradient(ellipse 600px 400px at 20% 100%, var(--c-accent-bg), transparent 70%),
        var(--c-bg);
    overflow: hidden;
}
.c-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--c-12);
    align-items: center;
}
@media (max-width: 980px) { .c-hero-grid { grid-template-columns: 1fr; gap: var(--c-8); text-align: center; } }
.c-hero-content > * + * { margin-top: var(--c-5); }
.c-hero h1 .accent { color: var(--c-primary); }
.c-hero p.lead { color: var(--c-text-soft); max-width: 540px; }
@media (max-width: 980px) { .c-hero p.lead { margin: var(--c-5) auto; } }
.c-hero-cta { display: flex; gap: var(--c-3); flex-wrap: wrap; }
@media (max-width: 980px) { .c-hero-cta { justify-content: center; } }

.c-hero-trust {
    display: flex; gap: var(--c-6); flex-wrap: wrap; padding-top: var(--c-4);
    border-top: 1px solid var(--c-border-soft); margin-top: var(--c-6);
}
@media (max-width: 980px) { .c-hero-trust { justify-content: center; } }
.c-hero-trust-item strong {
    display: block;
    font-family: var(--c-font-h);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--c-primary);
    line-height: 1;
}
.c-hero-trust-item span { display: block; font-size: 0.85rem; color: var(--c-text-muted); margin-top: 0.3rem; }

.c-hero-photo {
    position: relative;
    border-radius: var(--c-r-xl);
    overflow: hidden;
    box-shadow: var(--c-sh-xl);
    aspect-ratio: 4/5;
    background: var(--c-bg-muted);
}
.c-hero-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.c-hero-photo .float-card {
    position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    padding: 1rem 1.2rem;
    border-radius: var(--c-r);
    box-shadow: var(--c-sh-lg);
    display: flex; align-items: center; gap: 0.8rem;
}
.c-hero-photo .float-card .icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--c-accent-bg); color: var(--c-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.c-hero-photo .float-card .icon svg { width: 22px; height: 22px; }
.c-hero-photo .float-card strong { font-family: var(--c-font-h); display: block; font-size: 0.92rem; color: var(--c-text); }
.c-hero-photo .float-card span { display: block; font-size: 0.78rem; color: var(--c-text-muted); }

/* === TRUST BAR === */
.c-trust-bar {
    background: var(--c-bg-soft);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: var(--c-10) 0;
}
.c-trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--c-6);
}
@media (max-width: 800px) { .c-trust-bar-grid { grid-template-columns: repeat(2, 1fr); } }
.c-trust-bar-item { text-align: center; }
.c-trust-bar-item .icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--c-primary-bg); color: var(--c-primary);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: var(--c-3);
}
.c-trust-bar-item .icon svg { width: 26px; height: 26px; }
.c-trust-bar-item strong { display: block; font-family: var(--c-font-h); font-size: 1.5rem; font-weight: 900; color: var(--c-text); }
.c-trust-bar-item span { display: block; font-size: 0.88rem; color: var(--c-text-muted); margin-top: 0.2rem; }

/* === SERVICIOS === */
.c-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--c-5);
}
@media (max-width: 980px) { .c-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .c-services { grid-template-columns: 1fr; } }
.c-service {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-r-lg);
    padding: var(--c-6);
    transition: var(--c-tr);
    position: relative;
    overflow: hidden;
}
.c-service::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--c-primary);
    transform: scaleX(0); transform-origin: left;
    transition: var(--c-tr);
}
.c-service:hover { transform: translateY(-4px); box-shadow: var(--c-sh-lg); border-color: var(--c-primary); }
.c-service:hover::before { transform: scaleX(1); }
.c-service-icon {
    width: 52px; height: 52px;
    background: var(--c-primary-bg); color: var(--c-primary);
    border-radius: var(--c-r);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--c-4);
}
.c-service-icon svg { width: 28px; height: 28px; }
.c-service h3 { margin-bottom: var(--c-2); }
.c-service p { font-size: 0.96rem; line-height: 1.6; }
.c-service .price {
    display: inline-block;
    margin-top: var(--c-3);
    padding: 0.35rem 0.8rem;
    background: var(--c-accent-bg);
    color: var(--c-accent-dark);
    border-radius: var(--c-r-full);
    font-size: 0.86rem;
    font-weight: 700;
    font-family: var(--c-font-h);
}

/* === ABOUT (Sobre el profesional) === */
.c-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--c-12);
    align-items: center;
}
@media (max-width: 980px) { .c-about-grid { grid-template-columns: 1fr; gap: var(--c-8); } }
.c-about-text > * + * { margin-top: var(--c-4); }
.c-about-text h2 .accent { color: var(--c-primary); }
.c-about-creds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--c-4);
    margin-top: var(--c-6);
}
.c-cred {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-border);
    border-left: 3px solid var(--c-primary);
    padding: var(--c-4);
    border-radius: var(--c-r);
}
.c-cred strong { display: block; font-family: var(--c-font-h); color: var(--c-text); font-size: 0.95rem; }
.c-cred span { display: block; font-size: 0.82rem; color: var(--c-text-muted); margin-top: 0.2rem; }

/* === HORARIOS === */
.c-hours {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-r-lg);
    padding: var(--c-6);
    box-shadow: var(--c-sh);
}
.c-hours h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--c-4); }
.c-hours h3 svg { width: 24px; height: 24px; color: var(--c-primary); }
.c-hours ul { display: flex; flex-direction: column; gap: var(--c-2); }
.c-hours li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--c-border);
    font-size: 0.96rem;
}
.c-hours li:last-child { border-bottom: none; }
.c-hours li .day { color: var(--c-text); font-weight: 600; }
.c-hours li .time { color: var(--c-primary); font-weight: 700; font-family: var(--c-font-h); }
.c-hours li.closed .time { color: var(--c-danger); }

/* === UBICACIÓN + MAP === */
.c-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--c-8);
    align-items: stretch;
}
@media (max-width: 800px) { .c-location-grid { grid-template-columns: 1fr; } }
.c-location-info {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-r-lg);
    padding: var(--c-8);
    box-shadow: var(--c-sh);
}
.c-location-info h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--c-4); }
.c-location-info h3 svg { width: 24px; height: 24px; color: var(--c-primary); }
.c-location-info .address { font-size: 1.1rem; color: var(--c-text); font-weight: 500; line-height: 1.6; margin-bottom: var(--c-4); }
.c-location-info .city { color: var(--c-text-muted); font-size: 0.96rem; }
.c-location-map {
    background: var(--c-bg-muted);
    border-radius: var(--c-r-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    aspect-ratio: 4/3;
    box-shadow: var(--c-sh);
}
.c-location-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* === REVIEWS === */
.c-reviews-summary {
    text-align: center; margin-bottom: var(--c-10);
}
.c-reviews-summary .stars { font-size: 2.4rem; color: var(--c-warning); margin-bottom: var(--c-2); letter-spacing: 0.1em; }
.c-reviews-summary .rating {
    font-family: var(--c-font-h); font-size: 3rem; font-weight: 900;
    color: var(--c-text); line-height: 1;
}
.c-reviews-summary .total { color: var(--c-text-muted); margin-top: var(--c-2); font-size: 0.96rem; }
.c-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--c-5);
}
@media (max-width: 980px) { .c-reviews { grid-template-columns: 1fr; } }
.c-review {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-r-lg);
    padding: var(--c-6);
    box-shadow: var(--c-sh-sm);
    transition: var(--c-tr);
}
.c-review:hover { box-shadow: var(--c-sh-lg); transform: translateY(-3px); }
.c-review .stars { color: var(--c-warning); font-size: 1.1rem; margin-bottom: var(--c-3); letter-spacing: 0.08em; }
.c-review .text { font-size: 0.96rem; color: var(--c-text-soft); line-height: 1.6; margin-bottom: var(--c-4); font-style: italic; }
.c-review .author { display: flex; align-items: center; gap: 0.7rem; padding-top: var(--c-3); border-top: 1px solid var(--c-border-soft); }
.c-review .author .avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--c-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--c-font-h); font-weight: 700; font-size: 0.9rem;
}
.c-review .author strong { display: block; font-family: var(--c-font-h); font-size: 0.92rem; color: var(--c-text); }
.c-review .author span { display: block; font-size: 0.78rem; color: var(--c-text-muted); }

/* === CTA AGENDA === */
.c-cta-agenda {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: white;
    padding: var(--c-16) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.c-cta-agenda::before {
    content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%;
    background: rgba(255,255,255,0.05); transform: rotate(15deg);
}
.c-cta-agenda h2 { color: white; max-width: 700px; margin: 0 auto var(--c-4); position: relative; }
.c-cta-agenda p { color: rgba(255,255,255,0.85); font-size: 1.18rem; max-width: 600px; margin: 0 auto var(--c-8); position: relative; }
.c-cta-agenda .buttons { display: flex; gap: var(--c-3); justify-content: center; flex-wrap: wrap; position: relative; }
.c-cta-agenda .c-btn-primary {
    background: white;
    color: var(--c-primary-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.c-cta-agenda .c-btn-primary:hover { background: var(--c-bg-soft); }
.c-cta-agenda .c-btn-ghost { background: rgba(255,255,255,0.10); color: white; border-color: rgba(255,255,255,0.30); }
.c-cta-agenda .c-btn-ghost:hover { background: rgba(255,255,255,0.20); border-color: white; color: white; }

/* === FOOTER === */
.c-footer {
    background: var(--c-bg-soft);
    border-top: 1px solid var(--c-border);
    padding: var(--c-12) 0 var(--c-6);
}
.c-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--c-8);
    margin-bottom: var(--c-8);
}
@media (max-width: 800px) { .c-footer-grid { grid-template-columns: 1fr; } }
.c-footer h4 { font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-primary); margin-bottom: var(--c-3); }
.c-footer ul li { margin-bottom: var(--c-2); }
.c-footer ul li, .c-footer p { color: var(--c-text-muted); font-size: 0.92rem; }
.c-footer ul li a { color: var(--c-text-muted); transition: var(--c-tr-fast); }
.c-footer ul li a:hover { color: var(--c-primary); }
.c-footer-brand p { max-width: 380px; margin-top: var(--c-3); }
.c-footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: var(--c-5);
    text-align: center;
    color: var(--c-text-dim);
    font-size: 0.84rem;
}
.c-footer-powered {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--c-text-dim);
    font-size: 0.78rem;
    margin-top: var(--c-3);
}
.c-footer-powered a { color: var(--c-primary); font-weight: 600; }

/* === FLOATING WHATSAPP === */
.c-wa {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(37,211,102,0.4);
    display: flex; align-items: center; justify-content: center;
    transition: var(--c-tr);
    animation: c-pulse-wa 3s ease-in-out infinite;
}
.c-wa:hover { transform: scale(1.1); }
.c-wa svg { width: 32px; height: 32px; fill: white; }
@keyframes c-pulse-wa {
    0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 48px rgba(37,211,102,0.7); }
}

/* === CHAT IA WIDGET (placeholder simple) === */
.c-chat {
    position: fixed; bottom: 24px; left: 24px; z-index: 90;
    width: 60px; height: 60px;
    background: var(--c-primary);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(8,145,178,0.40);
    display: flex; align-items: center; justify-content: center;
    transition: var(--c-tr);
    color: white;
}
.c-chat:hover { transform: scale(1.1); background: var(--c-primary-dark); }
.c-chat svg { width: 30px; height: 30px; }
.c-chat::after {
    content: 'Chat IA'; position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
    font-size: 0.72rem; font-weight: 700; color: var(--c-text); white-space: nowrap;
    background: white; padding: 0.25rem 0.6rem; border-radius: var(--c-r-full);
    box-shadow: var(--c-sh-sm);
}

/* === UTILITIES === */
.c-text-center { text-align: center; }
.c-mt-4 { margin-top: var(--c-4); }
.c-mt-6 { margin-top: var(--c-6); }
.c-mt-8 { margin-top: var(--c-8); }
.c-mb-6 { margin-bottom: var(--c-6); }

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
:focus-visible { outline: 3px solid var(--c-primary); outline-offset: 3px; border-radius: 4px; }
