/* ═══════════════════════════════════════════════════════════/* ═══════════════════════════════════════════════════════════
   CEJILLA — Diseño Legrand-ITCR
   Paleta: ocre #f36619 · grisL #5f5f5f · fondo #fef7f4
   ═══════════════════════════════════════════════════════════ */

/* ── Botón ──────────────────────────────────────────────── */
.cejilla-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: none;
    border: 2px solid #c8c8c8;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.92rem;
    color: #474747;
    text-align: left;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    margin: 0.5rem 0;
}

.cejilla-toggle:hover {
    background: rgba(243, 102, 25, 0.06);
    border-color: #f36619;
    color: #f36619;
}

/* ── Flecha ─────────────────────────────────────────────── */
.cejilla-icon {
    display: inline-block;
    transition: transform 0.22s;
    font-size: 0.58rem;
    color: #f36619;
}

.cejilla-toggle[aria-expanded="true"] .cejilla-icon {
    transform: rotate(90deg);
}

/* ── Contenido desplegable ──────────────────────────────── */
/*    Barra izquierda ocre — coherente con dBox/eBox Legrand */
.cejilla-content {
    margin: 0 0 1rem 0;
    padding: 0.9rem 1.1rem 1rem 1.1rem;
    background: #f2f2f2;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #b0b0b0;
}

.cejilla-content[hidden] {
    display: none !important;
}

/* ── Tipografía interna ─────────────────────────────────── */
.cejilla-content h3 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #f36619;
    margin: 0 0 0.6rem 0;
}

.cejilla-content h4 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0.7rem 0 0.4rem 0;
}

.cejilla-content p {
    margin: 0.4rem 0;
    line-height: 1.6;
}

.cejilla-content ul,
.cejilla-content ol {
    margin: 0.4rem 0;
    padding-left: 1.25rem;
}

.cejilla-content li {
    margin: 0.2rem 0;
    line-height: 1.6;
}

/* ── Modo oscuro ────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    .cejilla-toggle {
        border-color: #3a3a3a;
        color: #aaa;
    }
    .cejilla-toggle:hover {
        background: rgba(243, 102, 25, 0.12);
        border-color: #f36619;
        color: #f36619;
    }
    .cejilla-content {
        background: #2a2a2a;
        border-left-color: #606060;
        color: #e4dfd8;
    }
    .cejilla-content h3 { color: #f36619; }
    .cejilla-content h4 { color: #e4dfd8; }
}
