html {
    overflow-x: hidden;
    overflow-y: auto;
}

.logo {
    width: 150px;
    padding: 4px 0 0 0;
}

.cont {
    display: grid;
    grid-template-columns: minmax(0px, 250px) 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "aside main" "aside footer";
    height: 100vh;
}

.header {
    transition: all ease 100ms;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
}

.aside {
    grid-area: aside;
    background-color: #fff;
    border-right: 1px solid #efefef;
    overflow-y: auto;
}

.main {
    background-color: var(--color-8);
    grid-area: main;
    overflow-y: auto;
    background-color: #fafafa;
    position: relative;
    top: 0px;
    margin-top: 2rem;
}

.footer {
    grid-area: footer;
    width: 100%;
    position: relative;
    bottom: 0px !important;
    background-color: #fff;
}

@media (max-width: 576px) {
    .main {
        padding-top: 0px !important;
    }

    .cont {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr;
        grid-template-areas: "aside" "main" "footer";
    }

    .aside {
        grid-area: aside;
        background-color: rgba(255, 255, 255, .95) !important;
        border-right: 1px solid #efefef;
        overflow-y: auto;
        width: 100% !important;
        height: 100vh !important;
        z-index: 9;
        position: absolute;
        display: block;
        left: -100%;
        transition: left 0.3s ease-in-out;
    }

    .aside.visible {
        display: block;
        left: 0;
    }

    .nav-v {
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 64px 0 !important;
        width: 100% !important;
    }

    .logo {
        width: 120px;
        padding: 4px 0 0 0;
    }
}

@media (max-width: 992px) {
    .main {
        padding-top: 0px !important;
    }

    .cont {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        grid-template-areas: "main" "aside" "footer";
    }

    .aside {
        grid-area: aside;
        background-color: rgba(0, 0, 0, .2) !important;
        background-color: rgba(0, 158, 226, .2) !important;
        backdrop-filter: blur(2px);
        border-right: 1px solid #efefef;
        overflow-y: auto;
        width: 100% !important;
        height: 100vh !important;
        z-index: 9;
        position: absolute;
        display: block;
        left: -100%;
        transition: left 0.3s ease-in-out;
    }

    .aside.visible {
        display: block;
        left: 0;
    }

    .nav-v {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 88px 0 !important;
        width: 84% !important;
        background-color: rgba(255, 255, 255, 1) !important;
        height: 100vh !important;
    }

    .nav-v ul {
        list-style: none;
        padding: 0 0 32px 20px;
        margin: 0;
        width: 200%;
        background-color: rgba(255, 255, 255, 1) !important;
    }
}

.nav-v {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0;
}

.nav-v ul {
    list-style: none;
    padding: 0 0 32px 20px;
    margin: 0;
    width: 100%;
}

.nav-v ul li {
    margin: 0;
}

.nav-v ul li a {
    border-left: 4px solid transparent;
    color: var(--gray);
    text-decoration: none;
    padding: 4px 16px !important;
    display: block;
}

.nav-v a.active {
    color: var(--light-blue);
    border-left: 4px solid var(--color-resolutionBlue);
    background-color: #fafafa;
}

.nav-v a:hover {
    border-left: 4px solid var(--color-lightBlue);
    background-color: #fafafa;
    color: var(--light-blue)
}

.pend {
    background: rgb(255, 204, 204);
}

.pre-pre {
    background-color: #202428;
    border-radius: 8px;
    overflow: auto;
    height: auto;
    font-size: 12px !important;
}

.pre-pre2 {
    background-color: #202428;
    border-radius: 0 0 8px 8px;
    overflow: auto;
    height: auto;
    font-size: 12px !important;
}

pre {
    margin: 16px 0 16px 0;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #009EE2;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #370aff;
}

::-ms-scrollbar {
    width: 5px;
}

::-moz-scrollbar {
    width: 5px;
}

::-webkit-scrollbar {
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #009EE2;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #370aff;
}

::-ms-scrollbar {
    height: 5px;
}

::-moz-scrollbar {
    height: 5px;
}

.div0 {
    background-color: rgba(206, 246, 255, 1);
}

.div1 {
    background-color: rgba(215, 245, 254, .7);
    border: 1px solid rgba(0, 35, 193, 0.2);
}

.div2 {
    background-color: rgba(195, 240, 254, .7);
    border: 1px solid rgba(0, 35, 193, 0.2);
}

.div3 {
    width: auto;
    height: auto;
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 5px, transparent 5px, transparent 10px);
}

.modal-content-ejemplo {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, .1);
    padding: var(--md-24);
    width: 500px;
    max-width: 60%;
    border-radius: var(--md-8);
    position: relative;
    margin: 0 auto;
    animation-name: fadeIn;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    -webkit-box-shadow: 0px 0px 16px -4px rgba(89, 89, 89, .2);
    -moz-box-shadow: 0px 0px 16px -4px rgba(89, 89, 89, .2);
    box-shadow: 0px 0px 8px 2px rgba(89, 89, 89, .2);
    overflow: hidden;
}

@media (max-width: 576px) {
    .modal-content-ejemplo {
        background-color: var(--color-white);
        border: 1px solid rgba(0, 0, 0, .1);
        padding: var(--md-24);
        width: 100% !important;
        max-width: 100% !important;
        border-radius: var(--md-8);
        position: relative;
        margin: 0 auto;
        animation-name: fadeIn;
        animation-duration: 0.6s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        -webkit-box-shadow: 0px 0px 16px -4px rgba(89, 89, 89, .2);
        -moz-box-shadow: 0px 0px 16px -4px rgba(89, 89, 89, .2);
        box-shadow: 0px 0px 8px 2px rgba(89, 89, 89, .2);
        overflow: hidden;
    }

    .toast-ejemplo {
        height: auto;
        width: 100% !important;
        background-color: var(--color-white);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        border-radius: var(--md-8);
    }

    .offcanvas-content-ejemplo {
        background-color: white;
        border: 1px solid rgba(0, 0, 0, .1);
        padding: var(--md-24);
        width: 100% !important;
        height: 100%;
    }

    .offcanvas-content-ejemplo-r {
        background-color: white;
        border: 1px solid rgba(0, 0, 0, .1);
        padding: var(--md-24);
        width: 100% !important;
        height: 100%;
        float: right;
    }
}

.toast-ejemplo {
    height: auto;
    width: 350px;
    background-color: var(--color-white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: var(--md-8);
}

.offcanvas-ejemplo {
    display: block;
    width: 100%;
    height: 350px;
    background-color: rgba(0, 0, 0, .65);
    overflow: hidden;
}

.offcanvas-content-ejemplo {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: var(--md-24);
    width: 350px;
    height: 100%;
}

.offcanvas-content-ejemplo-r {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: var(--md-24);
    width: 350px;
    height: 100%;
    float: right;
}

.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, .1)
}

@media (max-width: 576px) {
    .perspective-text-l {
        font-weight: bold;
        transform-style: preserve-3d;
        transform: rotateX(0deg) rotateY(25deg) translateZ(130px) !important;
        text-align: left;
        padding-left: 0rem !important;
    }

    .perspective-text-r {
        font-weight: bold;
        transform-style: preserve-3d;
        text-align: right;
        transform: rotateX(0deg) rotateY(-25deg) translateZ(130px) !important;
        padding-right: 0rem !important;
    }
}

.perspective-container {
    perspective: 500px;
    perspective-origin: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    overflow: hidden;
    width: 100% !important;
    max-height: 100%;
    min-height: 500px;
}

.perspective-container-2 {
    perspective: 400px;
    perspective-origin: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    overflow: hidden;
    width: 100% !important;
    max-height: 100%;
    min-height: 250px;
}

.perspective-text-l {
    font-weight: bold;
    transform-style: preserve-3d;
    transform: rotateX(0deg) rotateY(35deg) translateZ(130px);
    text-align: left;
    padding-left: 2rem;
}

.perspective-text-r {
    font-weight: bold;
    transform-style: preserve-3d;
    text-align: right;
    transform: rotateX(0deg) rotateY(-35deg) translateZ(130px);
    padding-right: 2rem;
    height: 100% !important;
}

.black-rgb {
    color: rgba(0, 0, 0, .5)
}

.white-rgb {
    color: rgba(255, 255, 255, .2)
}

.bg-r-purple-125 {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(49, 39, 130, 1) 100%);
    background: -webkit-linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(49, 39, 130, 1) 100%);
    background: linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(49, 39, 130, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#312782", GradientType=1);
}

.bg-r-purple-35 {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(35deg, rgba(0, 0, 0, 1) 0%, rgba(49, 39, 130, 1) 100%);
    background: -webkit-linear-gradient(35deg, rgba(0, 0, 0, 1) 0%, rgba(49, 39, 130, 1) 100%);
    background: linear-gradient(35deg, rgba(0, 0, 0, 1) 0%, rgba(49, 39, 130, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#312782", GradientType=1);
}

.bg-r-lightblue {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(0, 158, 226, 1) 53%);
    background: -webkit-linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(0, 158, 226, 1) 53%);
    background: linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(0, 158, 226, 1) 53%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#009ee2", GradientType=1);
}
.bg-r-lightblue-2 {
    background: rgba(0, 0, 0, 0.4); /* Fondo semitransparente */
    background: -moz-linear-gradient(325deg, rgba(49, 39, 130, 1) 0%, rgba(0, 158, 226, 0.4) 53%);
    background: -webkit-linear-gradient(325deg, rgba(49, 39, 130, 1) 0%, rgba(0, 158, 226, 0.4) 53%);
    background: linear-gradient(325deg, rgba(49, 39, 130, 1) 0%, rgba(0, 158, 226, 0.4) 53%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#66000000", endColorstr="#66009ee2", GradientType=1); /* Compatibilidad con IE */    
    backdrop-filter: blur(2.5px); /* Efecto de desenfoque */
    -webkit-backdrop-filter: blur(5px); /* Compatibilidad con Safari */    
    border-radius: 0 8px 8px 0; /* Bordes redondeados para suavizar el efecto */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde semi-transparente */    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0..5); /* Sombra sutil para darle más profundidad */
    min-height: 450px;
}
@media (max-width: 576px) {
    .bg-r-lightblue-2 {
        background: rgba(0, 0, 0, 0.4); /* Fondo semitransparente */
        background: -moz-linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(0, 158, 226, 1) 53%);
        background: -webkit-linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(0, 158, 226, 1) 53%);
        background: linear-gradient(325deg, rgba(0, 0, 0, 1) 0%, rgba(0, 158, 226, 1) 53%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#66000000", endColorstr="#66009ee2", GradientType=1); /* Compatibilidad con IE */
        border-radius: 8px;
    }
}

.navbar-nav-op a:hover {
    background-color: var(--color-lightBlue) !important;
}

.color-1 {
    color: rgba(246, 249, 183, .2)
}

.color-2 {
    color: rgba(247, 166, 254, .2);
}

.color-3 {
    color: rgba(171, 255, 230, .2);
}

.color-4 {
    color: rgba(141, 194, 232, .2);
}



@media screen and (max-width: 1080px) {
    #search-input {
        width: 160px !important;
        padding: 8px;
        margin: 7px 0 7px 0!important;
        background: rgba(0, 0, 0, .5);
        border: 1px solid rgba(0, 0, 0, .8);
        border-radius: 8px;
        color: rgba(255, 255, 255, .8);
    }
}

@media screen and (max-width: 576px) {
    #search-input {
        width: 200px !important;
        padding: 8px;
        margin: 7px 0 7px 0!important;
        background: rgba(0, 0, 0, .5);
        border: 1px solid rgba(0, 0, 0, .8);
        border-radius: 8px;
        color: rgba(255, 255, 255, .8);
    }

    #search-input:focus {
        margin-bottom: 7px !important;
    }

    #suggestions-list {
        list-style-type: none;
        padding: 1px 0 0 0;
        margin-top: 0px;
        border: 1px solid #271F68;
        display: none;
        box-sizing: border-box;
        -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.29);
        -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.29);
        box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.29);
        width: 240px !important;
        margin-bottom: 20px !important;
    }
}

#search-input {
    width: 220px;
    padding: 8px;
    margin: 7px 0 0 0;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(0, 0, 0, .8);
    border-radius: 8px;
    color: rgba(255, 255, 255, .8);
}

#search-input::placeholder {
    color: rgba(255, 255, 255, .6) !important;
    font-style: italic;
}

#search-input:hover {
    background: rgba(0, 0, 0, .2);
}

#suggestions-list {
    list-style-type: none;
    padding: 1px 0 0 0;
    width: 200px;
    margin-top: 1px;
    border: 1px solid #271F68;
    display: none;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.29);
    -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.29);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.29);
}

#suggestions-list ul {
    border-radius: 8px 8px;
}

#suggestions-list li {
    padding: 8px;
    background-color: #271F68;
    cursor: pointer;
    color: #009EE2;
}

#suggestions-list li:hover {
    background-color: #009EE2;
    cursor: pointer;
    color: #fff;
}

#search-button {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #009EE2;
    border: 0px;
    color: #ffffff;
    margin-left: 4px;
    cursor: pointer;
}

.back-img {
    background-image: url("../img/index/banner-home.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Esto crea el efecto parallax */
}


.img-home{
    width: 80%;
    height: auto;
}


.text-decoration-none {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    color: inherit;
}

.clip-path-chevronL:hover{
    background-color: #271F68;
    font-style: italic;
}
.clip-path-chevronL {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: #23c8fa;
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.clip-path-chevronLa {
    position: relative;
    width: 200px;
    height: 200px;
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    overflow: hidden;
    transition: background-color 0.3s ease;
}


.clip-path-chevronL:hover::before {
    content: "";
    position: absolute;
    top: 0px; /* Desfase en la parte superior */
    left: -25px; /* Desfase en el lado izquierdo */
    width: calc(100% - 5px); /* Ajusta el ancho con el desfase */
    height: calc(100% + 10px); /* Ajusta la altura con el desfase */
    /*background-color: rgba(132, 35, 250, 1);*/
    background-color: #271F68;
    clip-path: inherit; /* Hereda el mismo clip-path para mantener la forma */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transición suave */
    pointer-events: none;
    z-index: -1; /* Asegura que esté debajo del contenido principal */
}
.clip-path-chevronL:hover div {
color: #23c8fa;
}




.clip-path-hexagon {
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: #23c8fa;
    width: 320px;
    height: 180px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.clip-path-hexagon:hover{
    background-color: #271F68;
    font-style: italic;
}

.clip-path-hexagonA {
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    width: 320px;
    height: 180px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.clip-path-hexagon:hover::before {
    content: "";
    position: absolute;
    top: 0px; /* Desfase en la parte superior */
    left: -25px; /* Desfase en el lado izquierdo */
    width: calc(100% - 5px); /* Ajusta el ancho con el desfase */
    height: calc(100% + 10px); /* Ajusta la altura con el desfase */
    /*background-color: rgba(132, 35, 250, 1);*/
    background-color: #271F68;
    clip-path: inherit; /* Hereda el mismo clip-path para mantener la forma */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transición suave */
    pointer-events: none;
    z-index: -1; /* Asegura que esté debajo del contenido principal */
}
.clip-path-hexagon:hover div {
color: #23c8fa;
}



.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
  }
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f4f4f4;
    text-decoration: none;
    color: #000;
    font-size: 24px;
    transition: background-color 0.3s, transform 0.3s;
  }
  .social-icons a:hover {
    background-color: #3182ce;
    color: #fff;
    transform: scale(1.1);
  }
  .share-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #3182ce;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  .share-button:hover {
    background-color: #225ea8;
  }


.red-bg{
    background: rgba(239, 68, 68, .25);
}

.ico-btn{
    cursor: pointer;
    align-content: center;
    display: inline-flex;
}