body {
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

:root {
    --gob-nav-height: 80px;
}

/* NAVBAR GOB */
.navbar-gob {
    background-color: #611232 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: var(--gob-nav-height); */
    z-index: 1050;
    /* padding: 0 !important; */
    /* ESPACIO ARRIBA Y ABAJO */
    padding: 12px 0 !important;
    display: flex;
    align-items: center;
    border: 0 !important;
    box-shadow: none !important;
}

/* CONTENEDOR */
.navbar-gob .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.navbar-gob .navbar-brand {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-gob .navbar-brand img {
    height: 48px !important;
    width: auto;
    display: block;
}

/* MENU COLAPSE */
.navbar-gob .navbar-collapse {
    height: 100%;
}

/* MENU */
.navbar-gob .navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
    top: -6px;
    /* ESPACIADO ENTRE ITEMS */
    gap: 8px;
}

.navbar-gob .nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

/* LINKS */
.navbar-gob .nav-link,
.navbar-gob .nav-link-gob {
    color: #fff !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* QUITAR SEPARACION DESIGUAL */
    margin-left: 0;
    /* TAMAÑO DEL HOVER */
    padding: 0 16px;
    border-radius: 2px;

    transition:
        background-color .18s ease,
        color .18s ease;

    position: relative;
}

/* HOVER */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link-gob:hover,
.navbar-dark .navbar-nav .subnav-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #D4C19C !important;
    text-decoration: none;
    outline: 0;
}

/* ICONO BUSQUEDA */
.navbar-gob .nav-link i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -1px;
}

/* ICONO MÁS COMPACTO */
.navbar-gob .nav-item:last-child .nav-link {
    padding-left: 12px;
    padding-right: 12px;
}

/* BOTON MOBILE */
.navbar-gob .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

.navbar-gob .navbar-toggler:focus {
    box-shadow: none !important;
}

/* EVITAR SHRINK */
.navbar-gob.navbar-shrink {
    height: var(--gob-nav-height) !important;
}

.navbar-gob.navbar-shrink .navbar-brand img {
    height: 40px !important;
}

/* sub-navbar */
.sub-navbar {
    margin-top: 0px !important;
    background-color: #7a1c3a;
    position: fixed;
    top: var(--gob-nav-height);
    left: 0;
    width: 100%;
    z-index: 1030;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* texto */
.subnav-title {
    color: #fff;
    font-weight: 600;
}

.subnav-icon {
    color: #fff;
}

.btn-logout {
    background: #fff;
    color: #611232;
    border-radius: 25px;
    padding: 6px 14px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    width: auto;
    white-space: nowrap;
    gap: 6px;
}

.btn-logout:hover {
    background: #ae841f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.main-content {
    margin-top: calc(var(--gob-nav-height) + 12px);
}

/* FOOTER */
.main-footer {
    background: #611232;
    color: #fff;
}

.main-footer a {
    color: #fff;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

.logo-footer {
    max-width: 100%;
}

.social-icon {
    width: 28px;
    margin-right: .5rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    margin-bottom: .6rem;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    body {
        padding-top: 80px;
    }

    .navbar-gob {
        min-height: 70px;
        height: auto;
        padding: 12px 0 !important;
    }

    .navbar-gob .container {
        align-items: flex-start;
    }

    .navbar-gob .navbar-collapse {
        height: auto;
        margin-top: 15px;
    }

    .navbar-gob .navbar-nav {
        width: 100%;
        align-items: flex-start;
        top: 0;
    }

    .navbar-gob .nav-item {
        width: 100%;
        height: auto;
    }

    .navbar-gob .nav-link,
    .navbar-gob .nav-link-gob {
        margin-left: 0;
        height: auto;
        padding: 10px 0;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {

    .footer-col,
    .logo-col {
        margin-bottom: 2rem;
        text-align: center;
    }
}