/* ==========================================================
   COLABORADORES IO
   Instituto Oriente de Puebla
   Diseño institucional / ejecutivo
   JRAVIZE | joseantonio.ravize@ioriente.edu.mx
   ========================================================== */

:root {

    /* PALETA INSTITUCIONAL */
    --io-blue: #20276f;
    --io-blue-dark: #101f55;
    --io-blue-deep: #081d4d;
    --io-blue-light: #e9efff;

    --io-red: #d6112f;
    --io-red-soft: #ffe9ed;

    --io-yellow: #ffd400;
    --io-yellow-soft: #fff5cc;

    --io-purple: #423493;
    --io-purple-soft: #eeeafd;

    --io-green: #179966;
    --io-green-soft: #e7f7f1;

    --io-orange: #c77a19;
    --io-orange-soft: #fff1df;

    --io-white: #ffffff;

    --io-bg: #f5f6fa;
    --io-surface: #ffffff;

    --io-text: #16234a;
    --io-muted: #6e7687;
    --io-border: #e1e5ed;

    --sidebar-width: 270px;
    --topbar-height: 88px;

    --shadow-sm: 0 5px 16px rgba(10, 29, 70, .07);
    --shadow-md: 0 12px 32px rgba(10, 29, 70, .10);
}


/* ==========================================================
   GENERAL
   ========================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--io-text);
    background: var(--io-bg);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* ==========================================================
   LOGIN
   ========================================================== */

.login-body {

    min-height: 100vh;

    background:
        linear-gradient(
            135deg,
            #eef1f7 0%,
            #fafbfc 55%,
            #f3f5f8 100%
        );
}


/* ----------------------------------------------------------
   HEADER LOGIN
   ---------------------------------------------------------- */

.login-header {

    min-height: 80px;

    display: flex;
    align-items: center;

    background: var(--io-blue-deep);

    color: #fff;

    border-bottom: 4px solid transparent;

    border-image:
        linear-gradient(
            90deg,
            var(--io-red) 0 33%,
            var(--io-yellow) 33% 66%,
            #fff 66% 100%
        )
        1;
}


.login-header-inner {

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 34px;
}


/* ==========================================================
   LOGO
   Tú colocarás la imagen institucional
   ========================================================== */

.brand {

    display: flex;
    align-items: center;

    gap: 16px;
}


.brand-logo {

    height: 50px;
    width: auto;

    object-fit: contain;
}


.brand-kicker {

    display: block;

    margin-bottom: 1px;

    font-size: .68rem;

    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;

    color: rgba(255,255,255,.65);
}


.brand h1 {

    margin: 0;

    font-size: 1.45rem;

    font-weight: 800;

    color: #fff;
}


.brand h1 span {

    color: var(--io-yellow);
}


.header-tag {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 100px;

    background: rgba(255,255,255,.08);

    color: rgba(255,255,255,.88);

    font-size: .82rem;

    font-weight: 600;
}


/* ==========================================================
   CONTENEDOR LOGIN
   ========================================================== */

.login-main {

    max-width: 1180px;

    padding-top: 48px;
    padding-bottom: 48px;
}


/* ==========================================================
   PANEL AZUL
   ========================================================== */

.welcome-panel {

    position: relative;

    overflow: hidden;

    min-height: 610px;

    padding: 48px;

    border: 0;

    border-radius: 22px 0 0 22px;

    color: #fff;

    background:
        linear-gradient(
            150deg,
            #071d4d 0%,
            #102b67 55%,
            #111f52 100%
        );

    box-shadow: var(--shadow-md);
}


/* ==========================================================
   SOL IGNACIANO - MARCA DE AGUA
   ========================================================== */

/*
   Puedes agregar dentro del panel:

   <div class="login-watermark"></div>

   Y guardar la imagen por ejemplo como:

   css/sol_ignaciano.png
*/

.login-watermark {

    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    bottom: -120px;

    transform: translateX(-50%);

    background-image:
        url("sol_ignaciano.png");

    background-repeat: no-repeat;

    background-position: center;

    background-size: contain;

    opacity: .07;

    pointer-events: none;
}


/* decoración opcional */

.welcome-pattern {

    display: none;
}


.welcome-content {

    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.welcome-badge {

    display: inline-flex;

    width: fit-content;

    align-items: center;

    gap: 7px;

    margin-bottom: 25px;

    padding: 7px 13px;

    border-radius: 100px;

    background: rgba(255,255,255,.09);

    border: 1px solid rgba(255,255,255,.12);

    font-size: .78rem;

    font-weight: 600;
}


.welcome-panel h2 {

    max-width: 550px;

    margin: 0;

    font-size: clamp(2.2rem,4vw,3.4rem);

    font-weight: 800;

    line-height: 1.05;
}


.welcome-panel h2 strong,
.welcome-panel h2 span {

    color: var(--io-yellow);
}


.welcome-panel p {

    max-width: 540px;

    margin-top: 18px;

    color: rgba(255,255,255,.74);

    font-size: 1rem;

    line-height: 1.65;
}


/* Motto */

.welcome-panel::after {

    content: "MILITIA EST VITA";

    position: absolute;

    left: 48px;
    bottom: 46px;

    z-index: 3;

    color: rgba(255,255,255,.80);

    font-size: .72rem;

    font-weight: 500;

    letter-spacing: .42em;
}


/* línea institucional */

.welcome-panel::before {

    content: "";

    position: absolute;

    left: 48px;

    bottom: 78px;

    width: 190px;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--io-blue) 0 25%,
            var(--io-red) 25% 50%,
            var(--io-yellow) 50% 75%,
            #fff 75% 100%
        );

    z-index: 3;
}


/* ==========================================================
   TARJETA LOGIN
   ========================================================== */

.login-card {

    min-height: 610px;

    padding: 52px 48px;

    border:

        1px solid
        var(--io-border);

    border-left: 0;

    border-radius: 0 22px 22px 0;

    background: #fff;

    box-shadow: var(--shadow-md);
}


.login-icon {

    display: none;
}


.eyebrow {

    display: inline-block;

    margin-bottom: 7px;

    color: var(--io-red);

    font-size: .72rem;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.login-card h2 {

    margin: 0;

    color: var(--io-blue-deep);

    font-size: 2rem;

    font-weight: 800;
}


/* pequeña línea tricolor debajo del título */

.login-card h2::after {

    content: "";

    display: block;

    width: 63px;

    height: 4px;

    margin-top: 13px;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            var(--io-blue) 0 33%,
            var(--io-red) 33% 66%,
            var(--io-yellow) 66%
        );
}


.login-copy {

    margin: 22px 0 30px;

    color: var(--io-muted);

    line-height: 1.65;
}


.form-label {

    color: var(--io-blue-deep);

    font-size: .85rem;

    font-weight: 700;
}


.input-colaborador {

    margin-top: 7px;
}


.input-colaborador .input-group-text {

    border-right: 0;

    border-color: #dfe3ea;

    background: #fff;

    color: var(--io-blue);

    font-size: 1.15rem;
}


.input-colaborador .form-control {

    min-height: 56px;

    border-left: 0;

    border-color: #dfe3ea;

    background: #fff;

    font-size: 1rem;
}


.input-colaborador .form-control:focus {

    border-color: #bbc5d8;

    box-shadow: none;
}


.form-text {

    display: block;

    margin-top: 8px;

    color: #89909b;

    font-size: .78rem;
}


/* ==========================================================
   BOTÓN LOGIN
   ========================================================== */

.btn-login {

    min-height: 54px;

    border: 0;

    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #112c69,
            #071d4d
        );

    color: #fff;

    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(8,29,77,.17);
}


.btn-login:hover {

    background: var(--io-blue);

    color: #fff;

    transform: translateY(-1px);
}


/* aviso seguridad */

.security-note {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 28px;

    padding: 14px;

    border-radius: 10px;

    background: #f5f7fb;

    border: 1px solid #e5e8ef;

    color: var(--io-blue);
}


.security-note i {

    font-size: 1.2rem;
}


.security-note strong {

    display: block;

    font-size: .83rem;
}


.security-note span {

    display: block;

    margin-top: 2px;

    color: var(--io-muted);

    font-size: .75rem;
}


.login-footer {

    padding: 18px;

    text-align: center;

    color: #858b96;

    font-size: .78rem;
}



/* ==========================================================
   DASHBOARD
   ========================================================== */

.portal-body {

    background: #f4f5f8;
}


/* ==========================================================
   SIDEBAR PC
   ========================================================== */

.sidebar {

    position: fixed;

    inset: 0 auto 0 0;

    z-index: 1050;

    width: var(--sidebar-width);

    display: flex;

    flex-direction: column;

    color: #fff;

    background:
        linear-gradient(
            180deg,
            #071c4a 0%,
            #102d67 58%,
            #0b214f 100%
        );

    box-shadow:
        8px 0 25px
        rgba(8,29,77,.08);
}


/* Logo dashboard */

.sidebar-brand {

    min-height: 90px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 19px 20px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}


.sidebar-brand img {

    height: 46px;

    width: auto;

    object-fit: contain;
}


.sidebar-brand span {

    display: block;

    color:
        rgba(255,255,255,.52);

    font-size: .65rem;

    text-transform: uppercase;

    letter-spacing: .07em;
}


.sidebar-brand strong {

    display: block;

    color: #fff;

    font-size: 1rem;
}


/* ==========================================================
   MENU
   ========================================================== */

.sidebar-nav {

    flex: 1;

    padding: 22px 13px;
}


.sidebar-label {

    display: block;

    padding: 0 12px 8px;

    color:
        rgba(255,255,255,.36);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .08em;
}


.sidebar-link {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 4px;

    padding: 12px 13px;

    border-radius: 8px;

    color:
        rgba(255,255,255,.74);

    font-size: .88rem;

    font-weight: 500;

    transition: .18s ease;
}


.sidebar-link i {

    width: 21px;

    font-size: 1.05rem;

    text-align: center;
}


.sidebar-link:hover {

    color: #fff;

    background:
        rgba(255,255,255,.07);
}


.sidebar-link.active {

    color: #fff;

    background:
        rgba(57,85,177,.55);

    box-shadow:
        inset 3px 0 0
        var(--io-yellow);
}


.sidebar-link.disabled {

    opacity: .32;

    pointer-events: none;
}


.sidebar-separator {

    height: 1px;

    margin: 18px 10px;

    background:
        rgba(255,255,255,.08);
}


/* línea inferior sidebar */

.sidebar-footer {

    position: relative;

    padding:
        25px
        22px
        30px;

    color:
        rgba(255,255,255,.55);

    font-size: .70rem;
}


.sidebar-footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 22px;

    width: 170px;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--io-blue) 0 25%,
            var(--io-red) 25% 50%,
            var(--io-yellow) 50% 75%,
            #fff 75%
        );
}


/* ==========================================================
   SHELL
   ========================================================== */

.portal-shell {

    min-height: 100vh;

    margin-left: var(--sidebar-width);
}


/* ==========================================================
   HEADER DASHBOARD
   ========================================================== */

.portal-topbar {

    min-height: var(--topbar-height);

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    padding:
        14px
        30px;

    background:
        var(--io-blue-deep);

    border-bottom:
        3px solid
        var(--io-yellow);

    color: #fff;
}


/* SOLO NOMBRE EN HEADER */

.user-summary {

    display: flex;

    align-items: center;

    gap: 11px;
}


.user-avatar {

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.14);

    color: #fff;

    font-size: 1rem;
}


.user-main-line strong {

    color: #fff;

    font-size: .95rem;

    font-weight: 600;
}


/*
   Oculta ID y datos secundarios en HEADER
*/

.employee-id,
.user-secondary-line {

    display: none;
}


/* salir */

.btn-logout {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 8px 12px;

    border: 1px solid
        rgba(255,255,255,.18);

    border-radius: 8px;

    background:
        rgba(255,255,255,.07);

    color: #fff;

    font-size: .82rem;

    font-weight: 600;
}


.btn-logout:hover {

    color: #fff;

    background:
        rgba(255,255,255,.15);
}


/* ==========================================================
   CONTENIDO
   ========================================================== */

.portal-content {

    padding: 30px;
}


/* ==========================================================
   BIENVENIDA
   ========================================================== */

.portal-welcome {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 25px;

    margin-bottom: 28px;

    padding: 29px 31px;

    border:
        1px solid
        var(--io-border);

    border-radius: 15px;

    background: #fff;

    box-shadow: var(--shadow-sm);
}


.portal-welcome h1 {

    margin: 0;

    color:
        var(--io-blue-deep);

    font-size:
        clamp(1.6rem,3vw,2.25rem);

    font-weight: 800;
}


.portal-welcome p {

    margin:
        8px
        0
        0;

    color:
        var(--io-muted);

    font-size: .92rem;
}


.welcome-icon {

    width: 66px;

    height: 66px;

    flex: 0 0 66px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--io-blue);

    background: var(--io-blue-light);

    font-size: 1.7rem;
}


/* ==========================================================
   TITULOS
   ========================================================== */

.section-heading {

    margin-bottom: 17px;
}


.section-heading span {

    color: var(--io-red);

    font-size: .69rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;
}


.section-heading h2 {

    margin: 2px 0 0;

    color:
        var(--io-blue-deep);

    font-size: 1.42rem;

    font-weight: 750;
}


/* ==========================================================
   SERVICIOS
   ========================================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(215px,1fr)
        );

    gap: 17px;
}


/* ==========================================================
   TARJETA
   ========================================================== */

.service-card {

    display: flex;

    flex-direction: column;

    min-height: 300px;

    overflow: hidden;

    border:
        1px solid
        var(--io-border);

    border-radius: 13px;

    background: #fff;

    box-shadow: var(--shadow-sm);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.service-card:hover {

    transform:
        translateY(-3px);

    box-shadow: var(--shadow-md);
}


.service-card-top {

    display: flex;

    justify-content:
        space-between;

    align-items: flex-start;

    padding:
        21px
        21px
        0;
}


/* ==========================================================
   ICONOGRAFÍA OPCIÓN 3
   RELLENO SUAVE
   ========================================================== */

.service-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    font-size: 1.55rem;
}


/* Control vehicular */

.service-icon.vehicle {

    color: #173d95;

    background: #dce9ff;
}


/* Solicitudes */

.service-icon.request {

    color: var(--io-red);

    background: var(--io-red-soft);
}


/* Datos */

.service-icon.user {

    color: #cb8507;

    background: var(--io-yellow-soft);
}


/* Comunicados */

.service-icon.notice {

    color: #483498;

    background: var(--io-purple-soft);
}


/* Eventos */

.service-icon.events {

    color: #08765a;

    background: #dff6ef;
}


/* Soporte */

.service-icon.support {

    color: #a7661a;

    background: #fff0df;
}


/* genérico futuro */

.service-icon.future {

    color: #7b8290;

    background: #f0f2f5;
}


/* ==========================================================
   STATUS
   ========================================================== */

.status-badge {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding:
        5px
        9px;

    border-radius:
        100px;

    font-size: .67rem;

    font-weight: 700;
}


.status-badge.active {

    color: #147850;

    background:
        #e7f6ef;
}


.status-badge.soon {

    color: #777e89;

    background:
        #eef0f3;
}


/* ==========================================================
   BODY TARJETA
   ========================================================== */

.service-card-body {

    flex: 1;

    padding:
        18px
        21px
        20px;
}


.service-card-body h3 {

    margin:
        0
        0
        8px;

    color:
        var(--io-blue-deep);

    font-size:
        1.14rem;

    font-weight: 750;
}


.service-card-body p {

    margin: 0;

    color:
        var(--io-muted);

    font-size: .83rem;

    line-height: 1.6;
}


/* ==========================================================
   LIMITES CONTROL VEHICULAR
   ========================================================== */

.service-limits {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 18px;
}


.service-limits span {

    display:
        inline-flex;

    align-items:
        center;

    gap: 6px;

    padding:
        7px 10px;

    border-radius:
        7px;

    color:
        #147850;

    background:
        #eef9f4;

    font-size:
        .76rem;

    font-weight:
        600;
}


/* ==========================================================
   FOOT TARJETA
   ========================================================== */

.service-card-footer {

    padding:
        0
        21px
        21px;
}


.btn-service {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap: 8px;

    min-height:
        42px;

    padding:
        9px
        15px;

    border: 0;

    border-radius:
        8px;

    color: #fff;

    background:
        var(--io-blue-deep);

    font-size: .79rem;

    font-weight: 650;
}


.btn-service:hover {

    color: #fff;

    background:
        var(--io-blue);
}


/* ==========================================================
   TARJETA DATOS DEL COLABORADOR
   Aquí sí mostramos toda la información
   ========================================================== */

.employee-card {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 26px;

    padding: 18px 21px;

    border:
        1px solid
        var(--io-border);

    border-radius:
        13px;

    background: #fff;

    box-shadow:
        var(--shadow-sm);
}


.employee-card-avatar {

    width: 58px;

    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius:
        50%;

    background:
        var(--io-blue-light);

    color:
        var(--io-blue);

    font-size:
        1.45rem;
}


.employee-card-content {

    min-width: 0;
}


.employee-card-content strong {

    display: block;

    color:
        var(--io-blue-deep);

    font-size: 1rem;

    font-weight: 750;
}


.employee-card-info {

    display: flex;

    flex-wrap: wrap;

    gap:
        6px
        18px;

    margin-top:
        5px;

    color:
        var(--io-muted);

    font-size:
        .78rem;
}


.employee-card-info span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        5px;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.portal-footer {

    padding:
        22px
        30px
        28px;

    color:
        #838995;

    font-size:
        .75rem;

    text-align:
        center;
}



/* ==========================================================
   MOBILE TOPBAR
   ========================================================== */

.mobile-topbar {

    position: sticky;

    top: 0;

    z-index: 1030;

    min-height: 66px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    padding:
        10px
        15px;

    color: #fff;

    background:
        var(--io-blue-deep);

    border-bottom:
        3px solid
        var(--io-yellow);
}


.mobile-brand {

    display: flex;

    align-items: center;

    gap: 9px;
}


.mobile-brand img {

    height: 37px;

    width: auto;
}


.mobile-brand strong {

    font-size: .9rem;
}


.mobile-menu-btn {

    color: #fff;

    font-size: 1.5rem;
}


.mobile-menu-btn:hover {

    color: #fff;
}


/* OFFCANVAS */

.mobile-sidebar {

    width: 280px !important;

    color: #fff;

    background:
        var(--io-blue-deep);
}


.mobile-sidebar
.offcanvas-header {

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}



/* ==========================================================
   TABLET
   ========================================================== */

@media
(max-width: 991.98px) {

    .portal-shell {

        margin-left: 0;
    }


    .portal-topbar {

        min-height: 72px;

        padding:
            12px
            18px;
    }


    .portal-content {

        padding:
            22px
            18px;
    }


    .services-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }


    .welcome-panel {

        border-radius:
            20px;

        min-height:
            430px;
    }


    .login-card {

        border-left:
            1px solid
            var(--io-border);

        border-radius:
            20px;
    }

}



/* ==========================================================
   CELULAR
   ========================================================== */

@media
(max-width: 767.98px) {


    /* Login */

    .login-header {

        min-height: 70px;
    }


    .login-header-inner {

        padding:
            12px
            16px;
    }


    .brand-logo {

        height: 41px;
    }


    .brand-kicker {

        display: none;
    }


    .login-main {

        padding:
            20px
            14px;
    }


    .welcome-panel {

        min-height:
            300px;

        padding:
            30px
            25px;

        border-radius:
            18px
            18px
            0
            0;
    }


    .welcome-panel h2 {

        font-size:
            2.1rem;
    }


    .welcome-panel::after {

        left: 25px;

        bottom: 28px;
    }


    .welcome-panel::before {

        left: 25px;

        bottom: 57px;
    }


    .login-watermark {

        width: 370px;

        height: 370px;

        bottom: -110px;
    }


    .login-card {

        min-height: auto;

        padding:
            31px
            23px;

        border-top: 0;

        border-radius:
            0
            0
            18px
            18px;
    }


    /* Dashboard */


    .portal-topbar {

        padding:
            11px
            14px;
    }


    .portal-content {

        padding:
            17px
            12px
            25px;
    }


    .portal-welcome {

        margin-bottom:
            20px;

        padding:
            20px;

        border-radius:
            12px;
    }


    .portal-welcome h1 {

        font-size:
            1.45rem;
    }


    .portal-welcome p {

        font-size:
            .79rem;
    }


    .welcome-icon {

        display: none;
    }


    /*
     SERVICIOS EN CELULAR
     estilo lista como mockup
    */

    .services-grid {

        display: flex;

        flex-direction:
            column;

        gap: 10px;
    }


    .service-card {

        min-height: auto;

        display: grid;

        grid-template-columns:
            58px
            1fr
            auto;

        align-items:
            center;

        padding:
            12px;

        border-radius:
            11px;
    }


    .service-card:hover {

        transform: none;
    }


    .service-card-top {

        display: block;

        padding: 0;
    }


    .service-icon {

        width: 48px;

        height: 48px;

        border-radius:
            12px;

        font-size:
            1.25rem;
    }


    .status-badge {

        display: none;
    }


    .service-card-body {

        padding:
            0
            12px;
    }


    .service-card-body h3 {

        margin-bottom:
            2px;

        font-size:
            .92rem;
    }


    .service-card-body p {

        display:
            -webkit-box;

        overflow:
            hidden;

        -webkit-box-orient:
            vertical;

        -webkit-line-clamp:
            1;

        font-size:
            .70rem;
    }


    .service-limits {

        display: none;
    }


    .service-card-footer {

        padding: 0;
    }


    .btn-service {

        width: 34px;

        height: 34px;

        min-height: 34px;

        padding: 0;

        border-radius:
            50%;

        background:
            transparent;

        color:
            var(--io-blue);
    }


    .btn-service:hover {

        color:
            var(--io-blue);

        background:
            var(--io-blue-light);
    }


    /*
     Ocultar texto del botón,
     dejar únicamente flecha
    */

    .btn-service {

        font-size: 0;
    }


    .btn-service i {

        font-size:
            1rem;
    }


    /* Datos empleado */

    .employee-card {

        padding:
            15px;

        gap:
            13px;
    }


    .employee-card-avatar {

        width:
            48px;

        height:
            48px;

        flex-basis:
            48px;
    }


    .employee-card-info {

        display: block;
    }


    .employee-card-info span {

        display: flex;

        margin-top:
            3px;
    }

}



/* ==========================================================
   CELULAR PEQUEÑO
   ========================================================== */

@media
(max-width: 480px) {

    .portal-welcome {

        padding:
            17px;
    }


    .section-heading h2 {

        font-size:
            1.2rem;
    }


    .employee-card-avatar {

        display: none;
    }


    .login-card h2 {

        font-size:
            1.7rem;
    }

}