@import url("https://fonts.googleapis.com/css2?family=LINE+Seed+JP&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --azul-principal: #1684c7;
    --azul-secundario: #35baf2;
    --azul-tres: #d9f3ff;
    --azul-oscuro: #1f6c9c;
    --texto: #273949;
    --gris-claro: #f4f8fb;
    --celeste-card: #e9f8ff;
    --blanco: #ffffff;
    --sombra: 0 12px 25px rgba(0, 0, 0, 0.08);
    --radio: 14px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Nunito", sans-serif;
    color: #333;
    line-height: 24px;
    font-size: 16px;
}
.ancho {
    max-width: 1200px;
    margin: auto;
    /* border: 1px red solid; */
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
.negritas {
    font-weight: 700;
}
.margen {
    padding: 10px;
}
.azul {
    color: var(--azul-secundario);
}
.margen_izq {
    margin-left: 10px;
}
.margen_der {
    margin-right: 10px;
}
.texto_mediano {
    font-size: 25px;
    line-height: 45px;
}
.contenedor {
    max-width: 1200px;
    width: 95%;
    /* border: 2px red solid; */
    margin: 0 auto;
}

/* BOTONES */
.btn-cita,
.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--azul-secundario);
    color: var(--blanco);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
}
.btn-cita:hover,
.btn-secundario:hover {
    background: var(--azul-principal);
}
.subtitulo {
    color: var(--azul-secundario);
    font-size: 20px;
    font-weight: 700;
}
.titulo-seccion {
    text-align: center;
    margin-bottom: 45px;
}
.titulo-seccion h2 {
    font-size: 48px;
    line-height: 1.1;
    color: var(--azul-oscuro);
    margin: 8px 0 15px;
    font-weight: 800;
}
.titulo-seccion p {
    max-width: 640px;
    margin: 0 auto;
    color: #5a6874;
}

/* HEADER */
.barra-superior {
    border-top: 8px solid var(--azul-principal);
    background: #ffffff;
    padding: 14px 0;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo a {
    display: flex;
    align-items: center;
}
.logo-header-img {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
}
.logo-texto h1 {
    font-size: 24px;
    line-height: 1;
    color: var(--azul-oscuro);
    font-weight: 700;
}
.logo-texto p {
    font-size: 11px;
    color: #6a7884;
    letter-spacing: 1px;
    margin-top: 4px;
}
.header-derecha {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.iconos-contacto,
.redes-sociales {
    display: flex;
    align-items: center;
    gap: 10px;
}
.iconos-contacto a,
.redes-sociales a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--azul-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-oscuro);
    transition: 0.3s ease;
}
.redes-sociales a {
    background: var(--azul-oscuro);
    color: #fff;
    border: none;
}
.iconos-contacto a:hover,
.redes-sociales a:hover {
    transform: translateY(-2px);
    color: var(--azul-secundario);
}
.idioma {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #5c6b77;
    font-weight: 600;
}
.idioma img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

/* MENU */
.barra-menu {
    background: #eef7fc;
    border-top: 1px solid #e2edf4;
    border-bottom: 1px solid #e2edf4;
}
.menu-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 68px;
    position: relative;
}
.menu > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.menu > ul > li {
    position: relative;
}
.menu > ul > li > a {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}
.menu > ul > li > a:hover {
    color: var(--azul-principal);
}
.btn-menu {
    display: none;
    background: var(--azul-principal);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

/* SUBMENU DESKTOP */
.has-submenu {
    position: relative;
}
.has-submenu > a {
    display: flex;
    align-items: center;
}
.has-submenu > a i {
    transition: all 0.3s ease;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 50;
}
.submenu li {
    width: 90%;
    margin: auto;
    border-bottom: 2px dotted #333;
}
.submenu li a {
    display: block;
    width: 100%;
    padding: 12px 18px;
    color: #4f6474;
    font-size: 15px;
    transition: all 0.25s ease;
}
.submenu li a:hover {
    background: #eef7fc;
    color: var(--azul-principal);
}
@media screen and (min-width: 1025px) {
    .has-submenu:hover > .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .has-submenu:hover > a i {
        transform: rotate(180deg);
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-fondo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 94, 145, 0.7);
}
.hero-contenido {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero-contenido h2 {
    width: 100%;
    border: 1px transparent solid;
}
.hero-etiqueta {
    display: inline-block;
    color: var(--azul-secundario);
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.hero h2 {
    border: 1px green solid;
    font-size: 70px;
    line-height: 1.05;
    font-weight: 800;
    max-width: 620px;
}
.hero p {
    font-size: 34px;
    margin: 8px 0 28px;
    font-weight: 500;
}
.hero-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
}
.hero-flecha-izq {
    left: 20px;
}
.hero-flecha-der {
    right: 20px;
}

/* SERVICIOS */
.servicios {
    padding: 34px 0 10px;
    background: #fff;
    position: relative;
    z-index: 3;
}
.servicios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}
.servicio-card {
    width: calc(33.333% - 15px);
    min-width: 290px;
    background: var(--azul-tres);
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.3s ease;
}
.servicio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra);
}
.servicio-card2 {
    width: calc(33.333% - 15px);
    min-width: 290px;
    background: var(--azul-tres);
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: 0.3s ease;
}
.servicio-card2:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra);
}
.servicio-icono {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67cfee;
    font-size: 35px;
    flex-shrink: 0;
}
.servicio-info {
    width: 100%;
}
.servicio-info h3 {
    font-weight: 700;
    font-size: 22px;
    color: #2b3945;
    margin-bottom: 6px;
}
.servicio-info p {
    font-size: 14px;
    color: #62717d;
}

/* NOSOTROS */
.nosotros {
    padding: 70px 0 85px;
}
.nosotros-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}
.nosotros-flex2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}
.nosotros-galeria,
.nosotros-texto {
    width: 45%;
}
.nosotros-galeria img {
    width: 100%;
    border-radius: 10px;
}
.nosotros-texto h2 {
    font-size: 58px;
    line-height: 1.02;
    color: var(--azul-oscuro);
    font-weight: 800;
    margin: 8px 0 20px;
}
.nosotros-texto p {
    color: #596975;
    margin-bottom: 24px;
}
.lista-columnas {
    display: flex;
    gap: 40px;
    margin-bottom: 28px;
}
.lista-columnas ul li {
    margin-bottom: 10px;
    color: #304252;
    font-weight: 500;
}
.lista-columnas ul li i {
    color: #63d1f0;
    margin-right: 8px;
}

/* TESTIMONIALES */
.testimoniales {
    padding: 80px 0;
    background: #f7fbfe url("../imagenes/fondo_azul_bajo.jpg") no-repeat center
        center;
    background-size: cover;
}
.testimoniales-flex {
    display: flex;
    gap: 26px;
    justify-content: center;
}
.slide-container {
    overflow: hidden;
    padding-bottom: 50px;
}
.card-wrapper {
    align-items: stretch;
}
.testimonial-card {
    width: auto;
    height: auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--sombra);
    padding: 38px 34px 28px;
}
.testimonial-card p {
    color: #5b6771;
    min-height: 118px;
}
.testimonial-footer {
    border-top: 1px solid #d8dfe5;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.testimonial-footer h3 {
    color: #2d3c48;
    margin-bottom: 4px;
}
.testimonial-footer span {
    color: var(--azul-secundario);
    font-size: 16px;
    font-weight: 600;
}
.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #dff5ff;
    border: 8px solid #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-oscuro);
    font-weight: 700;
    object-fit: cover;
}
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4dde5;
}
.dots .activo {
    background: var(--azul-secundario);
}

/* BLOG */
.blog {
    padding: 80px 0 95px;
    background: #fff;
}
.blog-wrapper {
    position: relative;
}
.blog-flex {
    display: flex;
    gap: 26px;
}
.blog-card2 {
    background: #f7fafc;
    width: 30%;
}
.blog-card {
    background: #f7fafc;
    overflow: hidden;
    width: 100%;
}
.blog-imagen {
    position: relative;
    width: 100%;
}
.blog-imagen img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--azul-secundario);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}
.blog-contenido {
    padding: 18px 18px 24px;
}
.blog-contenido small {
    display: block;
    text-align: right;
    color: #72818b;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: bold;
}
.blog-contenido h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #2f4a5f;
    margin-bottom: 14px;
    font-weight: 700;
}
.blog-contenido p {
    color: #61727f;
    margin-bottom: 18px;
}
.blog-contenido a {
    padding: 10px 10px 10px 0px;
    color: #3ec3f4;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}
.blog-contenido a:hover {
    margin-left: 10px;
}
.blog-flecha {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #46c8f7;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}
.blog-flecha-izq {
    left: -18px;
}
.blog-flecha-der {
    right: -18px;
}

/* FOOTER */
.footer-top {
    position: relative;
    background: url("../imagenes/fondo_footer.jpg") no-repeat center center;
    background-size: cover;
    background-position: center center;
    padding: 20px 0;
    overflow: hidden;
}
.footer-flex {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.footer-logo,
.footer-enlaces,
.footer-contacto {
    width: 33.333%;
}
.footer-logo {
    display: flex;
    align-items: center;
    max-width: 320px;
}
.footer-logo img {
    width: 100%;
    display: block;
}
.footer-logo-texto h3 {
    color: #fff;
    font-size: 38px;
    line-height: 1;
}
.footer-redes {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-redes a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #4bbff1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-redes a:hover {
    transform: translateY(-2px);
    color: var(--azul-oscuro);
}
.footer-enlaces {
    max-width: 300px;
}
.footer-enlaces ul li {
    margin-bottom: 10px;
}
.footer-enlaces ul li a {
    color: #e8f8ff;
    font-size: 16px;
    transition: all 0.3s ease;
}
.footer-enlaces ul li a:hover {
    text-decoration: underline;
}
.footer-enlaces ul li a i {
    margin-right: 8px;
}
.footer-contacto p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}
.footer-contacto p i {
    margin-right: 8px;
}
.footer-urgencias {
    margin-top: 16px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    width: fit-content;
}
.footer-urgencias span {
    display: block;
    color: var(--azul-oscuro);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}
.footer-urgencias a {
    color: var(--azul-principal);
    font-weight: 700;
    font-size: 18px;
}
.footer-bottom {
    background: #35b6ef;
    text-align: center;
    padding: 10px;
}
.footer-bottom p {
    color: #fff;
    font-size: 14px;
}

.bolsa_trabajo a {
    display: inline-block;
    color: #1684c7;
    font-size: 14px;
    border: #1684c7 2px solid;
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}
.bolsa_trabajo a:hover {
    background-color: var(--azul-oscuro);
    color: white;
}
/* BOTON SUBIR */
.btn-subir {
    position: fixed;
    right: 18px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #46c8f7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}
/* slide fotos */
.caption {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    width: 75%;
    transform: translate(-50%, -50%);
    text-align: left;
    padding: 5px;
}
/* CSS secciones */
.fondo_cabecera {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.fondo1 {
    background-image: url(../imagenes/fondo_blog.jpg);
    background-size: cover;
    background-position: center center;
}
.fondo2 {
    background-image: url(../imagenes/fondo_quienes.jpg);
    background-size: cover;
    background-position: center center;
}
.fondo3 {
    background-image: url(../imagenes/fondo_centro_especialidades.jpg);
    background-size: cover;
    background-position: center center;
}
.fondo4 {
    background-image: url(../imagenes/fondo_servicios_medicos.jpg);
    background-size: cover;
    background-position: center center;
}
.fondo5 {
    background-image: url(../imagenes/fondo_especialidades_medicas.jpg);
    background-size: cover;
    background-position: center center;
}
.fondo6 {
    background-image: url(../imagenes/fondo_pacientes.jpg);
    background-size: cover;
    background-position: center center;
}
.fondo7 {
    background-image: url(../imagenes/fondo_contacto.jpg);
    background-size: cover;
    background-position: center center;
}
.fondo8 {
    background-image: url(../imagenes/fondo_bolsa_trabajo.jpg);
    background-size: cover;
    background-position: center center;
}
.filtro {
    background: rgba(13, 94, 145, 0.7);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.infocabecera_blog {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.foto_blog_noticia {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.centrar {
    text-align: center;
}
.contenedor_titulocabecera h2 {
    font-size: 40px;
    line-height: 40px;
    color: white;
    padding: 10px;
}
.btn_leermas {
    color: var(--azul-principal);
    text-decoration: underline;
    font-weight: bold;
}
.estructura_blogs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.contenedor_paginacion {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.contenedor_paginacion a {
    text-decoration: underline;
    color: var(--azul-principal);
    transition: all 0.5s linear;
}
.contenedor_paginacion a:hover {
    text-decoration: underline;
    color: var(--azul-oscuro);
}
.info_noticia img {
    width: 400px;
    margin: auto;
    border-radius: 15px;
}
.fecha {
    text-align: right;
    font-weight: bold;
}
.contenedor_noticia_blog {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}
.info_noticia {
    width: 65%;
}
.contenedor_noticias_anteriores {
    width: 30%;
}
.textomediano {
    font-size: 30px;
    line-height: 30px;
}
.quitar {
    margin-bottom: 10px;
}
/* especialidades */
.area_especialidades {
    max-width: 300px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}
.area_especialidades p {
    text-align: left;
}
.titulo_area_especialidades {
    padding: 20px 10px 5px 10px;
    color: var(--azul-principal);
    font-size: 20px;
}
.mas_elementos {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px;
}
.linea {
    border: 0;
    background-color: var(--azul-secundario);
    height: 7px;
    width: 100px;
    margin: auto;
    margin-bottom: 20px;
}
.foto_area_especialidades {
    width: 100%;
    border-radius: 15px;
}
.borde_servicios {
    border: 5px white solid;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
/* especialidades */
.subrayar {
    text-decoration: underline;
}
.alinear_redes {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.contenedor_doctores_especialidades {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    background-color: var(--celeste-card);
}
.contenedor_doctores_especialidades article {
    max-width: 320px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    line-height: 30px;
    padding-bottom: 20px;
}
.contenedor_doctores_especialidades article img {
    width: 100%;
    border-radius: 10px;
}
.contenedor_doctores_especialidades article h3 {
    color: var(--azul-principal);
    font-size: 18px;
    margin: 10px 0 5px;
    text-align: center;
}
.contenedor_doctores_especialidades article p {
    color: #333;
    font-size: 14px;
    text-align: justify;
}
.contenedor_doctores_especialidades article a {
    margin-top: 10px;
    color: #333;
}
.blanco {
    color: #fff;
}
.negro {
    color: #333;
}
/* agendarcita */
.contenedor_agendar {
    width: 100%;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--azul-tres);
}
.contenedor_agendar input {
    padding: 10px 10px 10px 30px;
    border: 0;
    height: 40px;
    width: 90%;
    margin: 0;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contenedor_agendar button {
    background-color: var(--azul-principal);
    color: white;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    transition: all 0.5s linear;
    cursor: pointer;
    width: 100%;
    display: inline-block;
}
.contenedor_agendar button:hover {
    background-color: var(--azul-oscuro);
}
.contenedor_agendar select {
    padding: 10px 10px 10px 30px;
    border: 0;
    height: 40px;
    width: 90%;
    margin: 0;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contenedor_agendar textarea {
    padding: 10px 10px 10px 30px;
    resize: none;
    border-radius: 10px;
    width: 90%;
    border: 0;
    min-height: 130px;
    font-family: "Nunito", sans-serif;
    margin-bottom: 20px;
}
/* file */
.file-select {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.iconopdf {
    position: absolute;
    left: -40px;
    right: 0;
    top: 15px;
    bottom: 0;
    font-size: 22px;
    color: #2db2e5;
    width: 70%;
}
.file-select::before {
    border: 0;
    width: 100%;
    background-color: white;
    border-radius: 30px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    content: "ADJUNTAR CV"; /* testo por defecto */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.file-select:hover .iconopdf {
    color: #1e5b97;
}
.icon-file-pdf:before {
    content: "\eadf";
    position: absolute;
    left: 20%;
    right: 0;
    top: 20%;
    font-size: 20px;
    bottom: 0;
}
.file-select input[type="file"] {
    opacity: 0;
    width: 200px;
    height: 32px;
    display: inline-block;
}
.contenedor_centrar {
    display: flex;
    justify-content: center;
}
/* captcha */
#codigo {
    color: var(--azul-oscuro);
    font-weight: bold;
}
#seguridad {
    padding: 10px 5px 0px 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}
#seguridad img {
    display: inline-block;
}
#seguridad #security_code {
    max-width: 80px;
}
.capt {
    width: 100px !important;
}
.justificar {
    text-align: justify;
}
.circulo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #1e5b97;
    border: 1px var(--azul-oscuro) solid;
    transition: all 0.5s;
}
.circulo:hover {
    background-color: var(--azul-oscuro);
    color: white;
}
.circulo a {
    text-decoration: none;
}
.contenedorpaginacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.page-item.active {
    background-color: var(--azul-oscuro);
    color: white !important;
    transition: all 0.5s;
}
#seguridad img {
    max-width: 120px;
}
article.info_noticia ul {
    list-style: revert;
    margin: revert;
    padding-left: revert;
}
