﻿
@font-face {
    font-family: "Raleway-SemiBold";
    src: url('https://trapichar.s3.us-west-2.amazonaws.com/fonts/raleway/Raleway-SemiBold.ttf') format('opentype');
}

@font-face {
    font-family: "Raleway-Medium";
    src: url('https://trapichar.s3.us-west-2.amazonaws.com/fonts/raleway/Raleway-Medium.ttf') format('opentype');
}

@font-face {
    font-family: "Aku-Kamu";
    src: url('https://trapichar.s3.us-west-2.amazonaws.com/fonts/aku_kamu/Aku%26Kamu.otf') format('opentype');
}

@font-face {
    font-family: "Anesthesa";
    src: url('https://trapichar.s3.us-west-2.amazonaws.com/fonts/anesthesa/Anesthesa.ttf') format('opentype');
}

@font-face {
    font-family: "Thunder";
    src: url('https://trapichar.s3.us-west-2.amazonaws.com/fonts/thunder/Thunder-BoldLC.ttf') format('opentype');
}

@font-face {
    font-family: "Thunder-Italic";
    src: url('https://trapichar.s3.us-west-2.amazonaws.com/fonts/thunder/Thunder-MediumLCItalic.ttf') format('opentype');
}

@font-face {
    font-family: "Samsungsharp-Sans";
    src: url('https://trapichar.s3.us-west-2.amazonaws.com/fonts/samsung-sharp-sans/samsungsharpsans.otf') format('opentype');
}

@font-face {
    font-family: "Samsungsharp-Sans-Bold";
    src: url('https://trapichar.s3.us-west-2.amazonaws.com/fonts/samsung-sharp-sans/samsungsharpsans-bold.otf') format('opentype');
}

:root {
    --tr-blue-1: #02172D;
    --tr-blue-2: #475569;
    --tr-blue-3: #153967;
    --tr-blue-4: #215D92;
    --tr-blue-5: #D6E0EA;
    --tr-blue-6: #27A1F4;
    --tr-blue-7: #F3F7FA;
    --tr-blue-8: #B6C9DA;
    --tr-blue-9: #1b77a5;
    --tr-blue-10: #A6C9DD;
    /*------*/
    --tr-gray-1: #878787;
    --tr-gray-2: #EBEEF3;
    --tr-gray-3: #F2F2F2;
    /*------*/
    --tr-btn-prim: #FBBF24;
    --tr-btn-prim-hv: #b78606;
    --tr-btn-sec: #d74f0e;
    --tr-body-1: #f1f5f9;
    --tr-body-2: #d5d5d5;
    /*------*/
    --tr-radius: 5px;
    --tr-radius_card: 10px;
    --tr-heigth-input: 45px !important;
    --tr-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /*-----*/
    --tr-bkg: #ffffff;
    /*-----*/
    /*  --tr-font-akkm: "Aku-Kamu";
    --tr-font-anesth: "Anesthesa";
    --tr-font-rw-sb: "Raleway-SemiBold";
    --tr-font-rw-m: "Raleway-Medium";
    --tr-font-thunder: "Thunder";
    --tr-font-thunder-italic: "Thunder-Italic";
    --tr-font-samsung-sharp: "Samsungsharp-Sans";
    --tr-font-samsung-sharp-bld: "Samsungsharp-Sans-Bold";*/
}

    :root[data-theme="dark"] {
        /* Fondo / superficies */
        --tr-bkg: #0B1220; /* page background (navy muy oscuro) */
        --tr-gray-3: #0F1A2B; /* surface-1 (cards) */
        --tr-gray-2: #12233A; /* surface-2 (headers, modales) */
        --tr-blue-7: #15263F; /* surface-3 (chips, inputs) */
        /* Bordes / divisores */
        --tr-blue-5: #1D2E47; /* líneas sutiles */
        --tr-body-2: #22344E; /* guardas/scrollbars */
        /* Texto */
        --tr-text-1: #E6EEF6; /* principal */
        --tr-text-2: #A9B6C4; /* secundario */
        --tr-blue-1: #EAF2FA; /* headings en oscuro legibles */
        --tr-blue-2: #A9B6C4;
        /* Links / acentos */
        --tr-blue-3: #6EC1FF; /* link */
        --tr-blue-4: #9AD5FF; /* hover link */
        --tr-blue-6: #27A1F4; /* acento (lo mantenemos) */
        --tr-blue-9: #3EB0E6; /* acento 2 */
        --tr-blue-10: #274464; /* fondos de pill/badge en oscuro */
        --tr-blue-8: #5C7690; /* texto tenue/badge en oscuro */
        /* Botones (CTA ámbar funciona en oscuro, sólo subimos contraste del hover) */
        --tr-btn-prim: #FBBF24;
        --tr-btn-prim-hv: #D49A0B;
        --tr-btn-sec: #F06A2A;
        /* Sombra más suave y amplia en oscuro */
        --tr-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    }

body {
    height: 100vh;
    margin: 0;
    background-color: var(--tr-bkg);
    color: var(--tr-blue-3);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: background-color .25s ease, color .25s ease;
}

.not_show {
    display: none;
}

.not_show_imp {
    display: none !important;
}

.loader {
    background-image: url('https://cdn-icons-gif.flaticon.com/6844/6844338.gif');
    height: 100%;
    width: 100%;
    position: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    background-color: #00000036;
    z-index: 9999999;
    opacity: 0.80;
}

.truncate_text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate_text_2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate_text_3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

h2 {
    margin-bottom: 0px;
    line-height: 1;
    text-align: center;
    font-weight: 600;
}

h3 {
    text-align: center;
    font-weight: 200;
}

label, p {
    font-weight: 200;
}

a {
    text-decoration: none;
}

    button:hover, a:hover {
        opacity: 0.8;
    }


#menu_desk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/*#menu_desk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    flex-direction: column;
    padding: 10px 55px;
}*/

/* #menu_desk > div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }*/

.slct_menu_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ebebeb;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: normal;
    text-align: left;
    width: 100%;
    margin: 0px 30px;
    justify-content: space-between;
}

    .slct_menu_header:hover {
        cursor: pointer;
        background-color: #e3e3e3;
    }

#cont_menu_cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#menu_opc_subcats {
    position: absolute;
    width: 340px;
    background-color: white;
    border: 1px solid black;
    flex-direction: column;
    right: 20%;
    max-height: 350px;
    top: 0;
    margin-top: 55px;
    overflow: auto;
}



    #menu_opc_subcats ul {
        flex-direction: column;
        padding: 10px 20px 0px;
        text-align: left;
        gap: 0px;
    }

        #menu_opc_subcats ul li.lbl_cat {
            font-weight: bold;
            font-size: larger;
            text-align: left;
            width: 100%;
            color: black;
        }

        #menu_opc_subcats ul li {
            font-size: small;
            width: 100%;
        }

            #menu_opc_subcats ul li a {
                font-size: small;
                padding-left: 25px;
            }

                #menu_opc_subcats ul li a:hover {
                    background-color: transparent;
                    border-radius: initial;
                    font-weight: bold;
                    color: var(--tr-blue-2);
                }

.cont_curtt_loc {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

    .cont_curtt_loc > i {
        font-size: x-large;
    }

    .cont_curtt_loc span {
        font-weight: normal;
    }

    .cont_curtt_loc > div {
        min-width: 160px;
    }

.sidebar {
    width: 100%;
    padding: 10px 55px 10px 10px;
    position: fixed;
    background-color: white;
    z-index: 9999;
}

#menu_desk.shrink {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 5px 55px 5px 10px;
}

.sidebar img {
    height: 40px;
}

.sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 0;
    gap: 25px;
}

    .sidebar ul a {
        text-decoration: none;
        color: black;
        font-size: 1.5em;
        font-weight: 500;
        padding: 8px 15px;
    }

        .sidebar ul a:hover {
            background-color: var(--tr-blue-5);
            border-radius: var(--tr-radius);
            font-weight: 600;
        }

div.cont_buttons_header > a {
    padding: 0px 20px 0px 9px;
    font-size: 1.2em;
    color: black;
    font-weight: 800;
}

    div.cont_buttons_header > a.btn_princ {
        color: #ffffff;
        border-radius: var(--tr-radius_card);
        padding: 10px 20px 10px;
        background-color: var(--tr-blue-3);
        font-weight: 700;
    }

.cont_crear_cuenta {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 0px !important;
}

    .cont_crear_cuenta label {
        margin-bottom: 15px;
        font-size: 2vw;
    }

    .cont_crear_cuenta a {
        background-color: var(--tr-blue-3);
        color: #ffffff;
        text-decoration: none;
        font-size: 3vw;
        border-radius: var(--tr-radius_card);
        padding: 5px 40px 10px;
        width: fit-content;
    }

body > footer {
    display: flex;
    flex-direction: row;
    padding: 10px 10px 10px 4%;
    justify-content: space-between;
    align-items: center;
}

    body > footer a {
        color: var(--tr-blue-1);
        text-decoration: none;
        width: inherit;
        max-width: fit-content;
    }

    body > footer span {
        color: var(--tr-blue-3);
        text-decoration: none;
        width: auto;
    }

    body > footer i {
        font-size: 1.35rem;
        background-color: var(--tr-blue-1);
        color: white;
        border-radius: 5px;
        padding: 0px;
        width: 30px;
        height: 30px;
        text-align: center;
        display: flex;
        align-content: center;
    }

        body > footer i.fa-whatsapp {
            border: none;
            padding: 0px;
            font-size: 20px;
        }

    body > footer .cont_rds_tr {
        display: flex;
        gap: 10px;
    }

    body > footer .cont_info_tr {
        display: flex;
        flex-direction: row;
        gap: 15px;
        font-weight: 400;
        place-content: end;
    }

@media (max-width: 1080px) {
    .sidebar {
        padding: 10px 15px 10px 0;
    }

        .sidebar ul {
            gap: 0px;
            padding: 15px 0px;
        }
}

@media (max-width: 840px) {
    #menu_desk {
        display: none;
    }

    #menu_mov {
        display: flex;
        justify-content: space-between;
        padding: 10px 5px;
        align-items: center;
    }

        #menu_mov > div:last-child {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        #menu_mov > a {
            padding: 0px 10px;
            color: var(--tr-blue-3);
            border-left: 1px solid var(--tr-blue-3);
        }

        #menu_mov i {
            font-size: 25px;
        }

    .sidebar img {
        height: 25px;
    }

    .sidebar ul {
        flex-direction: column;
        padding: 5px 0px;
        gap: 0;
    }

        .sidebar ul li {
            width: 100%;
        }

        .sidebar ul a {
            padding: 5px 10px;
            font-size: 1em;
            text-align: left;
        }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-button {
        color: var(--tr-blue-3);
        padding: 4px 10px;
        font-size: 17px;
        border: none;
        cursor: pointer;
        margin-right: 5px;
        background-color: white;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 160px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 99;
        top: 45px;
        border-radius: var(--tr-radius);
        border: 1px solid var(--tr-body-2);
        width: inherit;
        right: 0;
    }

        .dropdown-content a {
            color: black;
            padding: 10px 20px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content.show {
            display: block;
        }

    body > footer .cont_info_tr {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding-left: 15px;
        text-align: center;
        align-items: flex-end;
    }

    .cont_crear_cuenta label {
        margin-bottom: 10px;
        font-size: 4vw;
    }

    .cont_crear_cuenta a {
        font-size: 6vw;
    }

    label, p, a {
        font-weight: 400;
    }
}

@media (max-width: 600px) {
    .sidebar img {
        height: 20px;
    }

    #menu_mov > div:last-child {
        gap: 5px;
    }

    div.cont_buttons_header > a {
        padding: 0px 10px 0px 10px;
        font-size: 3vw;
    }

        div.cont_buttons_header > a.btn_princ {
            padding: 8px 10px 8px;
        }

    body > footer i {
        border-radius: 10px;
        width: 40px;
        height: 40px;
        font-size: 7vw;
    }

        body > footer i.fa-whatsapp {
            font-size: 30px;
        }
}

/* */
