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

:root {

    --azul-principal: #004171;
    --azul-secundario1: #0d5575;
    --azul-secundario2: #297ba2;
    --azul-secundario3: #389eb0;
    --color-destacado: #FF9154;
    --gris-fondo: #f9f9f9;
    --gris-borde: #e5e5e5;
    --texto: #222222;
}

/* =========================
   PÁGINAS INTERNAS
========================= */

.pagina {
    background: #f5f7fa;
    min-height: 100vh;
}

body, html {
  overflow-x: hidden;
}

/* =========================
   HEADER PÁGINA
========================= */

.pagina-header {
    position: relative;
    padding: 90px 70px 70px;
    background: linear-gradient(
        135deg,
        var(--azul-principal),
        var(--azul-secundario2)
    );
    overflow: hidden;
}

.pagina-header::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.pagina-header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pagina-titulo {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    max-width: 900px;
    letter-spacing: -1px;
}

.pagina-contenido {
    padding: 70px 0 90px;
}

.contenido-editor {
    background: #ffffff;
    border-radius: 18px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #e8edf3;
    line-height: 1.8;
    color: #44505c;
    font-size: 16px;
}

/* =========================
   TIPOGRAFÍA EDITOR
========================= */

.contenido-editor h1,
.contenido-editor h2,
.contenido-editor h3,
.contenido-editor h4 {
    color: var(--azul-principal);
    line-height: 1.3;
    font-weight: 700;
}

.contenido-editor h1 {
    font-size: 34px;
    margin-top: 10px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.contenido-editor h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px; 
    width: 0;   
    background: linear-gradient(
        90deg,
        var(--azul-principal) 0%,
        var(--color-destacado) 50%,
        transparent 100% 
    );
    border-radius: 2px;

    animation: expandirLinea 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes expandirLinea {
    to {
        width: 300px; 
    }
}

.contenido-editor h2 {
    font-size: 32px;
    margin-top: 38px;
    margin-bottom: 18px;
}

.contenido-editor h3 {
    font-size: 26px;
    margin-top: 34px;
    margin-bottom: 16px;
}

.contenido-editor h4 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
}

.contenido-editor p {
    margin-bottom: 22px;
    line-height: 1.8;
    color: var(--texto);
}

.contenido-editor strong {
    color: var(--azul-principal);
    font-weight: 700;
}

.contenido-editor a {
    color: var(--azul-secundario2);
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.contenido-editor a:hover {
    color: var(--color-destacado);
}

/* =========================
   LISTAS GUTENBERG
========================= */
.contenido-editor ul,
.contenido-editor ol {
    margin: 24px 0;
    padding-left: 22px;
    color: var(--texto);
    line-height: 1.7;
    font-size: 15px;
}

.contenido-editor li {
    margin-bottom: 10px;
    position: relative;
}

.contenido-editor ul {
    list-style: none;
    padding-left: 22px;
}

.contenido-editor ul li {
    position: relative;
    padding-left: 18px;
}

.contenido-editor ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background: var(--azul-secundario2);
    border-radius: 50%;
}

.contenido-editor ol {
    list-style: decimal;
    padding-left: 22px;
}

.contenido-editor ol li {
    margin-bottom: 10px;
    position: relative;
}

.contenido-editor ol li::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--azul-principal);
    border-radius: 50%;
}

.contenido-editor p + ul,
.contenido-editor p + ol {
    margin-top: 10px;
}

.contenido-editor li {
    margin-bottom: 10px;
}

/* BLOCKQUOTE */
.contenido-editor blockquote {
    border-left: 4px solid var(--color-destacado);
    padding-left: 20px;
    margin: 30px 0;
    color: #5c6773;
    font-style: italic;
}

/* ================================
            TABLAS GUTENBERG 
   ================================ */
.contenido-editor .wp-block-table {
    margin: 32px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--azul-secundario2) var(--gris-fondo);
}

.contenido-editor .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid var(--gris-borde);
    border-radius: 6px; 
    overflow: hidden;
}

.contenido-editor .wp-block-table table tbody tr:first-child {
    background-color: var(--azul-principal);
}

.contenido-editor .wp-block-table table tbody tr:first-child td {
    background-color: var(--azul-principal);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 16px 20px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15); 
    vertical-align: middle;
}

.contenido-editor .wp-block-table table tbody tr:first-child td:last-child {
    border-right: none;
}

.contenido-editor .wp-block-table tbody tr:not(:first-child) td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gris-borde);
    color: var(--texto);
    font-size: 15px;
    line-height: 1.6;
    vertical-align: middle;
}

.contenido-editor .wp-block-table tbody tr:last-child td {
    border-bottom: none;
}

.contenido-editor .wp-block-table tbody tr {
    transition: background-color 0.2s ease;
}

.contenido-editor .wp-block-table tbody tr:nth-child(odd):not(:first-child) {
    background: var(--gris-fondo);
}

.contenido-editor .wp-block-table tbody tr:not(:first-child):hover {
    background: #f0f5f8; 
}

.contenido-editor .wp-block-table figcaption {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    font-style: italic;
    color: var(--azul-secundario2);
}

/* =========================
   IMÁGENES GUTENBERG
========================= */
.contenido-editor figure {
    margin: 40px 0;
}

.contenido-editor figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    cursor: zoom-in;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.contenido-editor figure img:hover {
    transform: scale(1.01);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* captions */
.contenido-editor figcaption {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

/* =========================
   ALINEACIONES GUTENBERG
========================= */
.contenido-editor .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.contenido-editor .alignright {
    float: right;
    margin-left: 25px;
    max-width: 45%;
}

.contenido-editor .alignleft {
    float: left;
    margin-right: 25px;
    max-width: 45%;
}

/* =========================
   GALERÍAS GUTENBERG
========================= */
.contenido-editor .wp-block-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 12px;
    margin: 45px 0 !important;
    padding: 0 !important;
}

.contenido-editor .wp-block-gallery .wp-block-image {
    position: relative;
    width: 100% !important;
    height: 280px !important;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 12px;
}

.contenido-editor .wp-block-gallery .wp-block-image::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight:bold;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    color: #ffffff;
    background: rgba(0, 65, 113, 0.45);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contenido-editor .wp-block-gallery .wp-block-image:hover::after {
    opacity: 1;
}

.contenido-editor .wp-block-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.contenido-editor .wp-block-gallery img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.contenido-editor .wp-block-gallery figure {
    margin: 0 !important;
    width: 100%;
}

.contenido-editor .wp-block-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.contenido-editor .wp-block-gallery figcaption {
    margin-top: 8px;
    font-size: 13px;
    text-align: center;
    color: #6b7280;
}

/* =========================
   LIGHTBOX IMÁGENES
========================= */
.gslide-image img {
    width: 100% !important;
    max-width: 1200px !important;
    height: 75vh !important;
    object-fit: contain !important;
    margin: 0 auto;
    border-radius: 12px;
}

.goverlay {
    background: rgba(0,0,0,0.92) !important;
}

.gclose,
.gnext,
.gprev {
    transform: scale(1.35);
}

/* =========================
   CAPTION LIGHTBOX
========================= */
.gslide-description {
    background: transparent !important;
    padding-top: 16px !important;
    text-align: center;
}

.gslide-desc {
    color: #ffffff !important;
    font-size: 15px !important;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* =========================
   BOTONES GENERALES
========================= */
.contenido-editor div.wp-block-buttons,
.contenido-editor .wp-block-buttons.is-layout-flex {
    margin: 32px 0;
    gap: 16px;      
}

.btn,
.contenido-editor .wp-block-buttons .wp-block-button__link,
button,
input[type="submit"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px; 
    border: 2px solid transparent; 
    border-radius: 6px; 
    background-color: var(--azul-principal);
    color: #ffffff; 
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.2;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn:focus-visible,
.contenido-editor .wp-block-buttons .wp-block-button__link:focus-visible,
button:focus-visible {
    outline: 2px solid var(--azul-secundario1);
    outline-offset: 2px;
}

.btn:hover,
.contenido-editor .wp-block-buttons .wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--azul-secundario1); 
    border-color: var(--azul-secundario3); 
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 65, 113, 0.18); 
}

.btn:active,
.contenido-editor .wp-block-buttons .wp-block-button__link:active,
button:active {
    background-color: var(--azul-principal);
    box-shadow: none;
}

/* =========================
   LINKS GENERALES
========================= */
a {
    color: var(--azul-principal);
    text-decoration: none;
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

a:hover {
    color: var(--color-destacado);
}

.contenido-editor a {
    color: var(--azul-secundario2);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.25s ease;
}

.contenido-editor a:hover {
    color: var(--color-destacado);
    text-decoration-thickness: 2px;
}

/* =========================
   VIDEOS GUTENBERG
========================= */
.contenido-editor video,
.contenido-editor iframe {
    width: 100%;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.contenido-editor video:hover,
.contenido-editor iframe:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.contenido-editor .wp-block-video,
.contenido-editor .wp-block-embed {
    margin: 45px 0;
}

.contenido-editor .wp-block-video figcaption,
.contenido-editor .wp-block-embed figcaption {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* =========================
   GALERÍA DE VIDEOS
========================= */
.contenido-editor .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    margin: 45px 0;
}

.contenido-editor .videos-grid .wp-block-video,
.contenido-editor .videos-grid .wp-block-embed {
    margin: 0;
}

.contenido-editor .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
}

.contenido-editor .wp-block-embed__wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* =========================
   VIDEO LOCAL
========================= */
.contenido-editor .wp-block-video video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000000;
}

/* =========================
   DETALLES GUTEMBERG
========================= */
.wp-block-details {
    margin: 24px 0;
    background: #fff;
    border: 1px solid var(--gris-borde);
    border-radius: 8px;
    border-left: 4px solid var(--azul-secundario2);
    overflow: hidden;
    transition: border-left-color 0.3s ease;
}

.wp-block-details:hover {
    border-left-color: var(--azul-principal);
}

.wp-block-details[open] {
    border-left-color: var(--color-destacado); 
}

.wp-block-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    color: var(--azul-principal);
    background: #fff;
    transition: background 0.25s ease, color 0.25s ease;
}

.wp-block-details summary:hover {
    background: var(--gris-fondo);
    color: var(--azul-secundario1);
}

.wp-block-details summary::-webkit-details-marker,
.wp-block-details summary::marker {
    display: none;
    content: "";
}

.wp-block-details summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--azul-secundario2);
    border-bottom: 2px solid var(--azul-secundario2);
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-left: 16px;
    flex-shrink: 0;
}

.wp-block-details[open] summary::after {
    transform: rotate(-135deg);
    border-color: var(--color-destacado);
}

.wp-block-details[open] > *:not(summary) {
    padding: 0 20px;
}

.wp-block-details[open] > *:not(summary):first-of-type {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gris-borde);
}

.wp-block-details[open] > *:not(summary):last-child {
    margin-bottom: 20px;
}

.wp-block-details p,
.wp-block-details li {
    color: var(--texto);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================
   SEPARADOR GUTENBERG
========================= */
.contenido-editor .wp-block-separator {
    border: none;
    height: 2px;
    margin: 48px auto;
    background: linear-gradient(
        to right,
        transparent,
        var(--gris-borde),
        transparent
    );
    opacity: 1;
    overflow: visible;
    position: relative;
}

.contenido-editor .wp-block-separator.is-style-wide {
    max-width: 100%;
}

.contenido-editor .wp-block-separator.is-style-dots {
    background: none;
    text-align: center;
    border: none;
    height: auto;
}

.contenido-editor .wp-block-separator.is-style-dots::after {
    display: none;
}

/* ======================
   CPT CRONOGRAMA
   ===================== */
.cronograma-web-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    position: relative; 
}

.cronograma-web-list::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 26px;
    width: 2px;
    background-color: var(--gris-borde);
    z-index: 1;
}

.cronograma-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--gris-borde);
    border-radius: 8px;
    padding: 24px;
    gap: 24px;
    position: relative;
    z-index: 2;
    margin-left: 55px; 
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cronograma-row.tiene-enlace { cursor: pointer; }
.cronograma-row.tiene-enlace:hover {
    transform: translateX(4px); 
    border-color: var(--azul-principal);
    box-shadow: 0 6px 12px rgba(0, 65, 113, 0.04);
}

.cronograma-row::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -35px; 
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid var(--azul-secundario2);
    z-index: 3;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cronograma-row.tiene-enlace:hover::before {
    border-color: var(--color-destacado);
    background-color: var(--color-destacado);
}

.crono-principal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.crono-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--texto);
    opacity: 0.85;
}

.crono-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.crono-meta-item i {
    font-size: 14px;
    color: var(--color-destacado); 
}

.crono-meta-fecha {
    color: var(--azul-principal);
    font-weight: 700;
}
.crono-meta-fecha i {
    color: var(--azul-secundario1); 
}

.crono-titulo {
    font-size: 20px;
    font-weight: 700;
    color: var(--azul-principal);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.crono-descripcion {
    font-size: 14px;
    line-height: 1.6;
    color: var(--texto);
    opacity: 0.85;
    text-align: justify;
}

.crono-imagen-chica{
    width:180px;
    height:180px;

    overflow:hidden;

    border-radius:16px;

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.crono-imagen-chica img{
    width:100%;
    height:100%;

    object-fit:contain;
}
.crono-titulo-wrapper{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;

    margin-bottom:12px;
}

.crono-inscripcion{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:8px 14px;

    border-radius:999px;

    background:var(--azul-principal);
    color:#fff !important;

    text-decoration:none;

    font-size:.85rem;
    font-weight:600;

    transition:all .3s ease;
}

.crono-inscripcion:hover{
    background:var(--azul-secundario1);
    color:#fff;

    transform:translateY(-2px);
}
.crono-materiales-wrapper{
    margin-top:20px;
}

.crono-materiales-titulo{
    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:12px;

    font-size:15px;
    font-weight:700;

    color:var(--azul-principal);
}

.crono-materiales-titulo i{
    color:var(--azul-principal);
}

.crono-materiales{
    display:flex;
    flex-wrap:wrap;
    gap:20px;

    margin-top:20px;
}


.crono-material-link{
    display:flex;
    align-items:center;
    gap:8px;

    color:var(--azul-principal);
    text-decoration:none;

    font-size:.95rem;
    font-weight:500;

    transition:color .2s ease;
}

.crono-material-link i{
    color:var(--azul-principal);
    font-size:1rem;
}

.crono-material-link:hover{
    color:var(--color-destacado);
}

.slides-responsive {
    width: min(1600px, 96%);
    margin: 0 auto;
    height: 85vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0,0,0,.15);
    background: #000;
}

.slides-responsive iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.sistema-tag { 
    display: inline-flex; 
    padding: .5rem 1rem; 
    margin-bottom: 1.5rem; 
    border-radius: 999px; 
    background: rgba(255,255,255,.12); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255,255,255,.15); 
    font-size: .82rem; 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase; color: #ffffff;
}

/* Sección del mapa */
.sistemas-home .sistemas-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* SVG */
.sistemas-home .sistemas-container svg {
    width: 100%;
    max-width: 1400px;
    height: auto;
}

.sistemas-container {
    opacity: 0;
    transform: translateY(60px);
    animation: entrarAbajo 1s ease-out forwards;
}

@keyframes entrarAbajo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flecha-activa {
   filter: drop-shadow(0 0 6px rgba(0,120,212,.8));
   opacity: 1 !important;
}


.flecha {
   opacity: .3;
   transition: all .2s ease;
}
.sistema-activo {
   filter: drop-shadow(0 0 15px #ff6600);
}


.sistema-activo rect,
.sistema-activo path,
.sistema-activo polygon {
   transition: all .2s ease;
}
/* Caja seleccionada */
.sistema-activo {
   filter: drop-shadow(0 0 12px #00E5FF);
}


/* Transiciones suaves */
[data-cell-id] {
   transition: all .25s ease;
}

.desactivado {
   opacity: .25;
}

.flecha-opaca {
    opacity: 0.15;
    transition: opacity .25s ease;
}

.flecha-activa {
    opacity: 1 !important;
}

[data-cell-id="leyenda"] {
    opacity: 1 !important;
    filter:
        drop-shadow(0 0 8px rgba(0,120,212,.5))
        drop-shadow(0 0 16px rgba(0,120,212,.3));
}

/*Botón volver*/
.volver-home {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    padding-left: 20px;
}

.btn-volver {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--azul-principal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all .3s ease;
}

.btn-volver i {
    transition: transform .3s ease;
}

.btn-volver:hover {
    color: var(--color-destacado);
}

.btn-volver:hover i {
    transform: translateX(-5px);
}

.usuarios-metrica{
    padding:1rem 0;
    border-top:1px solid #e2e8f0;
    border-bottom:1px solid #e2e8f0;
    text-align:center;
}

.usuarios-metrica__label{
    display:block;
    font-size:.8rem;
    color:#64748b;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.usuarios-metrica__numero{
    display:block;
    margin-top:.4rem;
    font-size:3.5rem;
    font-weight:700;
    color: var(--azul-secundario1);
    line-height:1;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .sistema-icono-preview {
        width: 160px;
        height: 160px;
    }

    .sistema-icono-preview i {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .pagina-header {
        padding: 70px 70px 50px;
    }

    .contenido-editor {
        padding: 30px 24px;
    }

    .pagina-titulo {
        font-size: 30px;
    }

    .contenido-editor h2 {
        font-size: 28px;
    }

    .contenido-editor h3 {
        font-size: 24px;
    }
    .contenido-editor .alignright,
    .contenido-editor .alignleft {
        float: none;
        max-width: 100%;
        margin: 25px 0;
    }

    .contenido-editor .wp-block-gallery {
        grid-template-columns: 1fr;
    }

    .contenido-editor .wp-block-gallery img {
        height: 220px;
    }
    .contenido-editor .wp-block-table table {
        min-width: 700px;
    }

    .contenido-editor .wp-block-separator {
        margin: 36px auto;
    }

    .contenido-editor .wp-block-separator::after {
        width: 12px;
        height: 12px;
    }
        .cronograma-web-list::before {
        left: 15px;
    }
    
    .cronograma-row {
        margin-left: 35px;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }
    
    .cronograma-row::before {
        left: -24px;
    }
    
    .crono-imagen-chica {
        width: 60px;
        height: 60px;
    }

    .sistemas-home .sistemas-container {
        padding: 10px;
        border-radius: 12px;
    }

    .sistemas-home .sistemas-container svg {
        min-width: 1000px;
        width: auto;
    }
    .volver-home {
        margin-top: 40px;
        padding-top: 20px;
    }

    .btn-volver {
        font-size: 1rem;
        gap: 8px;
    }
}


@media (max-width: 468px){
    .contenido-editor .wp-block-table table {
        min-width: 400px;
    }
}

@media (max-width: 1200px) {

    .sistemas-home .sistemas-container {
        justify-content: flex-start;
    }

    .sistemas-home .sistemas-container svg {
        min-width: 1200px;
    }

}

/* ==========================
   TABLET
========================== */

@media (max-width: 1024px) {

    .sistemas-home .sistemas-container {
        justify-content: flex-start;
    }

    .sistemas-home .sistemas-container svg {
        min-width: 1200px;
        width: auto;
    }

}

