/* ENCABEZADO TERMOPLÁSTICOS CALIANO - MODERNO OSCURO */

.encabezado-principal {
    width: 100%;
    background:
        radial-gradient(circle at top right, rgba(177, 18, 38, 0.25), transparent 35%),
        linear-gradient(135deg, #111111 0%, #292929 55%, #3a0007 100%);
    border-bottom: 3px solid #b11226;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    position: sticky;
    top: 0;
    z-index: 900;
}

.encabezado-contenedor {
    min-height: 78px;
    padding: 10px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

/* IZQUIERDA */

.encabezado-izquierda {
    display: flex;
    align-items: center;
}

.btn-menu {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.2s ease;
    backdrop-filter: blur(8px);
}

.btn-menu:hover {
    background: #b11226;
    border-color: #b11226;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(177, 18, 38, 0.28);
}

/* CENTRO */

.encabezado-centro {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-empresa {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
}

.encabezado-titulos {
    min-width: 0;
    padding-left: 14px;
    border-left: 2px solid rgba(255, 255, 255, 0.16);
}

.encabezado-titulos h1 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.encabezado-titulos p {
    margin: 4px 0 0;
    color: #d1d1d1;
    font-size: 0.86rem;
    font-weight: 600;
}

/* DERECHA */

.encabezado-derecha {
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 7px 14px 7px 7px;
    max-width: 310px;
    backdrop-filter: blur(8px);
}

.foto-perfil {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff4d5e;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(177, 18, 38, 0.18);
}

.foto-perfil.defecto {
    background: #b11226;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
}

.usuario-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.1;
}

.nombre-usuario {
    color: #ffffff;
    font-weight: 900;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rol-usuario {
    color: #ffb3bb;
    font-weight: 800;
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .encabezado-contenedor {
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 10px 18px;
    }

    .encabezado-derecha {
        grid-column: 1 / -1;
        justify-self: stretch;
        max-width: 100%;
        border-radius: 18px;
    }

    .logo-empresa {
        height: 54px;
    }

    .encabezado-titulos {
        padding-left: 10px;
    }

    .encabezado-titulos h1 {
        font-size: 1.05rem;
    }

    .encabezado-titulos p {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .encabezado-contenedor {
        padding: 10px 14px;
    }

    .btn-menu {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .logo-empresa {
        height: 46px;
    }

    .encabezado-centro {
        gap: 10px;
    }

    .encabezado-titulos h1 {
        font-size: 0.95rem;
    }

    .encabezado-titulos p {
        display: none;
    }
}