<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ESTILOS GENERALES CSNET */

html *{
    cursor: none !important;
}

:root {
    --principal: #ebe081;
    --principal-hover: #d3c96b;
    --secundario: #636a51;
    --secundario-light: #cfd3b8;
    --secundario-hover: #515744;
    --negro: #060606;
    --blanco: #fff;
}

@font-face {
    font-family: "Roboto";
    src: url("/fuentes/Roboto/Roboto-Light.ttf");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Roboto";
    src: url("/fuentes/Roboto/Roboto-Regular.ttf");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url("/fuentes/Roboto/Roboto-Bold.ttf");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "DM Sans";
    src: url("/fuentes/DM_Sans/DMSans-VariableFont_opsz,wght.ttf")
        format("truetype");
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: "DM Sans";
    src: url("/fuentes/DM_Sans/DMSans-Italic-VariableFont_opsz,wght.ttf")
        format("truetype");
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: "Frank Ruhl Libre";
    src: url("/fuentes/Frank_Ruhl_Libre/FrankRuhlLibre-VariableFont_wght.ttf")
        format("truetype");
    font-style: normal;
    font-weight: 100 900;
}

.fondo-principal {
    background-color: var(--principal);
}
.fondo-blanco {
    background-color: var(--blanco);
}
.fondo-secundario-light {
    background-color: var(--secundario-light);
}

.color-principal {
    color: var(--principal);
}
.color-secundario {
    color: var(--secundario);
}

.boton-principal {
    color: white;
    background-color: var(--principal);
    border: 1px solid var(--principal);
}

.boton-principal:hover {
    color: white;
    background-color: var(--secundario);
    border: 1px solid var(--secundario);
}

.boton-outline-principal {
    color: var(--principal);
    border: 1px solid var(--principal);
}

.boton-outline-principal:hover {
    color: white;
    background-color: var(--principal);
}

.btn-cta {
    text-decoration: none;
    text-align: center;
    border-width: 1.5px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    background-color: var(--secundario);
    color: var(--principal);
    border: none;
    transition: 0.3s;

    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.btn-cta:hover {
    font-weight: 600;
    background-color: var(--principal);
    color: var(--secundario);
    border-radius: 30px;
}

body {
    background-color: var(--secundario);
    color: var(--principal);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* TipografÃ­a general */
    font-family: "DM Sans", sans-serif;
}

main {
    flex-grow: 1;
}

.boton-clausula {
    width: fit-content;
    border: 1px solid rgb(190, 190, 190);
}

.boton-clausula:focus:not(:focus-visible),
.boton-clausula:not(.collapsed) {
    color: var(--negro);
    box-shadow: none;
    background-color: transparent;
    border: 1px solid rgb(190, 190, 190);
}

.boton-clausula:not(.collapsed)::after {
    background-image: url("/imagenes/iconos/chevron-down.svg"),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.card-noticia {
    text-decoration: none;
    color: var(--negro);
    transition: all 0.2s;
}

.card-noticia:hover {
    color: var(--negro);
    opacity: 0.7;
}

.noticia a {
    color: var(--principal);
    text-decoration: none;
    transition: all 0.2s;
}

.noticia a:hover {
    opacity: 0.7;
}

ul.pagination {
    justify-content: center;
    margin-bottom: 3em;
}

.pagination .page-item.active .page-link {
    background-color: var(--verde1);
    border-color: var(--verde1);
}

.pagination .page-link {
    color: var(--verde1);
}

.pagination .page-link:focus {
    box-shadow: none;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 0;
}

.pie a {
    color: var(--principal);
    text-decoration: none;
    transition: all 0.2s;
}

.pie a:hover {
    color: var(--secundario-light);
}

.pie {
    background-color: var(--secundario);
    padding: 0 4rem;
    font-size: 1rem;
}
/* FIN DE ESTILOS GENERALES CSNET */

.menu-superior {
    padding: 40px 60px 20px 60px;
    height: 56px;
    box-sizing: content-box;
    background-color: var(--blanco);
}

.menu-superior,
.menu-superior .nav-link {
    color: var(--secundario);
}
.menu-superior .nav-link {
    text-transform: uppercase;
    font-family: "DM Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;

    transition: 0.3s ease;
}
.menu-superior .nav-link:hover {
    color: var(--secundario-hover);
}
.menu-superior .navbar-brand {
    color: var(--secundario);
    transition: 0.3s ease;
}
.menu-superior .navbar-brand svg {
    width: 230px;
}
.menu-superior .navbar-brand:hover {
    color: var(--secundario-hover);
}

.menu-superior.menu-abierto {
    background-color: var(--secundario);
    transition: background-color 0.3s ease;
}

.menu-superior.menu-abierto .navbar-brand {
    color: var(--principal);
}

.nav-idioma {
    text-align: right;
    margin-left: 90px;
}

/* Estilo general para imagenes cover */
.img-cover {
    object-fit: cover;
}

/* Tipos de fuente */
.font-sans {
    font-family: "DM Sans", sans-serif;
}

.font-serif {
    font-family: "Frank Ruhl Libre", serif;
}

/* BotÃģn navbar */
.navbar-toggler:focus {
    box-shadow: none;
    border: none;
}
.custom-toggler {
    width: 24px;
    height: 16px;
    border: none;
    background: transparent;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: none;
}

.custom-toggler .line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--secundario);
    border-radius: 2px;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transform-origin: center;
}

.custom-toggler.open .line {
    background-color: var(--principal);
}

/* Estado abierto: cruz perfectamente centrada */
.custom-toggler.open .top {
    transform: rotate(45deg) translateY(2px) translateX(1px);
}

.custom-toggler.open {
    gap: 0;
    height: 4px;
}

.custom-toggler.open .bottom {
    transform: rotate(-45deg) translateY(0);
}

/* Back to top button */
.back-to-top-button{
    position: fixed;
    z-index: 999;
    bottom: 10%;
    right: 5%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secundario);
    color: var(--principal);
    transition: 0.3s;
    border-radius: 50%;
}

.back-to-top-button:hover{
    color: var(--secundario);
    background-color: var(--principal);
}

/* CURSOR */
.custom-general-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background-color: #ebe081cc;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease;
}

.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    color: var(--secundario);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    pointer-events: none;
    z-index: 999999;
    transition: transform 0.1s ease;
    display: none;
    font-weight: 800;
    font-size: 2rem;
}

.custom-cursor i {
    margin: 0;
    padding: 0;
}

/* ============================================ LAYOUT GENERAL ==================================== */
.seccion-principal {
    display: flex;
    padding: 100px 0;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    align-self: stretch;
    box-sizing: border-box;
}

article {
    padding: 0 10%;
    /* max-width: 1500px;
    box-sizing: content-box; */
}

@media (min-width: 1800px) {
    article {
        padding: 0 13dvw;
        width: 100%;
    }
}

/* titluos */
.section-title {
    font-family: "DM Sans";
    font-size: 96px;
    font-style: normal;
    font-weight: 200;
    line-height: 100px;
    letter-spacing: 0;
}
.article-title {
    color: var(--principal);
    font-family: "DM Sans";
    font-size: 50px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}

@media (max-width: 992px) {
    .menu-superior {
        padding-inline: 0;
    }

    .menu-superior .navbar-brand svg {
        width: 185px;
    }

    .menu-superior .nav-item {
        width: 100%;
        background-color: var(--secundario);
        text-align: center;
    }

    .menu-superior .nav-link {
        color: var(--principal);
    }

    .seccion-principal {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        gap: 30px;
        align-self: auto;
    }

    .section-title {
        font-weight: 250;
        font-size: 48px;
        line-height: 105%;
        letter-spacing: -4%;
    }
}

@media (max-width: 768px){
    html *{
        cursor: auto;
    }
    .custom-general-cursor{
        display: none;
    }
    .back-to-top-button {
        display: none;
    }
}
</pre></body></html>