

   /* =====================================================
   DISTINTIVO INSTITUCIONAL - LICENCIAMIENTO MINEDU
===================================================== */

.distintivo-licenciamiento {
    position: fixed;
    top: 90px;
    right: 0;

    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 330px;
    padding: 12px 25px 12px 17px;

    background: linear-gradient(
        135deg,
        #8a6508 0%,
        #c99a22 25%,
        #f3d675 50%,
        #c9971c 75%,
        #8a6508 100%
    );

    color: #172d54;

    border-left: 4px solid #fff1b8;
    border-bottom: 2px solid #a4770c;

    border-radius: 30px 0 0 30px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);

    z-index: 9999;

    font-family: Arial, Helvetica, sans-serif;

    animation: entradaLicencia 0.9s ease-out;
}


/* ICONO */

.licencia-icono {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #173f7a;
    color: #f8d86a;

    font-size: 25px;

    border: 2px solid rgba(255, 255, 255, 0.7);

    box-shadow: 0 3px 8px rgba(0,0,0,.25);
}


/* CONTENIDO */

.licencia-contenido {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}


/* MINEDU */

.licencia-superior {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #59420b;

    margin-bottom: 2px;
}


/* TITULO */

.licencia-contenido strong {
    font-size: 17px;
    font-weight: 800;

    letter-spacing: .4px;

    color: #123a72;
}


/* DESCRIPCIÓN */

.licencia-descripcion {
    font-size: 10px;

    margin-top: 3px;

    color: #60490e;
}


/* EFECTO DE BRILLO */

.distintivo-licenciamiento::after {
    content: "";

    position: absolute;

    top: 0;
    left: -80px;

    width: 50px;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    transform: skewX(-20deg);

    animation: brilloLicencia 5s infinite;
}


/* ANIMACIÓN DE ENTRADA */

@keyframes entradaLicencia {

    from {
        transform: translateX(110%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* BRILLO MUY SUAVE */

@keyframes brilloLicencia {

    0%, 75% {
        left: -80px;
    }

    100% {
        left: 120%;
    }
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .distintivo-licenciamiento {
        top: auto;
        bottom: 15px;

        right: 10px;
        left: 10px;

        min-width: auto;

        justify-content: center;

        border-radius: 12px;

        padding: 9px 15px;

        border: 1px solid #e4c65e;
    }

    .licencia-icono {
        width: 39px;
        height: 39px;
        min-width: 39px;

        font-size: 20px;
    }

    .licencia-contenido strong {
        font-size: 14px;
    }

    .licencia-superior {
        font-size: 9px;
    }

    .licencia-descripcion {
        font-size: 9px;
    }
}