@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: gray;
    font-family: 'Montserrat', sans-serif;
}


:root {
    --primary-color: #5ba2af;
    --second-color: #757575;
    --text-black: #000;
    --texto-blanco: #fff;
    --titulo_g: 2rem;
    --textos_g: 16px;
    --titulos_m: 18px;
    --textos_m: 16px;
    --titulos_p: 16px;
    --textos_p: 14px;
}

.top_header {
    background: none;
    height: 80px;
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.top_header.white {
    background: #2C3B50;
    box-shadow: 1px 0px 9px 0px rgba(0, 0, 0, 0.75);
}

.img_logo {
    width: 17rem;
    height: 5rem;
    position: relative;
}

.top_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0px 0px 15px 1px #8080809e;
    z-index: 1;
}

.contacto {
    background: var(--primary-color);
    border-radius: 2em;
    border: none;
    color: var(--texto-blanco);
    cursor: pointer;
    font-size: var(--textos_g);
    text-decoration: none;
    text-align: center;
    margin: auto 20px;
    width: 10rem;
    height: 2.5rem;
    transition: 0.5s;
    cursor: pointer;
}

.contacto i {
    color: var(--texto-blanco);
}

.contacto:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 10px 0px #fff;
}

.contacto a {
    text-decoration: none;
    color: inherit;
}

.contacto a:hover {
    color: #ffffff;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu .options {
    padding: 0px 20px;
    left: 0;
}

.links {
    text-decoration: none;
    color: var(--white1);
    font-weight: 500;
    line-height: 80px;
    transition: 0.5s;
    font-size: var(--textos_g);
}

.links:hover {
    color: var(--primary-color);
    text-decoration: underline;
    padding: 5px;
}

.abrir_menu, .cerrar_menu {
    display: none;
}

.sectionAviso{
    width: 90%;
    height: auto;
    background: #fff;
    margin: 4rem auto;
    padding: 2rem 3rem;
    max-width: 950px;
}

.titulosGdes {
    text-align: center;
    font-weight: 400;
}

.tituloAviso {
    text-align: center!important;
    font-size: 16px!important;
    margin-top: 1rem!important;
}

.sectionAviso p{
    text-align: justify;
    font-size: 12px;
    margin-top: 1rem;
    line-height: 24px;
}

.sectionAviso span{
    font-weight: bold;
}

.sectionAviso ul li {
    text-align: justify;
    font-size: 12px;
    line-height: 24px;
    left: 2rem;
    position: relative;
    width: 90%;
}

.sectionAviso table{
    border-collapse: collapse;
    margin-top: 1rem;
}

.sectionAviso table tr th, .sectionAviso table tr td {
    font-size: 12px;
    text-align: center;
    padding: 5px;
    border: 1px solid black;
}

.sectionAviso table tr td{
    text-align: justify!important;
    line-height: 24px;
}

.sectionAviso table tr th{
    background: gray;
}

.listLetters {
    list-style: none!important;
}

@media (max-width: 1200px) {

    /* MEDIA DEL MENU */
    .menu {
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        align-items: center;
        background-color: var(--black1);
        height: 100%;
        overflow-y: auto;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.6s;
    }

    .menu .options {
        padding: 0;
        text-align: center !important;
        margin: 0 !important;
    }

    .top_nav {
        padding: 0 0rem;
    }

    .links {
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        color: var(--white1);
        font-weight: 500;
        line-height: 60px;

    }

    .abrir_menu, .cerrar_menu {
        display: block;
        color: var(--white1);
        border: none;
        background: none;
        cursor: pointer;
        font-size: 30px;
    }

    .abrir_menu {
        padding: 25px 25px;
    }

    .cerrar_menu {
        align-self: flex-end;
        padding: 25px 28px;
        position: absolute;
        top: 0rem;
        right: 0rem;
    }

    .menu_abierto {
        opacity: 1;
        pointer-events: all;
        background: #fff;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .abrir_menu:focus:not(:focus-visible),
    .cerrar_menu:focus:not(:focus-visible) {
        outline: none;
    }

    /* TERMINA MEDIA DEL MENU */
}

@media print {

    #btnImprimir {
        display: none;
    }

    .sectionCondiciones {
        padding: 0;
    }

    .bordeTabla {
        border: 1px solid #6a6a6a;
    }

    .colorTxt {
        color: #5ba2af;
    }

    @page {
        margin: 2cm 1cm 2cm 1cm;
    }
    
    body {
        margin: 1cm;
    }
}

@media (max-width: 576px) {
    .contTable {
        min-width: 8rem;
        overflow-x: scroll;
    }

    .contTable::-webkit-scrollbar {
        display: none;
    }

    .imgHeader {
        width: 12rem;
        height: 4rem;
        margin: 1rem;
    }

    ul li {
        left: 1rem;
    }
}