/***Estilos generales inicio***/

/*@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');*/

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

/**Estilos texto inicio**/

body {
  font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
.sp-megamenu-parent > li > a,
.sppb-btn,
.itemid-327 .sppb-panel-title,
.sp-megamenu-parent > li > span.sp-menu-heading,
.offcanvas-menu .offcanvas-inner ul.menu li,
#sp-bottom .sp-module .sp-module-title,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a,
.mod_timeline_item_title,
.timeline_year,
.sppb-nav-modern > li.active > a,
.sppb-nav-modern > li > a,
.box_numbers .number .num p,
.mod_timeline_item_title2,
.sppb-btn-custom,
#lnee_159 .items_pagination.pagination a,
#lnee_159 .items_pagination .pagination a {
  /*
  font-family: 'Oswald', sans-serif;
  */
  font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.3rem;
  color: #1d7fa7;
}

h2 {
  font-size: 2.375rem;
  color: #046790;
}

h3 {
  font-size: 2rem;
  color: #333333;
}

.box_info_icons h3,
.box_sectores_medicion h3 {
  font-size: 1.1rem;
}

.box_materiales h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.625rem;
}

h5 {
  font-size: 1.375rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  color: #28353A;
}

p.texto-resaltado {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e4862;
}

a {
  font-weight: 500;
  color: #1d7fa7;
}

a:hover {
  text-decoration: underline;
  color: #0e4862;
}

a:visited {
  color: #370e62;
}

small {
  font-size: 0.844rem;
}

ul li {
  margin-bottom: 0.8rem;
}

ul li::marker {
  color: #0e4862;
}

.mod-custom.custom p,
.ayudatxt p,
/*
 .visitas-txt p,*/
#conozca-info p,
#sppb-addon-aa3da1f9-61bb-46a4-b65d-4d25f2fc293f p {
  color: #ffffff;
}

/**Estilos texto fin**/

/**Estilos Botones inicio**/

.sppb-button-wrapper {
  margin-top: 16px;
}

.sppb-btn.btn-primario,
.sppb-btn.btn-secundario,
.slider-censo .btn-primario a,
.items_pagination .pagination a {
  gap: .8rem;
  display: flex;
  width: fit-content;
  align-items: center;
  font-weight: 600;
  padding: .65rem 1rem;
  border-radius: 50px !important;
}

.sppb-btn.btn-primario,
.items_pagination .pagination a{
  background-color: #fcd55f;
  color: #0e4862;
}

.sppb-btn.btn-primario:hover,
.items_pagination .pagination a:hover{
  background-color: #0e4862;
  color: #fcd55f;
}

.sppb-btn.btn-secundario{
  background-color: #1D7FA7;
  color: #ffffff;
}

.sppb-btn.btn-secundario:hover{
  background-color: #1BBE9E;
  color: #ffffff;
}

.slider-censo .btn-primario a {
  transition: all .15s ease-in-out !important;
}

/*
.items_pagination.pagination a,
.items_pagination .pagination a {
  background-color: #fcd55f;
  color: #0e4862;
  font-weight: 600;
}

.items_pagination.pagination a,
.items_pagination .pagination a,
.items_pagination .page_link.active_page a {
  border-radius: 4px;
}

*/

.items_pagination .page_link.active_page a,
.items_pagination .page_link.active_page a:hover {
  background-color: #a2cee1;
  border-color: #a2cee1;
  color: #0e4862;
}

.sppb-btn-custom:hover,
.items_pagination.pagination a:hover,
.items_pagination .pagination a:hover {
  background-color: #0e4862;
  color: #fcd55f;
}

.btn-outlined-cenu,
.btn-outlined-cenu:visited {
  background-color: #fff;
  color: #0e4862;
  font-weight: 600;
  border: 1px solid #0e4862;
}

.btn-outlined-cenu:hover {
  background-color: #cee0e8;
  color: #0e4862;
}

.example-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-primario-80);
  color: white !important;
  padding: 10px 20px;
  border-radius: 32px;
  text-align: center;
  cursor: pointer;
  animation: pulse 2s infinite;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.example-button:hover {
  background-color: var(--color-primario);
  color: white !important;
  transform: translateY(-2px);
}

.example-button:active {
  transform: translateY(2px);
  /* Movimiento hacia abajo al hacer clic */
}

@-webkit-keyframes pulse {
  0% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 1);
      /* Azul sólido */
  }

  50% {
      -webkit-box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
      /* Se expande y desaparece */
  }

  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
      /* Vuelve a la inicial */
  }
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 1);
      /* Azul sólido */
  }

  50% {
      box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
      /* Se expande y desaparece */
  }

  100% {
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
      /* Vuelve a la inicial */
  }
}

/**Estilos Botones fin**/

/**Estilos Barra gobierno inicio**/

.TopbarGobierno {
  background: #0943b5;
  height: 48px;
  /* Ajustado a auto para que se adapte al contenido */
  display: flex;
  align-items: center;
}

.TopbarGobierno .container-topbar {
  width: 100%;
  overflow: hidden;
  /* Para contener los floats */
}

#mod-custom144 img {
  height: 24px;
}

#mod-custom145 {
  float: right;
}

#mod-custom144 p,
#mod-custom145 p {
  margin-bottom: 0 !important;
}

.TopbarGobierno .clusterEnlaces {
  text-align: center;
  /* Centrar los enlaces */
  overflow: hidden;
  /* Limpiar floats */
}

.TopbarGobierno .clusterEnlaces a {
  color: #fff;
  /* Color blanco */
  display: inline-block;
  /* Mostrar como elemento en línea con bloque */
  margin-left: 20px;
  text-decoration: none;
  font-weight: normal;
  line-height: 1;
  /* Centrar el texto a nivel de interlínea */
}

.TopbarGobierno .clusterEnlaces a:hover {
  text-decoration: underline;
}

/**Estilos Barra gobierno fin**/

/**Estilos Header inicio**/

/*
 #sp-header, #sp-header-topbar {
    background-color: #1D7FA7;
}
*/

#sp-header-topbar {
  padding-top: 24px;
}

#sp-contact {
  width: 100%;
}

#sp-header-topbar #mod-custom123 p {
  float: left;
}

#sp-header-topbar #mod-custom122 p {
  float: right;
}

#sp-header-topbar #mod-custom123 img {
  width: 200px;
}

#sp-header-topbar #mod-custom123 .logos-dane {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

#sp-header-topbar #mod-custom123 .logos-dane p {
  margin-bottom: 0;
}

#sp-header-topbar #mod-custom123 .separador-logos {
  border-right: 1px solid #0e4862;
  height: 50px;
  margin: 0 1.5rem;
}

#sp-header-topbar #mod-custom122 img {
  width: 250px;
}

#sp-logo {
  display: block !important;
}

#sp-header-topbar .container-inner {
  border-bottom: 0px solid #e5e5e5;
}

/*
.sp-dropdown.sp-dropdown-main.sp-menu-right {
    left: -8px !important;
}
*/
.sp-megamenu-parent > li > a,
.sp-megamenu-parent > li > span.sp-menu-heading {
  /*
      color: #fff;
    border-bottom: 1px solid #FCD55F;
      width: 160px;
  */
  padding: 0px 0.8rem !important;
  text-align: center;
  line-height: 2.5;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  line-height: 1.2;
}

.sp-megamenu-parent>li.active a,
.sp-menu-item.sp-has-child.active span.sp-menu-heading {
  background-color: #ffffff;
  color: #0e4862;
  font-weight: 800;
  border-bottom: 2px solid #059397;
  text-decoration: none !important;
}

.sp-megamenu-parent > li > a:hover,
.sp-megamenu-parent > li > span.sp-menu-heading:hover {
  color: #0e4862;
  border-bottom: 1px solid #0e4862;
  text-decoration: none !important;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.sp-dropdown .sp-dropdown-inner {
  background-color: #046790 !important;
  color: #ffffff !important;
  padding: 0 !important;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  padding: 10px;
  width: 100%;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a{
  color: #ffffff;
  background: #046790;
  border-bottom: none;
  font-weight: 600;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item  > a:hover{
  background-color: #0e4862;
  color: #ffffff;
  text-decoration: none;
}

.sp-megamenu-parent .sp-has-child li.sp-menu-item.active > a,
.sp-megamenu-parent .sp-has-child li.sp-menu-item.active > a:hover  {
  color: #fcd55f;
  background-color: #0e4862;
  text-decoration: none;
  font-weight: 800;
}

#pagina-resultados .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  float: right;
  margin-left: 7px;
  font-weight: 900;
  color: #ffffff;
}

li.sp-menu-item .quitar_link_externo:after {
  content: none;
  display: none;
}

li.sp-menu-item > a.menu-resultados {
  background-color: #fcd55f;
  color: #0e4862;
  text-decoration: none !important;
}

li.sp-menu-item > a.menu-resultados:hover{
  background-color: #1BBE9E;
  color: #FFFFFF;
  border-bottom: 1px solid #0e4862;
  text-decoration: none !important;
}

/**Offcanvas-menu inicio**/

#sp-header.lg-header #offcanvas-toggler {
  margin-right: 0;
  margin-left: 0;
  padding-bottom: 1em;
}

#sp-header.lg-header .logo {
  height: auto;
  display: none;
}

a#offcanvas-toggler .burger-icon {
  width: 52px;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  background-color: #046790;
}

a#offcanvas-toggler:hover .burger-icon {
  background-color: #124156;
  transition: background-color 0.3s ease;
}

.burger-icon > span {
  background-color: #fcd55f;
}

.offcanvas-menu .offcanvas-inner ul.menu li.active a {
  color: #046790 !important;
  text-decoration: underline;
}

.offcanvas-menu .offcanvas-inner ul.menu > li a:hover,
.offcanvas-menu .offcanvas-inner ul.menu > li a:focus,
.offcanvas-menu .offcanvas-inner ul.menu > li span:hover,
.offcanvas-menu .offcanvas-inner ul.menu > li span:focus {
  color: #0e4862;
}

body.ltr .offcanvas-menu .offcanvas-inner ul.menu > li ul {
  margin: 10px 10px 0 10px;
}

.offcanvas-menu .offcanvas-inner ul.menu-child li {
  margin-bottom: 10px;
}

/**Offcanvas-menu fin**/

/**Estilos Header fin**/

/**Estilos footer inicio**/

.img-title_footer img {
  float: left;
  width: 33px;
  margin-right: 10px;
}

#mod-custom93 .img-title_footer img {
  margin: 0 10px 0 0;
}

.content-footer {
  margin-left: 43px;
}

.img-title_footer .sp-module-title {
  width: 90%;
}

#mod-custom93 img {
  margin: 2.5rem auto;
}

.link-container p {
  margin-bottom: 0;
}

.link-aviso_modal p {
  margin-top: 1.5rem;
}

.link-aviso_modal p a {
  font-size: 1.1rem;
  font-weight: bold;
}

.link-aviso_modal p a:hover {
  color: #fcd55f;
}

ul.social-icons > li:not(:last-child) {
  margin-right: 36px;
}

ul.social-icons > li {
  display: inline-block;
  line-height: 1.5;
  font-size: 1.5rem;
  color: #ffffff;
}

ul.social-icons > li.social-icon-twitter svg {
  width: 25px !important;
}

.social-icon-pinterest,
.social-icon-flickr {
  display: none !important;
}

#sp-footer a,
#sp-bottom a {
  color: #ffffff;
}

#sp-footer a:hover,
#sp-bottom a:hover {
  color: #fcd55f;
}

/**Estilos footer fin**/

.h_grp-border,
.section_grp-border {
  border-radius: 16px;
  background-color: #fff;
  box-shadow: none;
  border: solid 2px #6eb4d2;
}

.section_grp-border {
  padding: 1.7rem 2rem;
}

.section_grp-border ul {
  margin-bottom: none;
}

.section_grp-border.txt-important p {
  margin-bottom: 0 !important;
  color: #1d7fa7;
  font-weight: 700;
}

.section_divider-border {
  border-bottom: solid 1px #f8c606;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/***Estilos generales fin***/

/***Estilos home inicio***/

.fondo-mensaje {
  background-color: #fff8df;
  padding: 1rem;
  margin-bottom: 0;
}

/**Galería home inicio**/

.photo-grid-compact {
  display: grid;
  gap: 0.3rem;
}

.photo-grid-compact .item {
  position: relative;
  overflow: hidden;
  background: #f2f4f7;
  margin-bottom: 0;
}

.photo-grid-compact .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-grid-compact .item:hover img {
  transform: scale(1.03);
}

/* --- Mobile (≤767px): 2 columnas --- */
@media (max-width: 767.98px) {
  .photo-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 40vw;
  }

  .photo-grid-compact .item-a,
  .photo-grid-compact .item-b {
    grid-column: span 2;
  }
}

/* --- Desde md (≥768px): layout tipo collage --- */
@media (min-width: 768px) {
  .photo-grid-compact {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 5vw;
  }

  /* A: grande superior izquierda (6x4) */
  .item-a {
    grid-column: 1 / span 6;
    grid-row: 1 / span 4;
  }

  /* B: vertical derecha (6x8) */
  .item-b {
    grid-column: 7 / span 6;
    grid-row: 1 / span 8;
  }

  /* C, D, E, F: pequeñas abajo a la izquierda (6x2 cada una) */
  .item-c {
    grid-column: 1 / span 3;
    grid-row: 5 / span 2;
  }

  .item-d {
    grid-column: 4 / span 3;
    grid-row: 5 / span 2;
  }

  .item-e {
    grid-column: 1 / span 3;
    grid-row: 7 / span 2;
  }

  .item-f {
    grid-column: 4 / span 3;
    grid-row: 7 / span 2;
  }
}

/**Galería home fin**/

#section-id-2e8e5a3f-c684-48e5-a16f-cc64ff04abcf {
  /*
     height: 260px;*/
  margin-bottom: 100px;
  background-color: #1d7fa7;
}

.itemid-325 #sp-main-body {
  margin-top: 0px;
}

.grp-v-align .sppb-row.sppb-nested-row {
  align-items: center;
}

.seccion-censo {
  position: relative;
  top: 64px;
  height: auto;
  padding: 2.5rem 3rem 2.2rem 3rem;
}

.datos-relevantes .card_dato {
  padding: 1rem;
  text-align: center;
  border: 1px solid #28353a;
  border-radius: 1rem;
  /*height: 230px;*/
}

.datos-relevantes .card_dato img {
  border-radius: 0px;
  margin-top: -3rem;
  margin-bottom: 1rem;
  width:100px;
  background-color:#ffffff;
  padding: 0 1rem;
}

#sppb-addon-dee6c27b-a070-4533-979a-a819cba1f3da::after{
  display:none;
}

.datos-relevantes .card_dato h2 {
  color: #0e4862;
  margin: 0.25rem 0 0.5rem 0;
}

/**Línea de tiempo inicio**/

#column-wrap-id-020c081e-3863-4363-8eed-b5ce72c56b2a {
  max-width: 110%;
  margin-left: -5%;
  width: 110%;
}

/*
 .timeline_131.is_timeline_ht1 .timeline__content {
    background: #E9F5FA !important;
    border: none !important;
    border-radius: 10px;
    text-align: center;
}
*/

.timeline_131.is_timeline_ht1 .timeline__content {
  background: transparent !important;
  border: none !important;
  text-align: center;
  padding: 0;
}

.timeline_131.is_timeline_ht1 .mod-articles-category-introtext {
  color: #333;
  background-color: #fff;
  padding: 40px 16px 16px 16px;
  border-radius: 10px;
  margin-top: -44px;
}

.timeline--horizontal .timeline__item--bottom {
  padding: 5.2rem 0 0;
}

.is_articletimeline .mod-articles-category-introtext {
  margin: 0;
}

.mod_timeline_item_title2 {
  color: #0e4862;
  font-size: 1.3rem;
  line-height: 1.4rem;
  margin-bottom: 4px;
}

.timeline__content p {
  margin-bottom: 0px;
}

.mod_timeline_item_title,
.timeline_131.is_timeline_ht1
  .timeline--horizontal
  .timeline__item--top
  .timeline__content:after,
.timeline_131.is_timeline_ht1
  .timeline--horizontal
  .timeline__item--top
  .timeline__content:before,
.timeline--horizontal .timeline__item--bottom .timeline__content:after,
.timeline--horizontal .timeline__item--bottom .timeline__content:before {
  display: none;
}

.is_timeline_ht1 .timeline__item--top .year_box {
  bottom: -65px;
}

.is_timeline_ht1 .timeline__item--bottom .year_box {
  top: -65px;
}

.year_box.year_ahead {
  margin-top: -80px;
}

.timeline_131 .year_box .timeline_year {
  background: #ffffff !important;
  color: #0e4862 !important;
  font-size: 1.45rem;
}

.newsflash-image {
  text-align: center !important;
  overflow: visible !important;
  margin: 0 -20px 12px !important;
}

.timeline__item--bottom .newsflash-image img {
  display: inline-block;
  margin-top: -50px;
  width: 25%;
}

.newsflash-image img {
  display: inline-block;
  width: 25%;
}

.timeline_131 .timeline-nav-button {
  border: 2px solid #f8c606 !important;
}

.timeline-nav-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.timeline_131 .timeline-nav-button,
.timeline_131 .timeline--horizontal .timeline-divider {
  background-color: #f8c606 !important;
}

.timeline_131 .timeline__item:after {
  background-color: #f8c606 !important;
  border: 4px solid #f8c606 !important;
}

.timelinecon {
  position: relative;
  top: -100px;
}

.timelinecon h2,
.home-groups h2 {
  font-weight: 900;
  font-size: 2.9rem !important;
  line-height: 3rem !important;
}

/**Línea de tiempo fin**/

#h_autod {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

#h_autod .h_content-group #column-id-4aa9b11d-2517-471e-9797-5fd8e3122a04 {
  padding: 0 0 0 36px;
}

#h_autod .sppb-addon-single-image img {
  position: relative;
  top: -80px;
  left: 66px;
}

/* 
 #h_voz,
 #h_visitas {
     background-color: #0E4862;
     box-shadow: 0 0 0 0 #FFFFFF;
     padding-top: 24px;
 }
*/

#h_voz,
#conozca-info {
  background-color: #0e4862;
  box-shadow: 0 0 0 0 #ffffff;
  padding-top: 24px;
}

#conozca-info .sppb-addon-single-image-container {
  top: 50px;
}

.ayudaimg {
  position: relative;
  top: -46px;
}

#h_preguntas {
  margin: 5rem 0;
}

.preguntas {
  padding: 3rem;
  /*height: 430px;*/
}

/*
  .preguntas, .video-preguntas {
    padding: 3rem;
}*/

#sppb-addon-wrapper-3a88d15c-620e-4540-970b-35f393e1e0b6 {
  margin-top: -5rem;
}

#h_preguntas .sppb-addon-single-image {
  position: relative;
  top: 30px;
}

#h_preguntas li p {
  margin-bottom: 0;
}

#h_visitas.h_content-group {
  margin: 4rem 0;
}

#h_visitas .sppb-button-wrapper {
  text-align: left;
}

/***Estilos home fin***/

/***Estilos Sección Sobre el CENU inicio***/

.sppb-section.para_que_sirve {
  z-index: 10 !important;
}

.b-radius img {
  border-radius: 16px !important;
}

.box_principal_meta .sppb-row .sppb-row-column:nth-child(1) {
  margin-bottom: 24px;
}

.box_objetivos .box_numbers .number {
  display: flex;
  gap: 20px;
}

.box_numbers .number .num p,
.number .box_number .sppb-addon-content p {
  background: #fcd55f;
  border-radius: 50px;
  width: 44px;
  height: 44px;
}

.box_numbers .number .num p {
  color: #0e4862;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
}

.text_center h3.sppb-addon-title {
  text-align: center;
  display: block;
  font-size: 1.7rem;
}

.box_auto {
  width: 90%;
  float: right;
  z-index: 0;
}

.box_economi .economi_img {
  position: absolute;
  top: 60px;
}

.no-medicion .dos-columnas {
  column-count: 2;
}

.no-medicion .dos-columnas li {
  margin: 0 6px;
}

/*
.itemid-325 .sppb-tab:not(.sppb-custom-tab) {
  flex-direction: row;
  display: flex;
}

.itemid-325 .sppb-nav.sppb-nav-tabs {
  display: block;
  width: 25%;
  margin-right: 4%;
}
.itemid-325 .sppb-tab-content {
  width: 70%;
}

.itemid-325 .sppb-tab-content .sppb-tab-content {
  width: 100%;
}
*/
/***Estilos Sección Sobre el CENU fin***/

/***Estilos Autodiligenciamiento inicio***/

.s-auto_iconos ul {
  text-align: left;
  padding-left: 0;
}

.s-auto_iconos ul li {
  display: flex;
  list-style-type: none;
  margin: 8px 0;
  align-items: center;
}

.s-auto_iconos ul li p {
  margin-bottom: 0 !important;
  line-height: 1.7rem;
}

.s-auto_iconos ul li::before {
  content: "";
  float: left;
  margin-right: 8px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  background-size: cover;
}

/*Iconos autodiligenciamiento inicio*/
.s-auto_iconos ul li#auto-transporte::before {
  background-image: url("/images/Autodiligenciamiento-web/sector-transporte.svg");
  background-repeat: no-repeat;
}

.s-auto_iconos ul li#auto-safp::before {
  background-image: url("/images/Autodiligenciamiento-web/sector-safp.svg");
  background-repeat: no-repeat;
}

.s-auto_iconos ul li#auto-construccion::before {
  background-image: url("/images/Autodiligenciamiento-web/sector-construccion.svg");
  background-repeat: no-repeat;
}

.s-auto_iconos ul li#auto-pyme::before {
  background-image: url("/images/Autodiligenciamiento-web/sector-pyme.svg");
  background-repeat: no-repeat;
}

.s-auto_iconos ul li#est-web::before {
  background-image: url("/images/Autodiligenciamiento-web/sector-estweb.svg");
  background-repeat: no-repeat;
}

/*Iconos autodiligenciamiento fin*/

/** Tabs inicio **/

.sppb-nav-modern > li > a {
  color: #046790;
}

.sppb-nav-modern > li.active > a,
.sppb-nav-modern > li > a {
  font-size: 1.25rem;
}

.sppb-nav-modern > li > a:hover {
  background-color: #cee3ec;
  color: #0e4862;
}

.sppb-nav-modern > li.active > a,
.sppb-nav-modern > li.active > a:focus,
.sppb-nav-modern > li.active > a:hover {
  background-color: #0e4862;
  color: #f8c606;
}

.sppb-nav-modern > li > a {
  border-top: 2px solid #6eb4d2;
  border-left: 2px solid #6eb4d2;
  border-right: 2px solid #6eb4d2;
}

.tabs-recoleccion .tabcon {
  border-top: 2px solid #6eb4d2;
}

/** Tabs inicio **/

.infografias {
  text-align: center;
}

.galeriat p {
  display: none;
}

.infografias img {
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}

.info-card {
  margin-bottom: 24px;
}

/***Estilos Autodiligenciamiento fin***/

/***Estilos Visitas a negocios inicio***/

/**Iconos visitas negocio inicio**/
.s-auto_iconos ul li#visita-ubicacion::before {
  background-image: url("/images/visitas-negocios/icono_ubicacion.svg");
  background-repeat: no-repeat;
}

.s-auto_iconos ul li#visita-personal::before {
  background-image: url("/images/visitas-negocios/icono_personal-ocupado.svg");
  background-repeat: no-repeat;
}

.s-auto_iconos ul li#visita-cyg::before {
  background-image: url("/images/visitas-negocios/icono_costos.svg");
  background-repeat: no-repeat;
}

.s-auto_iconos ul li#visita-ingresos::before {
  background-image: url("/images/visitas-negocios/icono_ingresos.svg");
  background-repeat: no-repeat;
}

/**Iconos visitas negocio fin**/

.visitas-video,
.mensaje_reciba-dane .txt_reciba-dane {
  background-color: #0e4862;
}

.pasos-tarjeta {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.pasos-numero .number {
  display: flex;
  justify-content: space-around;
}

.pasos-info {
  text-align: center;
}

.pasos-txt {
  display: flex !important;
  text-align: left;
  height: 124px;
  padding: 1.5rem 1.5rem 1rem;
  background-color: #fff;
  align-items: center;
  border-radius: 1rem;
}

.mensaje_reciba-dane .sppb-row-container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.mensaje_reciba-dane .txt_reciba-dane p {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
}

.mensaje_reciba-dane .txt_reciba-dane {
  text-align: center;
  padding: 2rem 15rem 4rem 15rem;
}

.mensaje_reciba-dane .img_reciba-dane {
  width: 50%;
  text-align: center;
  margin: -3.8rem auto 1rem auto;
}

/***Estilos Visitas a negocios fin***/

/***Estilos Preguntas frecuentes Inicio***/
.itemid-327 .sppb-panel-title {
  font-size: 20px;
}

/***Estilos Preguntas frecuentes Fin***/

/***Estilos Sección CENU en medios inicio***/

/**Estilos en los medios inicio**/

.text-block-medios {
  /* Establecer tamaño mínimo y máximo */
  min-height: 100px;
  /* Altura mínima del bloque */
  max-height: 250px;
  /* Altura máxima del bloque */
  overflow: hidden;
  /* Ocultar el contenido que sobrepase el tamaño máximo */
  text-overflow: ellipsis;
  /* Mostrar puntos suspensivos si el contenido es demasiado largo */
  position: relative;
  /* Establecer posición relativa para controlar el contenido interno */
  border: 1px solid #ccc;
  /* Borde para mejorar la apariencia */
  padding: 10px;
  /* Relleno para el contenedor */
  margin-bottom: 20px;
  /* Margen inferior para separar los bloques */
  background-color: #f9f9f9;
  /* Color de fondo opcional */
  border-radius: 8px;
}

.text-block-medios .content {
  position: absolute;
  /* Posición absoluta para el contenido */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  /* Ocultar el contenido que se desborda */
}

.text-block-medios .content p {
  margin: 0;
  /* Eliminar márgenes predeterminados de los párrafos */
  height: 100%;
  /* Ocupar todo el espacio disponible verticalmente */
  box-sizing: border-box;
  /* Incluir el relleno y el borde en el tamaño total */
}

#sppb-addon-027bdb6e-8eb1-40ac-b415-f662902850b9
  #lnee_159
  ul.latestnews-items
  li.latestnews-item {
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-img {
  height: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.news-content {
  padding: 16px;
}

.news-content h2 {
  font-size: 1.65rem;
  line-height: 1.3;
}

.news-content h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

p.news-fuente {
  margin-bottom: 0.5rem !important;
}

.news-content h2 a,
.news-content h3 a {
  text-decoration: underline;
  color: #0e4862;
  font-weight: 700;
}

.news-content h2 a:hover,
.news-content h3 a:hover {
  text-decoration: none;
  color: #1d7fa7;
}

#lnee_159 .items_pagination .page_link.active_page {
  text-decoration: none;
}

#lnee_159 ul.latestnews-items li.latestnews-item {
  width: 40%;
  /* Ajustar para 2 columnas en pantallas grandes */
  box-sizing: border-box;
  padding: 15px;
  /* Ajusta el padding según sea necesario */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 18px;
  margin: 20px 20px 20px 20px;
  /* Espacio entre artículos */
  /* Establecer tamaño mínimo y máximo */
  min-height: 100px;
  /* Altura mínima del bloque 
     max-height: 395px;
     */
  /* Altura máxima del bloque */
  overflow: hidden;
  /* Ocultar el contenido que sobrepase el tamaño máximo */
  position: relative;
  /* Posición relativa para sombra */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Sombra más acentuada */
}

h6.newstitle {
  display: none;
  /* Esto ocultará el elemento completamente */
}

div.newsintro {
  /* Anula todos los estilos aplicados al div con la clase newsintro */
  all: unset;
}

/* CSS para cambiar el texto del span dentro del a cuando aria-label es "Next" */
a[aria-label="Next"] span {
  display: none;
  /* Oculta el contenido actual */
}

a[aria-label="Next"]:before {
  content: "Siguiente";
  /* Agrega el nuevo contenido antes del span */
}

/* CSS para cambiar el texto del span dentro del a cuando aria-label es "Prev" */
a[aria-label="Prev"] span {
  display: none;
  /* Oculta el contenido actual */
}

a[aria-label="Prev"]:before {
  content: "Anterior";
  /* Agrega el nuevo contenido antes del span */
}

.pagination > .active > a,
.pagination > .active > span {
  border-color: #fcd55f;
  background-color: #fcd55f;
}

.active > .page-link,
.page-link.active {
  color: #0e4862;
}

#lnee_159 .items_pagination li {
  margin-right: 15px;
}

.highlight_fecha_nueva {
  background-color: yellow;
  font-weight: bold;
}

.highlight_fecha_historica {
  background-color: lightblue;
  font-style: italic;
}

/* estilos articulos censo en los medios */
.medios-list {
  max-width: 720px;
}

.medios-item {
  padding: 0.25rem 0 0.75rem;
}

.medios-meta {
  font-size: 0.88rem;
  line-height: 1.2;
  color:  #0e4862;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.medios-tag {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.medios-sep {
  margin: 0 0.5rem;
  opacity: 0.8;
}

.medios-date {
  text-transform: capitalize;
}

.medios-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.3rem;
}

.medios-title a {
  text-decoration: none;
  color: #28353A;
  font-weight: 700;
}

.medios-title a:hover,
.medios-title a:focus {
  color: #046790;
  text-decoration: underline;
}

.medios-rule {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  margin: 0.6rem 0 0;
}

/**Estilos en los medios fin**/

/**Estilos CENU verdades inicio**/
.text-block-verdades {
  /*background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;*/
  /* Establecer tamaño mínimo y máximo */
  min-height: 100px;
  /* Altura mínima del bloque */
  max-height: 450px;
  /* Altura máxima del bloque */
  overflow: hidden;
  /* Ocultar el contenido que sobrepase el tamaño máximo */
  text-overflow: ellipsis;
  /* Mostrar puntos suspensivos si el contenido es demasiado largo */
}

#lnee_162 ul.latestnews-items {
  display: flex;
  /* Utilizar flexbox para el diseño de columnas */
  flex-wrap: wrap;
  /* Asegurar que los elementos se envuelvan a la siguiente línea */
}

#lnee_162 ul.latestnews-items li.latestnews-item {
  width: calc(33.33% - 20px);
  /* Calcula el ancho para 3 columnas con espacio entre ellos */
  box-sizing: border-box;
  /*padding: 15px;*/
  /* Ajusta el padding según sea necesario */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 18px;
  margin-bottom: 20px;
  /* Espacio entre artículos */
  /* Establecer tamaño mínimo y máximo */
  min-height: 100px;
  /* Altura mínima del bloque */
  max-height: 600px;
  /* Altura máxima del bloque */
  overflow: hidden;
  /* Ocultar el contenido que sobrepase el tamaño máximo */
  position: relative;
  /* Posición relativa para sombra */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Sombra más acentuada */
  margin-left: 20px;
}

/* Media query para dispositivos con pantalla más pequeña */
@media (max-width: 768px) {
  #lnee_162 ul.latestnews-items li.latestnews-item {
    width: 100%;
    /* Mostrar en una sola columna */
  }
}

/*

h6.newstitle {
     display: none;
    }

       div.newsintro {
    all: unset;
}
*/

/* CSS para cambiar el texto del span dentro del a cuando aria-label es "Next" */
a[aria-label="Next"] span {
  display: none;
  /* Oculta el contenido actual */
}

a[aria-label="Next"]:before {
  content: "Siguiente";
  /* Agrega el nuevo contenido antes del span */
}

/* CSS para cambiar el texto del span dentro del a cuando aria-label es "Prev" */
a[aria-label="Prev"] span {
  display: none;
  /* Oculta el contenido actual */
}

a[aria-label="Prev"]:before {
  content: "Anterior";
  /* Agrega el nuevo contenido antes del span */
}

#lnee_162 .items_pagination li {
  margin-right: 15px;
}

.highlight_fecha_nueva {
  background-color: yellow;
  font-weight: bold;
}

.highlight_fecha_historica {
  background-color: lightblue;
  font-style: italic;
}

/**Estilos CENU verdades fin**/

/***Estilos Sección CENU en medios fin***/

/***Estilos Censo en Territorio Inicio***/

/**Galería Censo en territorio inicio**/
/* Estructura de Grid compatible con el flujo de Bootstrap */
.gallery-container {
  display: grid !important;
  gap: 15px !important; /* Espaciado estándar de Bootstrap (gutter) */
  grid-template-columns: repeat(1, 1fr) !important;
  grid-auto-rows: 220px !important;
  grid-auto-flow: dense !important;
  width: 100% !important;
}

@media (min-width: 768px) {
  .gallery-container {
      grid-template-columns: repeat(2, 1fr) !important;
      grid-auto-rows: 240px !important;
  }
}

@media (min-width: 992px) {
  .gallery-container {
      grid-template-columns: repeat(3, 1fr) !important;
      grid-auto-rows: 210px !important;
  }
}

/* Clases para ocupar más espacio (Spans) */
.gallery-container .grid-tall {
  grid-row: span 2 !important;
}
.gallery-container .grid-tall-3 {
  grid-row: span 3 !important;
}
.gallery-container .grid-wide {
  grid-column: span 1 !important;
}
@media (min-width: 992px) {
  .gallery-container .grid-wide {
      grid-column: span 2 !important;
  }
}

/* Tarjeta de imagen estilo Bootstrap */
.gallery-container .img-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  display: block !important;
}

.gallery-container .img-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Pie de foto azul solicitado */
.gallery-container .img-caption {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background-color: #003366 !important; /* Azul marino de la referencia */
  color: #ffffff !important;
  padding: 12px 15px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
}

/* Efecto hover sutil */
.gallery-container .img-wrapper:hover img {
  filter: brightness(0.85) !important;
  transition: all 0.3s ease !important;
}

/**Galería Censo en territorio fin**/

/***Estilos Censo en Territorio Fin***/

/***Estilos varios Inicio***/

section.banner-secciones {
  background-image: url(/images/2025/sobre/back_sobre_el_censo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 0;
  margin-bottom: 1rem;
}

section.banner-secciones h1,
section.banner-secciones p {
  color: #fff;
}


/* galeria inicio */
.galería-ceinicio .container {
  padding-left: 0;
  padding-right: 0;
}

/* miga de pan */
.breadcrumb-item + .breadcrumb-item::before {
  content: inherit;
}

.breadcrumb {
  margin: 1rem 0 0 0;
  background-color: inherit;
  padding: 0;
}

ol.breadcrumb span,
ol.breadcrumb a {
  font-size: 0.9375rem;
}

ol.breadcrumb a {
  color: #046790;
}

ol.breadcrumb a:hover {
  color: #0E4862;
}

.breadcrumb-item {
  color: #6c757d;
}

.breadcrumb-item.active {
  color: #28353A;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.sep {
  margin-right: 5px;
}


/* Video YouTube vertical responsive */
.video-container-vertical {
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.video-wrapper-vertical {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  /* Aspect ratio 9:16 (vertical) */
}

.video-wrapper-vertical iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.bg-yellow {
  background-color: #fff6d7;
}

.bg-gray {
  background-color: #f5f5f5;
}

.bg-vertical-video .sppb-container-inner {
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

#videos-lista-censo {
  margin: 4rem 0 6rem 0;
}

#videos-lista-censo .sppb-container-inner {
  height: 500px;
}

#video-operativos .sppb-container-inner {
  height: auto;
}

#video_con-clave{
  margin: 1rem 0 2rem 0;
}

#video_con-clave .sppb-container-inner {
  height: 350px;
}

#video_que-midio .sppb-container-inner {
  height: auto;
}

#video_fases{
  margin: 4.5rem 0 1rem 0;
}

#video_sobre-censo{
  margin: 5rem 0 1.5rem 0;
}

#video_fases .sppb-container-inner{
  height: 480px;
}

#video_sobre-censo .sppb-container-inner{
  height: 520px;
}

#video_recoleccion {
  margin: 5.5rem 0 1rem 0;
}

#video_recoleccion .sppb-container-inner{
  height: 430px;
}

#video_rompecabezas .sppb-container-inner{
  height: 320px;
}

#video_preguntas {
  margin: 5rem 0;
}

#video_rompecabezas {
  margin: 2.5rem 0;
}

#video_preguntas .sppb-container-inner{
  height: 300px;
}


.video-reconocimiento{
  height: 400px;
  margin: 10rem 0;
  padding-right: 2rem;
  padding-left: 2rem;
}

/*Slider inicio*/

.label-slider-censo {
  max-width: fit-content !important;
}

.label-slider-censo .n2-ss-item-content.n2-ss-text p{
  background: #ffffff !important;
    opacity: 1 !important;
    padding: 0.5rem 1rem !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0px !important;
    font-family: 'Nunito Sans', sans-serif !important;
    color: #1C2629 !important;
    font-size: 0.8rem !important;
    text-shadow: none !important;
    line-height: 1.15 !important;
    font-style: normal !important;
    text-decoration: none !important;
    text-align: center !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    text-transform: none !important;
    font-weight: 600 !important;
}

/***Estilos varios Fin***/


@media (max-width: 991.99px) {
  .bg-vertical-video {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }

  /*Otros estilos inicio*/

  .tabs-title{
    margin-top: 1.5rem;
  }

  #video_preguntas {
    margin: 3.5rem 0;
  }

  #video_con-clave {
    margin:4.5rem 0 6rem 0;
}


#video_rompecabezas {
    margin: 4.5rem 0 5.5rem 0;
}
}

@media (max-width: 767.99px) {
  #videos-lista-censo {
    margin: 2rem 0 0 0;
  }

  .video-container-vertical {
    padding: 0;
    margin: 2rem auto;
  }

  #videos-lista-censo .sppb-container-inner {
    height: auto;
    padding: 3rem;
  }

  #videos-lista-censo .bg-vertical-video {
    margin-bottom: 0;
  }

  #video_fases.bg-vertical-video .sppb-container-inner {
    height: auto;
    padding: 1rem 2rem;
  }

  #video_sobre-censo .sppb-container-inner {
    height: 440px;
}

#video_con-clave, #video_rompecabezas {
  margin:4.5rem 0 2rem 0;
}

  #video_con-clave .sppb-container-inner {
    height: 850px;
}


 #video_rompecabezas .sppb-container-inner {
    height: 800px;
}

  #video_preguntas {
    margin: 1.5rem 0 0 0;
}

  #video_preguntas .sppb-container-inner{
    height: 750px;
  }
}


@media (max-width: 575.99px) {
#video_preguntas {
  margin: 3.5rem 0 0 0;
}

#video_con-clave .sppb-container-inner {
  height: 950px;
}
}


@media (min-width: 1200px) {
  #videos-lista-censo {
    margin: 2rem 0 0 0;
  }

  #videos-lista-censo .sppb-container-inner,
  #video_rompecabezas .sppb-container-inner {
    height: 350px;
  }


  #video_fases, 
  #video_sobre-censo{
    margin: 0 0 1.5rem 0;
  }

  #video_fases .sppb-container-inner, 
  #video_sobre-censo .sppb-container-inner{
    height: 400px;
  }

  #video_recoleccion {
    margin: 2rem 0 3rem 0;
}

  #video_recoleccion .sppb-container-inner{
    height: 300px;
  }

  #video_preguntas {
    margin:4rem 0;
  }
  
  #video_preguntas .sppb-container-inner{
    height: 250px;
  }

  #video_con-clave{
    margin:4rem 0;
  }

  #video_rompecabezas {
  margin: 4rem 0;
}
}

@media (min-width: 1400px) {
  .bg-vertical-video {
    padding: 3rem 0;
    margin-bottom: 2rem;
  }

  #videos-lista-censo {
    margin: 10rem 0;
  }

  #videos-lista-censo .sppb-container-inner {
    height: 250px;
  }

  #video-operativos .sppb-container-inner {
    height: 400px;
  }

  #video_fases .sppb-container-inner,
  #video_sobre-censo .sppb-container-inner,
  #video_recoleccion .sppb-container-inner {
    height: auto;
  }


  #column-wrap-id-38f54999-04f0-451b-bf51-65fa6d457760,
  #column-wrap-id-b8b22e3f-a7a7-4586-846d-b9bc06b67784 {
    max-width: 66.66%;
    flex-basis: 66.66%;
  }

  #column-wrap-id-8fb140a3-077c-4f85-bd6e-9f2a61229bc2,
  #column-wrap-id-bdad8cf5-ab97-40c8-9bca-8a9f11897896 {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }

  #video_rompecabezas {
    margin: 7rem 0;
}

 #video_rompecabezas .sppb-container-inner {
    height: 250px;
  }
}

/* Responsive para tablets */
@media (min-width: 768px) {
  .video-container-vertical {
    max-width: 500px;
  }
}

/* Responsive para desktop */
@media (min-width: 992px) {
  .video-container-vertical {
    max-width: 600px;
  }
}


