    /* ===== VARIABLES GLOBALES ===== */
    :root {
        --primary-color: #2c3e50;
        --secondary-color: #3498db;
        --accent-color: #1abc9c;
        --light-color: #ecf0f1;
        --dark-color: #2c3e50;
        --success-color: #27ae60;
        --warning-color: #f39c12;
    }

    /* ===== ESTILOS BASE ===== */
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #f8f9fa;
        padding-top: 20px; /* agregado para supra-menu: 90px vs 20px */
        color: #333;
        padding-bottom: 20px;
    }

    a {
        word-wrap: break-word;
    }

    .img-center {
        display: block;
        margin: 0 auto;
    }

    /* ===== BOTONES ===== */
    .btn-primary {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }
        
    .btn-primary:hover {
        background-color: #2980b9;
        border-color: #2980b9;
    }

    .btn-accent {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: white;
    }
    
    .btn-accent:hover {
        background-color: #16a085;
        border-color: #16a085;
        color: white;
    }

    /* ===== HEADER DE VOCABULARIO ===== */
    .vocabulary-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-bottom: 2px solid #38b2ac;
        position: relative;
        color: white;
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* ===== TARJETAS DE ESTADÍSTICAS ===== */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .stats-card {
        border: none;
        border-radius: 10px;
        transition: transform 0.3s;
        height: 100%;
    }

    .stats-card:hover {
        transform: translateY(-5px);
    }

    .stat-card {
        background: white;
        border-radius: 20px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        border: 1px solid rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(52, 152, 219, 0.1);
        border-color: var(--secondary-color);
    }

    .stat-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0.5rem;
        border-radius: 8px;
        background-color: rgba(255,255,255,0.1);
    }

    /* Prioridad: thes2.css (segunda definición) */
    .stat-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-right: 15px;
    }

    .stat-content h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
        color: #2c3e50;
    }

    .stat-content p {
        margin: 0;
        color: #6c757d;
        font-size: 0.9rem;
        font-weight: 500;
    }

    section.stats {
        background-color: #E7E5E5;
        border-radius: 15px;
        padding: 2px;
    }

    .statsnum {
        font-family: "Syncopate";
        color: #222;
        text-shadow: 0px 2px 3px #555;
        font-size: 30px;
        margin: -5px 0 -5px 0;
    }

    /* ===== BUSCADOR ===== */
    .search-container {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        margin-bottom: 2rem;
    }

    .box-buscador {
        background-color: rgba(21, 94, 140, 0.22);
        box-shadow: 1px 1px 13px rgba(26,74,151,.7);
        -webkit-box-shadow: 1px 1px 13px rgba(26,74,151,.7);
        -moz-box-shadow: 1px 1px 13px rgba(26,74,151,.7);
        padding: 2% 2% 0 2%;
    }

    .buscador, .input-group, #searchbox {
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

    #searchbox {
        font-size: 20px;
        height: 50px;
        resize: none;
    }

    #searchbox:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px #CADAE5 inset;
    }

    .fa-arrow-circle-right {
        position: absolute;
        top: 5px;
        right: 7px;
        z-index: 100;
    }

    .box-buscador button:focus {
        outline: none !important;
    }

    .search-options {
        background-color: #f8f9fa;
        border-radius: 10px;
        padding: 1rem;
        margin-top: 1rem;
    }

    .search-type-btn {
        margin: 0 5px 5px 0;
    }

    .multiselect-container li {
        padding-left: 20px;
        font-size: 13px;
    }

    .multiselect-container label {
        font-weight: lighter;
        margin: 0;
    }

    /* ===== NAVEGACIÓN ALFABÉTICA ===== */
    .alphabet-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        margin-bottom: 2rem;
    }

    .alphabet-letter {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        background-color: white;
        color: var(--primary-color);
        font-weight: bold;
        text-decoration: none;
        transition: all 0.2s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .alphabet-letter:hover, .alphabet-letter.active {
        background-color: var(--secondary-color);
        color: white;
        transform: scale(1.1);
    }

    .nav-alpha > li > a {
        padding-right: 4px;
        padding-left: 4px;
    }

    .nav-alpha > li {
        padding-right: 4px;
        padding-left: 4px;
    }

    /* ===== TARJETAS DE TÉRMINO ===== */
    .term-detail-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        margin-bottom: 2rem;
        border-left: 5px solid var(--secondary-color);
    }

    .glossary-card {
        border: none;
        border-radius: 1rem;
        transition: all 0.3s ease;
        height: 100%;
        overflow: hidden;
    }
        
    .glossary-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .term-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #eee;
    }

    .term-section-title {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .term-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .term-title {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .term-note {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .category-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
    }

    /* ===== BADGES Y ETIQUETAS ===== */
    .term-badge {
        background-color: var(--light-color);
        color: var(--dark-color);
        padding: 5px 15px;
        border-radius: 20px;
        margin: 5px;
        display: inline-block;
        text-decoration: none;
        transition: all 0.2s;
        border: 1px solid #ddd;
    }

    .term-badge:hover {
        background-color: var(--secondary-color);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
    }

    .post-tags a, .post-tags li {
        display: inline-block;
        color: #999;
    }

    .post-tags {
        margin-bottom: 40px;
    }

    .post-tags a {
        background: #f2f2f2;
        line-height: 2;
        white-space: nowrap;
        padding: 3px 5px;
        margin: 0 5px 2px 0;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: blue;
    }

    .post-tags a:hover {
        background-color: #46B8DA;
        color: #fff;
    }

    .alt-tags {
        background: #f2f2f2;
        line-height: 2.666em;
        white-space: nowrap;
        padding: 3px 7px;
        margin: 0 5px 2px 0;
        -webkit-border-radius: 2px;
        border-radius: 2px;
    }

    .tag-xs {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        background-color: #2371D9;
    }
    
    .tag-sm {
        font-size: 0.875rem;
        padding: 0.35rem 0.65rem;
        background-color: #4823D9;
    }
    
    .tag-md {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
        background-color: #2338D9;
    }
    
    .tag-lg {
        font-size: 1.25rem;
        padding: 0.6rem 1rem;
        background-color: #21ACDB;
    }
    
    .tag-xl {
        font-size: 1.5rem;
        padding: 0.7rem 1.2rem;
        background-color: #6B78D9;
    }

    /* ===== NOTAS ===== */
    .note-card {
        background-color: #f8f9fa;
        border-left: 4px solid var(--warning-color);
        padding: 1rem;
        border-radius: 5px;
        margin-bottom: 1rem;
    }

    p.note {
        padding: .1em 0 0 2.5em;
        margin: 0 auto;
    }

    span.note_label {
        padding: .8em .5em .25em 0;
        margin-top: 2.5em;
        border-bottom: .07em solid rgba(0,0,0,0.1);
        line-height: 30px;
        font-weight: bold;
    }

    #notabnm {
        font-size: 12px;
        margin-left: 30px;
        margin-bottom: 0px;
    }

    #label-notas {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 10;
    }

    /* ===== TÉRMINOS RELACIONADOS ===== */
    .related-term {
        display: block;
        padding: 8px 15px;
        margin-bottom: 8px;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 4px solid var(--secondary-color);
        transition: all 0.2s;
        text-decoration: none;
        color: inherit;
    }

    .related-term:hover {
        background: #e9ecef;
        text-decoration: none;
        color: inherit;
        transform: translateX(5px);
    }

    /* ===== GRÁFICOS ===== */
    .graph-container {
        background: white;
        border-radius: 15px;
        padding: 1rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        height: 500px;
        margin-bottom: 2rem;
        border: 1px solid #dee2e6;
    }

    #graphterm {
        width: 100%;
        height: 600px;
        border: 0px solid lightgray;
        text-align: center;
    }

    /* ===== ESTADO VACÍO ===== */
    .empty-state {
        text-align: center;
        padding: 3rem;
        color: #6c757d;
    }

    .empty-state i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #dee2e6;
    }

    /* ===== HIGHLIGHT ===== */
    .highlight {
        background-color: #fff3cd;
        padding: 2px 5px;
        border-radius: 3px;
    }

    /* ===== UTILIDADES ===== */
    .term-type {
        font-size: 0.8rem;
        color: #6c757d;
        font-weight: normal;
    }

    .hover-bg-light:hover {
        background-color: #f8f9fa;
    }

    .hover-text-primary:hover {
        color: #0d6efd !important;
    }

    .transition-all {
        transition: all 0.15s ease-in-out;
    }

    .copy-clipboard {
        border-radius: 0;
        vertical-align: inherit;
        font-size: 14px;
        margin-right: 5px;
        border: 0;
    }

    /* ===== NAVBAR ===== */
    .navbar-brand {
        font-size: 20px;
    }

    .breve {
        display: none;
    }

    .navbar-text {
        margin: 0;
    }

    .dropdown-menu {
        padding: 10px;
        width: 410px;
    }

    .dropdown-menu > li > a {
        padding: 3px 0px;
    }

    /* ===== MASONRY GRID ===== */
    .grid-sizer {
        width: 49%;
    }

    .gutter-sizer {
        width: 2%;
    }

    .box {
        width: 49%;
        float: left;
        margin-bottom: 2%;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        -webkit-box-shadow: 1px 1px 13px rgba(0,0,0,.4);
        -moz-box-shadow: 1px 1px 13px rgba(0,0,0,.4);
        box-shadow: 1px 1px 13px rgba(0,0,0,.4);
    }

    .box.doble,
    .box.triple {
        width: 100%;
    }

    .box.box-pres {
        background-color: #eeeeee;
        padding: 10px;
    }

    .box.box-head {
        background-color: rgba(21, 94, 140, 0.22);
        padding: 15px;
    }

    .box-head a {
        color: #333333;
    }

    .box h1 {
        padding-bottom: 20px;
        font-weight: bold;
        font-size: 30px;
    }

    .box figure,
    .box figure p {
        margin: 0px;
    }

    /* ===== WIDGETS ===== */
    .widgettitulo {
        background: #1a4a97;
        margin: 0 0 5px;
        text-align: left;
        padding: 10px;
        -webkit-border-radius: 5px 5px 0px 0px;
        -moz-border-radius: 5px 5px 0px 0px;
        border-radius: 5px 5px 0px 0px;
    }

    .widgettitulo a {
        color: #FFFFFF;
        font-size: 14px;
    }

    .nuevo:hover {
        -webkit-transform: scale(1.05) rotate(-2deg);
        -ms-transform: scale(1.05) rotate(-2deg);
        -moz-transform: scale(1.05) rotate(-2deg);
        -o-transform: scale(1.05) rotate(-2deg);
        transform: scale(1.05) rotate(-2deg);
    }

    .borde {
        border-bottom: 1px solid #E8E8E8;
        padding: 10px;
    }

    .padd {
        padding: 0 10px;
    }

    /* ===== BOX INFO ===== */
    .box-info {
        padding: 15px;
        margin-bottom: 20px;
    }

    .box-info a:hover {
        text-decoration: none;
    }

    .logo {
        float: right;
    }

    .secondary_label {
        margin: 0px;
    }

    /* ===== FOOTER ===== */
    footer {
        border-top: 2px solid #1a4a97;
        padding-top: 20px;
        margin-top: 20px;
    }

    footer section:last-child h5,
    footer section:last-child li {
        background-color: #E7E5E5;
    }

    footer h5 {
        border-bottom: 1px solid #999;
        color: #999;
        padding: 0.8em;
        font-size: 12px;
        margin: 0;
    }

    footer li {
        font-size: 12px;
        padding: 0.5em 0.8em 0 0.8em;
    }

    footer li:last-child {
        padding-bottom: 0.8em;
    }

    footer a {
        color: #005580;
        font-weight: bold;
    }

    /* ===== CONTROL TERMINOLÓGICO ===== */
    .controlterm {
        padding: 10px;
    }

    .controlterm #searchbox {
        width: 100%;
        height: 250px;
        margin-top: 10px;
    }

    .controlterm .radio {
        padding-left: 20px;
    }

    .controlterm .button-field {
        padding-bottom: 10px;
    }

    /* ===== ICONOS Y DESCARGAS ===== */
    .icon {
        float: left;
        width: 55px;
        margin-right: 15px;
        margin-bottom: 5px;
    }

    /* ===== CAJA PRINCIPAL ===== */
    .caja {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        -webkit-box-shadow: 1px 1px 13px rgba(0,0,0,.4);
        -moz-box-shadow: 1px 1px 13px rgba(0,0,0,.4);
        box-shadow: 1px 1px 13px rgba(0,0,0,.4);
    }

    .caja > h1 {
        font-size: 30px;
        margin: 0 0 25px 0;
        font-weight: normal;
    }

    .autor {
        padding-bottom: 10px;
        margin-top: -10px;
    }

    /* ===== CAROUSEL ===== */
    .carousel-indicators li,
    .carousel-indicators .active {
        background-color: rgb(51, 122, 183);
    }

    .carousel-indicators {
        bottom: -10px;
    }

    .carousel-inner {
        margin-bottom: 10px;
    }

    /* ===== WHITEBOX ===== */
    .whitebox {
        width: 100%;
        height: 120px;
        min-width: 100%;
        min-height: 120px;
        max-width: 100%;
        max-height: 120px;
        overflow: hidden;
        display: block;
        padding: 10px;
        background: rgba(207,207,207,1);
        background: -moz-linear-gradient(left, rgba(207,207,207,1) 0%, rgba(231,229,229,1) 100%);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(207,207,207,1)), color-stop(100%, rgba(231,229,229,1)));
        background: -webkit-linear-gradient(left, rgba(207,207,207,1) 0%, rgba(231,229,229,1) 100%);
        background: -o-linear-gradient(left, rgba(207,207,207,1) 0%, rgba(231,229,229,1) 100%);
        background: -ms-linear-gradient(left, rgba(207,207,207,1) 0%, rgba(231,229,229,1) 100%);
        background: linear-gradient(to right, rgba(207,207,207,1) 0%, rgba(231,229,229,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cfcfcf', endColorstr='#e7e5e5', GradientType=1);
    }

    .whitebox span {
        color: #17074A;
        font-weight: bolder;
        -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
        -moz-transform: rotate(-2deg);
        -o-transform: rotate(-2deg);
        transform: rotate(-2deg);
        display: inline-block;
    }

    .whitebox button {
        font-size: 100%;
        margin-top: -10px;
    }

    .littleinfo {
        margin-top: 15px;
    }

    /* ===== MODAL ===== */
    .modal-backdrop {
        background-color: gray;
    }

    .modal-header {
        background-color: #94BBC7;
    }

    /* ===== PÁGINA PRINCIPAL ===== */
    #content {
        padding-top: 15px;
    }

    #treeTerm {
        padding-left: 15px;
    }

    #main h2 {
        margin: 0 10px;
        color: #20519c;
    }

    #term_prefLabel {
        font-size: 20px;
        font-weight: bold;
        color: #1c71b4;
        padding-left: 5px;
    }

    #nopref {
        font-size: 12px;
        padding-left: 30px;
    }

    .padbot {
        margin-bottom: 10px;
    }

    #box-rel {
        margin-right: 15px;
    }

    #box-rel > div {
        border: 2px dotted #0088cc;
        padding: 5px;
    }

    #relac {
        font-size: 11px;
    }

    #topterms {
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        padding: 15px;
    }

    .relation-body {
        padding-bottom: 15px;
    }

    /* ===== PLUGINS Y SUGERENCIAS ===== */
    .plugin h4,
    #suggests h4,
    #matches h4,
    #datos h4 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .plugin h4 em {
        color: #1a4a97;
    }

    #suggests li {
        padding-bottom: 10px;
    }

    #term_id {
        width: auto;
    }

    #suggest-form .form-group,
    #new-voc .form-group {
        margin: 0 0 10px 0;
    }

    #suggest-form .input-group,
    #suggest-form select,
    #new-voc .input-group,
    #new-voc select {
        width: 100%;
    }

    #suggest-form textarea,
    #new-voc textarea {
        resize: none;
    }

    #source_note {
        height: 50px;
    }

    .input-group-addon {
        width: 37px;
    }

    .g-recaptcha {
        height: 75px;
    }

    /* ===== PESTAÑAS ===== */
    .tabbable {
        margin-top: 10px;
    }

    .nav-tabs {
        border-bottom: 1px solid #337AB7;
        margin-bottom: 15px;
    }

    .nav-tabs > li > a,
    .nav-tabs > li > a:hover,
    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:focus,
    .nav-tabs > li.active > a:hover {
        border: 1px solid #337AB7;
    }

    .nav-tabs > li > a {
        background-color: rgb(219, 216, 216);
    }

    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:focus,
    .nav-tabs > li.active > a:hover {
        border-bottom-color: transparent;
    }

    /* ===== DETALLES DEL TÉRMINO ===== */
    #term_details dd {
        margin-left: 25px;
    }

    #term_details dt {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        padding-top: 10px;
    }

    #term_breadcrumb {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
        padding-bottom: 10px;
    }

    /* ===== LABELS Y METADATOS ===== */
    .label_details {
        display: block;
        font-size: 12px;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 10px;
        color: #000000;
        padding: 10px;
        text-align: right;
    }

    .label_details a {
        color: #000000;
        text-decoration: none;
    }

    .label_list {
        display: inline;
        font-weight: bolder;
    }

    /* ===== METATERMS ===== */
    /* Prioridad: thes2.css (color #616161) */
    dd.metaTerm,
    li.metaTerm,
    a.metaTerm,
    span.metaTerm {
        color: #616161;
    }

    dd.metaTerm:before,
    li.metaTerm:before,
    a.metaTerm:before,
    span.metaTerm:before {
        content: '<';
    }

    dd.metaTerm:after,
    li.metaTerm:after,
    a.metaTerm:after,
    span.metaTerm:after {
        content: '>';
    }

    .topterms li.metaTerm {
        font-family: "Open Sans", sans-serif;
        font-style: normal;
        font-weight: 400;
    }

    ul.topterms {
        list-style-type: none;
    }

    ul.topterms a {
        font-size: 1.2em;
        width: auto !important;
        border: 0;
        letter-spacing: .15em;
        margin-top: 2.5em;
        padding: .8em .5em .25em 1%;
        text-transform: uppercase;
        border-bottom: .07em solid rgba(0,0,0,0.1);
        line-height: 30px !important;
    }

    /* ===== RELACIONES ===== */
    .relation.panel {
        margin-bottom: 0px;
        -webkit-box-shadow: 0 0px 0px rgba(0,0,0,.05);
        -moz-box-shadow: 0 0px 0px rgba(0,0,0,.05);
        box-shadow: 0 0px 0px rgba(0,0,0,.05);
    }

    #term_relations a {
        text-decoration: underline;
    }

    /* ===== ACERCA DE ===== */
    #acerca_vocabulario h2 {
        font-size: 25px;
        letter-spacing: -2px;
        line-height: 35px;
        padding: 15px 0px 0px 0px;
        margin: 0px;
    }

    /* ===== RESULTADOS DE BÚSQUEDA ===== */
    #msg_search_result {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: #000000;
        margin: 20px 0 10px;
    }

    #list_search_result li {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
        margin: 10px 0 6px 10px;
    }

    /* ===== PESTAÑA DATOS ===== */
    #datos li {
        padding-bottom: 10px;
        padding-left: 20px;
    }

    #datos a {
        color: black;
    }

    #datos i,
    #datos img {
        padding-right: 10px;
    }

    /* ===== TÉRMINOS ALTERNATIVOS ===== */
    #alt_terms li,
    #broader_terms li,
    #related_terms li {
        list-style-type: none;
        display: inline;
    }

    #alt_terms li {
        font-style: italic;
    }

    /* ===== AYUDA ===== */
    .ayuda figure {
        background-color: rgb(202, 218, 229);
        padding: 10px;
        width: 100%;
        max-width: 350px;
        margin-bottom: 10px;
    }

    .ayuda img {
        width: 100%;
        max-width: 350px;
        margin-bottom: 5px;
    }

    .ayuda figcaption {
        text-align: center;
    }

    /* ===== RESULTADOS MULTIVOCAB ===== */
    .resultados {
        padding: 10px;
    }

    .resultados:nth-child(even) {
        background-color: #E1E7EC;
    }

    /* ===== MEDIA QUERIES ===== */
    @media (max-width: 452px) {
        .completo {
            display: none;
        }
        .breve {
            display: initial;
        }
    }

    @media (max-width: 640px) {
        .grid-sizer,
        .box {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .vocabulary-header {
            padding: 1.5rem;
        }
        .alphabet-letter {
            width: 35px;
            height: 35px;
            line-height: 35px;
            font-size: 0.9rem;
        }
        .graph-container {
            height: 300px;
        }
        .ocultar {
            display: none;
        }
    }

    @media (min-width: 769px) {
        .littleinfo {
            display: none;
        }
    }

    @media (max-width: 991px) {
        .box-info h1 {
            font-size: 20px;
        }
        .statsnum {
            font-size: 35px;
        }
    }

    @media (min-width: 1024px) {
        .grid-sizer,
        .box {
            width: 23.5%;
        }
        .box.doble {
            width: 49%;
        }
        .box.triple {
            width: 74.5%;
        }
    }