.portada-recurso {
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    display: flex;
    justify-content: center;
}

.portada-section-recurso {
    background: url("../images/fondo-recurso.svg") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 0px 0px 390px 0px;
    color: rgba(255, 255, 255, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    height: 534px;
}

.portada-content-recurso {
    width: 80%;
    display: flex;
    flex-direction: column;
    margin-top: 430px;
}

.titulo-recurso {
    color: rgba(255, 255, 255, 1);
    font-size: 48px;
    display: flex;
    margin-bottom: 25px;
}

.texto-portada-recurso {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    display: flex;
}


@media (max-width: 1439px) and (min-width: 1240px) {
    .portada-content-recurso {
        width: 61%;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .portada-content-recurso {
        width: 67%;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .titulo-recurso {
        font-size: 24px;
    }

    .texto-portada-recurso {
        font-size: 16px;
    }

    .portada-content-recurso {
        width: 87%;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .titulo-recurso {
        font-size: 24px;
    }

    .texto-portada-recurso {
        font-size: 16px;
    }

    .portada-content-recurso {
        width: 88%;
    }
}




.tabs-guia-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.tabs-guia {
    display: flex;
    border: 1px solid rgba(170, 170, 170, 1);
    border-radius: 4px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
    padding: 6px;
}

.tab-btn {
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    color: rgba(35, 94, 173, 1);
    background-color: transparent;
    border-radius: 4px;
    width: 354px;
    height: 56px;
    transition: background-color 0.3s, color 0.3s;
    margin-left: 7px;
    margin-right: 7px;
}

.tab-btn.active {
    background: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    color: rgba(255, 255, 255, 1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}




.titulo-pregunta-guia {
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 40px;
}

.titulo-pregunta-guia h4 {
    color: rgba(35, 94, 173, 1);
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 13px;
}

.titulo-pregunta-guia p {
    font-size: 16px;
    margin-bottom: 50px;
}

.text-muted-recurso-guia {
    text-align: center;
}

.accordion-guia {
    margin: 0 auto;
    width: 1128px;
}

.accordion-item-guia {
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    margin-bottom: 0.5rem;
}

.accordion-button-guia {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px;
    display: flex;
    align-items: center;
    text-align: left;
}

.accordion-button-guia:focus {
    outline: none;
    box-shadow: none;
}

.accordion-pregunta-guia {
    font-weight: 600;
    font-size: 20px;
}

.accordion-respuesta-guia {
    padding: 0 16px 16px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
}

.icono-toggle-guia {
    font-size: 20px;
    color: transparent;
    background-image: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .tab-btn {
        width: 258px;
    }

    .accordion-guia {
        width: 840px;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .tab-btn {
        width: 215px;
    }

    .accordion-guia {
        width: 711px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .tabs-guia-wrapper {
        padding: 0 16px
    }

    .tab-btn {
        height: 32px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .titulo-pregunta-guia h4 {
        font-size: 24px;
    }

    .accordion-guia {
        width: auto;
        padding: 0 16px;
    }

    .accordion-pregunta-guia {
        font-size: 16px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .tabs-guia-wrapper {
        padding: 0 16px
    }

    .tab-btn {
        height: 32px;
        font-size: 10px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .titulo-pregunta-guia h4 {
        font-size: 24px;
    }

    .titulo-pregunta-guia p {
        margin-left: 20px;
        margin-right: 20px;
    }

    .accordion-guia {
        width: auto;
        padding: 0 16px;
    }

    .accordion-pregunta-guia {
        font-size: 16px;
    }
}





.contenedor-descarga-pdf-guia-general {
    width: 1128px;
    margin: 40px auto 80px auto;
}

.descarga-pdf-guia-general {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(211, 211, 211, 1);
    border-radius: 8px;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 1);
    transition: border-color 0.2s ease;
    margin-top: 55px;
}

.descarga-pdf-guia-general:hover {
    border-color: rgba(6, 79, 113, 0.5);
}

.icono-pdf-guia-general {
    margin-right: 16px;
}

.texto-pdf-guia-general {
    flex-grow: 1;
}

.texto-pdf-guia-general strong {
    display: block;
    font-size: 14px;
}

.texto-pdf-guia-general p {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.icono-descarga-guia-general img {
    transition: filter 0.2s ease;
}

.icono-descarga-guia-general:hover img {
    filter: invert(21%) sepia(45%) saturate(508%) hue-rotate(189deg) brightness(90%) contrast(97%);
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .contenedor-descarga-pdf-guia-general {
        width: 840px;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .contenedor-descarga-pdf-guia-general {
        width: 711px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .contenedor-descarga-pdf-guia-general {
        width: 95%;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .contenedor-descarga-pdf-guia-general {
        width: 94%;
    }

    .icono-descarga-guia-general img {
        margin-left: 5px;
    }
}












.buscador-recurso-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1169px;
    margin: 0px auto 20px auto;
    padding: 0 20px;
    margin-top: 45px;
}

.buscador-recurso {
    flex: 1 1 0px;
    position: relative;
}

.buscador-recurso input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border-radius: 12px;
    border: 1px solid rgba(204, 204, 204, 1);
    cursor: pointer;
}

.icono-borrar,
.icono-buscar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}

.icono-borrar {
    right: 50px;
    font-size: 24px;
}

.icono-buscar {
    right: 10px;
    background: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
}

.dropdown-resultados {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.dropdown-resultados li {
    padding: 10px;
}

.dropdown-resultados li:hover {
    background-color: rgba(240, 240, 240, 1);
}

#ordenar-recursos {
    height: 46px;
    font-size: 16px;
}

.ordenar-recursos {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ordenar-label {
    font-size: 16px;
    color: rgba(64, 64, 64, 1);
}

.ordenar-recursos select.form-select {
    height: 40px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid rgba(204, 204, 204, 1);
    cursor: pointer;
}

input:disabled,
select:disabled {
    background-color: rgba(245, 245, 245, 1);
    cursor: default !important;
    opacity: 0.6;
}

button:disabled {
    cursor: default !important;
    opacity: 0.6;
}

.icono-buscar-empresas {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}

.icono-buscar-empresas {
    right: 10px;
    background: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .buscador-recurso-wrapper {
        max-width: 873px;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .buscador-recurso-wrapper {
        max-width: 746px;
    }

    .buscador-recurso {
        flex: 1 1 0px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .buscador-recurso-wrapper {
        flex-direction: column;
        align-items: stretch;
        max-width: 746px;
    }

    .buscador-recurso {
        flex: 1 1 45px;
    }
}

@media (max-width: 749px) and (min-width: 600px) {
    .buscador-recurso-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .buscador-recurso {
        flex: 1 1 45px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .buscador-recurso-wrapper {
        flex-direction: column;
        align-items: stretch;
        max-width: 746px;
    }

    .buscador-recurso {
        flex: 0 0 0;
    }
}







.btn-filtro {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-right: 8px;
    background-color: rgba(255, 255, 255, 1);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid transparent;
}

.btn-filtro:hover {
    opacity: 0.85;
}

.btn-filtro:focus,
.btn-filtro:focus-visible,
.btn-filtro:active {
    outline: none;
    box-shadow: none;
    border: none !important;
    color: rgba(255, 255, 255, 1) !important;
}

.btn-filtro-todos {
    background-color: rgba(64, 64, 64, 1);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(64, 64, 64, 1);
}

#filtros-etiquetas {
    margin: 32px auto 20px auto;
    max-width: 1128px;
}

#filtros-etiquetas button {
    padding: 8px 20px;
    border: 1px solid transparent;
}

.filtro-label {
    font-size: 16px;
    margin-right: 8px;
    align-self: center;
    color: rgba(64, 64, 64, 1);
}

#filtros-etiquetas-empresas {
    margin: 32px auto 20px auto;
    max-width: 1128px;
}

#filtros-etiqueta-empresas button {
    padding: 8px 20px;
    border: 1px solid transparent;
}

@media (max-width: 1439px) and (min-width: 1240px) {
    #filtros-etiquetas {
        max-width: 830px;
    }

     #filtros-etiquetas-empresas {
        max-width: 830px;
    }
}

@media (max-width: 1239px) and (min-width: 750px) {
    #filtros-etiquetas {
        max-width: 700px;
    }

    #filtros-etiquetas-empresas {
        max-width: 700px;
    }
}

@media (max-width: 749px) and (min-width: 600px) {
    #filtros-etiquetas {
        max-width: 700px;
        margin-left: 20px;
    }

    #filtros-etiquetas-empresas {
        max-width: 700px;
        margin-left: 20px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    #filtros-etiquetas {
        margin-left: 20px;
    }

    #filtros-etiquetas-empresas {
        margin-left: 20px;
    }
}





.titulo-organizaciones {
    margin: 32px auto 20px auto;
    max-width: 1128px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.titulo-organizaciones h4 {
    color: rgba(35, 94, 173, 1);
    font-weight: bold;
    font-size: 32px;
    text-align: left;
    margin: 0;
}

.cantidad-videos {
    color: rgba(35, 94, 173, 1);
    font-weight: 600;
    font-size: 32px;
}

.btn-ver-todos {
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(34, 74, 162, 1);
    border-radius: 6px;
    border-bottom: 2px solid rgba(34, 74, 162, 1);
    padding-bottom: 12px;
    text-decoration-line: none;
    width: 100px;
    text-decoration: none;
}

.btn-ver-todos:hover {
    border-bottom-color: rgba(34, 74, 162, 0.5);
    color: rgba(34, 74, 162, 0.5);
}

.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper iframe {
    width: 472px;
    height: 296px;
    border: none;
    margin-top: 25px;
}

.videos-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    scroll-behavior: smooth;
    margin: 32px auto;
    max-width: 1128px;
}

.video-card {
    box-shadow: 0 4px 12px rgba(145, 145, 145, 0.3);
    flex: 0 0 auto;
    width: 520px;
    height: 466px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
    margin: 10px 10px 10px 10px;
}

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

.video-organizacion-item {
    width: 300px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.video-organizacion-item:hover {
    transform: translateY(-5px);
}

.video-card-body {
    padding: 20px 25px 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(88, 88, 90, 1);
    text-align: left;
}

.video-tag {
    width: fit-content;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px 9px 18px;
}


@media (max-width: 1439px) and (min-width: 1240px) {
    .titulo-organizaciones {
        max-width: 840px;
    }

    .titulo-organizaciones h4 {
        max-width: 840px;
    }

    .videos-grid {
        max-width: 840px;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .titulo-organizaciones {
        max-width: 711px;
    }

    .titulo-organizaciones h4 {
        max-width: 711px;
    }

    .videos-grid {
        max-width: 711px;
    }

    .video-card {
        width: 328px;
        height: 340px;
    }

    .video-wrapper iframe {
        width: 280px;
        height: 170px;
    }

    .video-title {
        font-size: 16px;
    }
}

@media (max-width: 904px) and (min-width: 751px) {
    .titulo-organizaciones {
        padding: 0px 20px;
    }

    .titulo-organizaciones h4 {
        padding: 0px 20px;
    }
}

@media (max-width: 750px) and (min-width: 600px) {
    .titulo-organizaciones {
        padding: 0px 20px;
    }

    .titulo-organizaciones h4 {
        padding: 0px 20px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .videos-grid {
        max-width: 570px;
    }

    .video-card {
        width: 328px;
        height: 340px;
    }

    .video-wrapper iframe {
        width: 280px;
        height: 170px;
    }

    .video-title {
        font-size: 16px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .titulo-organizaciones {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-right: 15px;
    }

    .btn-ver-todos {
        align-self: flex-end;
        margin-top: -40px;
    }

    .cantidad-videos {
        font-size: 24px;
    }

    .videos-grid {
        max-width: 350px;
    }

    .video-card {
        width: 328px;
        height: 340px;
    }

    .video-wrapper iframe {
        width: 280px;
        height: 170px;
    }

    .video-title {
        font-size: 16px;
    }
}






.cantidad-documentos {
    color: rgba(35, 94, 173, 1);
    font-weight: 600;
    font-size: 32px;
}

.documentos-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    scroll-behavior: smooth;
    margin: 20px auto 0px auto;
    max-width: 1128px;
}

.documento-card-v2 {
    border-radius: 4px;
    padding: 25px 25px 0px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 352px;
    height: auto;
    margin: 10px 10px 10px 10px;
}

.documento-icono {
    background-color: rgba(238, 238, 238, 1);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 178px;
}

.documento-icono img {
    width: 94px;
    height: 94px;
}

.documento-nombre {
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: rgba(80, 73, 85, 1);
    height: 70px;
}

.documento-etiqueta {
    width: fit-content;
    padding: 9px 18px 9px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    margin-bottom: 25px;
}

.documento-descarga {
    display: flex;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 1);
    color: rgba(34, 74, 162, 1);
    border: 1px solid rgba(34, 74, 162, 1);
    width: 304px;
    height: 56px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.documento-descarga:hover {
    background: rgba(5, 158, 219, 0.1);
    color: rgba(34, 74, 162, 1);
    border: 1px solid rgba(34, 74, 162, 1);
}


@media (max-width: 1439px) and (min-width: 1240px) {
    .titulo-organizaciones h4 {
        max-width: 840px;
    }

    .documentos-grid {
        max-width: 840px;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .titulo-organizaciones h4 {
        max-width: 711px;
    }

    .documentos-grid {
        max-width: 711px;
    }

    .documento-card-v2 {
        width: 328px;
    }

    .documento-icono {
        width: 280px;
    }

    .documento-descarga {
        width: 280px;
        height: 56px;
    }
}

@media (max-width: 904px) and (min-width: 751px) {
    .titulo-organizaciones h4 {
        padding: 0px 20px;
    }
}

@media (max-width: 750px) and (min-width: 600px) {
    .titulo-organizaciones h4 {
        padding: 0px 20px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .documentos-grid {
        max-width: 570px;
    }

    .documento-card-v2 {
        width: 328px;
    }

    .documento-icono {
        width: 280px;
    }

    .documento-descarga {
        width: 280px;
        height: 56px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .titulo-organizaciones h4 {
        padding: 0px 20px;
        font-size: 24px;
    }

    .cantidad-documentos {
        font-size: 24px;
    }

    .documentos-grid {
        max-width: 350px;
    }

    .documento-card-v2 {
        width: 328px;
    }

    .documento-icono {
        width: 280px;
    }

    .documento-descarga {
        width: 280px;
        height: 56px;
    }
}





.material-tabla-wrapper {
    border: 1px solid rgba(147, 149, 152, 1);
    border-radius: 12px;
    max-width: 1128px;
    margin: 45px auto 20px auto;
}

.titulo-material-descargable {
    font-size: 16px;
    font-weight: 600;
    color: rgba(64, 64, 64, 1);
    margin: 15px 0px 15px 15px;
}

.cantidad-material {
    color: rgba(35, 94, 173, 1);
    font-weight: 600;
    font-size: 32px;
}

.material-tabla {
    width: 100%;
    font-size: 14px;
}

.material-tabla thead {
    background-color: rgba(5, 158, 219, 0.1);
    color: rgba(6, 79, 113, 1);
    font-weight: 600;
}

.material-tabla th,
.material-tabla td {
    padding: 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.doc-nombre {
    gap: 12px;
    align-items: center;
}

.doc-nombre div {
    display: flex;
    align-items: center;
    gap: 10px
}

.icono-doc {
    width: 40px;
    height: 40px;
}

.documento-etiqueta-material {
    width: fit-content;
    padding: 9px 18px 9px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
}

.icono-descarga {
    font-size: 20px;
    color: rgba(0, 69, 107, 1);
    cursor: pointer;
}

.titulo-material-descargable-movil {
    font-size: 16px;
    font-weight: 600;
    color: rgba(64, 64, 64, 1);
    margin-bottom: 15px;
}

.material-descargable-mobile {
    display: flex;
    flex-direction: column;
}

.documento-card-movil {
    border: 1px solid rgba(204, 204, 204, 1);
    padding: 16px;
}

.documento-cabecera {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.documento-cabecera img {
    width: 36px;
    height: 36px;
}

.doc-info {
    flex-grow: 1;
}

.doc-titulo {
    font-weight: 600;
    font-size: 14px;
}

.doc-peso {
    font-size: 12px;
    color: rgba(136, 136, 136, 1);
}

.descarga-icono i {
    font-size: 20px;
    color: rgba(0, 69, 107, 1);
}

.doc-etiqueta {
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

#material_descargable_organizaciones_desktop {
    display: block;
}

#material_descargable_organizaciones_mobile {
    display: none;
}

#material_descargable_organizaciones_desktop_empresas {
    display: block;
}

#material_descargable_organizaciones_mobile_empresas {
    display: none;
}

.no-docs {
    margin: 20px auto 0px auto ! important;
    max-width: 1128px ! important;
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .material-tabla-wrapper {
        width: 840px;
    }

    .no-docs {
        max-width: 840px !important;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .material-tabla-wrapper {
        width: 711px;
    }

    .no-docs {
        max-width: 711px ! important;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .material-tabla-wrapper {
        width: 536px;
    }

    .no-docs {
        max-width: 570px ! important;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .material-tabla-wrapper {
        width: 328px;
        min-height: auto;
    }

    .cantidad-material {
        font-size: 24px;
    }

    .no-docs {
        max-width: 350px ! important;
    }
}

@media (max-width: 904px) {
    #material_descargable_organizaciones_desktop {
        display: none;
    }

    #material_descargable_organizaciones_mobile {
        display: block;
    }

    #material_descargable_organizaciones_desktop_empresas {
        display: none;
    }

    #material_descargable_organizaciones_mobile_empresas {
        display: block;
    }
}

@media (max-width: 599px) {
    #material_descargable_organizaciones_mobile {
        margin-bottom: 70px;
    }

    #material_descargable_organizaciones_mobile_empresas {
        margin-bottom: 70px;
    }
}







.pag-material-wrapper {
    display: flex;
    height: 80px;
}

.pag-material {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    list-style: none;
    position: relative;
}

.pag-material .numeros-material {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding-left: 0 !important;
}

.pag-item-material {
    display: inline;
}

.pag-link-material {
    color: rgba(34, 74, 162, 1);
    padding: 12px 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pag-link-material i {
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pag-link-material:hover {
    color: rgba(34, 74, 162, 0.5);
}

.pag-item-material.active .pag-link-material {
    background-color: rgba(238, 238, 238, 1);
    color: rgba(34, 74, 162, 1);
    border-color: rgba(238, 238, 238, 1);
    display: flex;
    justify-content: center;
}

.pag-item-material.disabled .pag-link-material {
    color: rgba(204, 204, 204, 1);
    pointer-events: none;
    background-color: transparent;
    border-bottom: 2px solid rgba(204, 204, 204, 1);
}

.pag-item-material.puntos .pag-link-material {
    border-bottom: none !important;
}

.nav-btn-material .pag-link-material {
    border-bottom: 2px solid rgba(34, 74, 162, 1);
    justify-content: center;
    transition: border-color 0.3s ease;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav-btn-material .pag-link-material:hover {
    border-bottom: 2px solid rgba(34, 74, 162, 0.5);
}

@media (max-width: 1239px) {
    .pag-link-material .text-nav-material {
        display: none;
    }
}

@media (max-width: 904px) {
    .texto-nav-material {
        display: none;
    }
}