/* ------------------------------------------------
   Reset y Ajustes Generales
-------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* Desplazamiento suave para anclas */
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;    /* Fuente base un poco mayor para mejor legibilidad */
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #222;        /* Texto más oscuro que #333 para mejor contraste */
}



/* ------------------------------------------------
   Enlaces Genéricos
-------------------------------------------------- */
a {
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}

a:focus,
a:active {
  outline: 2px solid white; /* Enfoque visible para accesibilidad */
  outline-offset: 2px;
}

/* ------------------------------------------------
   Cabecera y navegación principal
-------------------------------------------------- */
header {
  position: relative;
}

nav {
  background: #131c46; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 
    rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 2;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 180px;  /* Ajusta según tu preferencia */
  width: auto;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 12px;
}

.nav-links li a:hover {
  background-color: white;
  color: #131c46;
  border-radius: 4px;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #131c46;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 5;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #fff;
  color: #131c46;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Menú móvil */
.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #131c46;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 0;
    text-align: center;
    padding: 10px 0;
  }
}

/* ------------------------------------------------
   Sección de inicio (buscador)
-------------------------------------------------- */
.inicio {
  text-align: center;
  padding: 40px;
  background-color: white;
  color: #131c46;
}

.inicio h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.inicio input {
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 80%;
  max-width: 400px;
}
/* Estilos para el botón de regresar */
.back-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 1rem;
  color: white;
  background-color: #131c46;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
  background-color: #183889;
  transform: translateY(-3px);
}

.back-button:active {
  background-color: #183889;
  transform: translateY(1px);
}

/* Adaptación a dispositivos pequeños */
@media (max-width: 768px) {
  .back-button {
    width: 100%;
    font-size: 1rem;
  }
}


/* ------------------------------------------------
   Tabs / Pestañas
-------------------------------------------------- */
.tabs-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tab-btn {
  background: #131c46;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}

.tab-btn:hover {
  background: #0f2a66;
}

.tab-btn.active {
  background: #0f2a66;
  font-weight: bold;
  border-bottom: 3px solid #131c46; 
}

.tab-content {
  display: none; /* Ocultas por defecto */
}

.tab-content.active {
  display: block; /* Muestra solo la pestaña activa */
}

/* ------------------------------------------------
   Grid de tarjetas (tramites-container)
-------------------------------------------------- */
.tramites-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tramite-card {
  display: grid;
  background: white;
  border: 1px solid #ddd;
  grid-template-rows: auto 1fr auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  align-items: center;
  justify-items: center; /* Centra los elementos horizontalmente */
  transition: transform 0.3s, box-shadow 0.3s;
}

.tramite-card img {
  height: 80px;
  margin-bottom: 10px;
  align-self: center; /* Centra verticalmente la imagen */
  justify-self: center; /* Centra horizontalmente la imagen */
}


.tramite-card h3 {
  font-size: 1.2rem;
  color: #131c46;
  margin-bottom: 10px;
}

.tramite-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.tramite-card a {
  text-decoration: none;
  color: #fff;
  background-color: #131c46;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.tramite-card a:hover {
  background-color: #0f2a66;
}

.tramite-card a:focus {
  outline: 2px dashed #131c46;
  outline-offset: 2px;
}

.tramite-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ------------------------------------------------
   Footer
-------------------------------------------------- */
.footer {
  background-color: #131c46;
  color: #fff;
  padding: 40px 20px;
  font-size: 1rem;
}

.acomodo{
  display: grid;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-navigation,
.footer-social {
  flex: 1;
  min-width: 250px;
}

.footer-navigation h4,
.footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-logo {
  width: 250px;
  margin-bottom: 10px;
}

.footer-menu li {
  margin: 5px 0;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #131c46;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links img {
  width: 30px;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
}

/* Responsividad en el footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-navigation,
  .footer-social {
    margin-top: 20px;
  }
}

/* Contenedor principal de la página de Gacetas */
.gacetas-municipales {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Título */
.gacetas-municipales h2 {
  margin-bottom: 1rem;
  color: #131c46; /* similar a tus otros títulos */
}

/* Contenedor de los "botones" (cada año) */
.gacetas-years {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Estilo de cada "botón" de año */
.gaceta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  border-radius: 4px;
  background: #131c46;    /* Fondo oscuro por defecto */
  color: #fff;         /* Texto claro por defecto */
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.gaceta-btn img {
  width: 40px;
  height: 40px;
}

/* Hover: aclaramos un poco el fondo */
.gaceta-btn:hover {
  background: white;
  color: #131c46;
}

/* Botón ACTIVO: fondo claro, texto oscuro */
.gaceta-btn.active {
  background: #f4f4f4;
  color: #333;
}

/* Contenidos de cada Gaceta */
.gaceta-content {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  display: none; /* Ocultas por defecto */
}

/* Si está activa, se muestra */
.gaceta-content.active {
  display: block;
}

.gaceta-content h3 {
  margin-top: 0;
  color: #131c46;
}

/* Responsive: si la pantalla es < 768px, los botones se apilan */
@media (max-width: 768px) {
  .gacetas-years {
    flex-direction: column;
  }
  .gaceta-btn {
    width: fit-content;
  }
}


 /* Menu */
 #menuglobal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(/Accesos/imgs/purificacion.JPG);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #183889;
  color: #fff !important;
  width: 100%;
  min-height: 100vh;
  z-index: 8888;
}

.globalmenu_telemergencia {
  position: absolute;
  top: 25px;
  right: 100px;
  width: 400px;
  height: 96px;
  border: 1px solid white;
}

.ico_emergencia {
  width: 38px;
  height: 38px;
  background-image: url(../images/icons/icon_telefono.png);
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
}

.globalmenu_telemergencia div {
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
  float: left;
  border: 1px solid white;
}

.globalmenu_telemergencia div h3 {
  font-size: 10pt;
  color: #fff;
}

.globalmenu_btn_close {
  position: absolute;
  top: 25px;
  right: 75px;
  width: 48px;
  height: 48px;
  background-image: url(/Accesos/imgs/ico_menu_btn_close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 94%;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  z-index: 99;
}

.globalmenu_btn_close:hover {
  border-bottom: 4px solid #3B8DD1;
}

#menuglobal-scrollarea {
  position: relative;
  width: 100% !important;
  height: 100vh !important;
  overflow: auto;
}

#menuglobal-cont {
  position: relative;
  width: 70% !important;
  height: auto;
  padding-right: 17px;
  margin: auto !important;
  padding-top: 90px;
}

.menuglobal-contlst {
  width: 100%;
  height: auto;
}

.menuglobal-listas {
  position: relative;
  height: auto;
  padding-top: 25px !important;
}

.menuglobal-listas-small {
  width: 50%;
  min-height: 20vh;
}

.menuglobal-listas-large {
  width: 100%;
  min-height: 20vh;
}

.menuglobal-lista {
  float: left;
}

.menuglobal-lista hr {
  width: 90%;
  height: 2px;
  border: none;
  background-color: #fff;
  margin-top: 8px;
}

.menuglobal-lista a {
  color: #fff !important;
  background-image: linear-gradient(#fff, #fff);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: .6s;
  padding-left: 2px;
  padding-right: 2px;
  text-shadow: 1px 1px 1px #000;
}

.menuglobal-lista a:hover {
  background-size: 100% 100%;
  color: black !important;
  text-shadow: none;
}

.menulst-dos {
  width: 50%;
}

.menulst-dos div {
  width: 50%;
  float: left;
}

.menulst-uno {
  width: 100%;
}

.menulst-uno div {
  width: 50%;
  float: left;
}

.menuglobal-lista h2 {
  font-size: 24pt;
  color: #fff !important;
}

.menuglobal-lista ul {
  list-style: none;
  padding-left: 33px;
}

.menuglobal-lista ul li {
  font-size: 14pt;
  font-weight: 400;
  word-spacing: 1px;
  padding-top: 8px !important;
  cursor: pointer;
}

#menuglobal-info {
  width: 50%;
  height: auto;
  min-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menuglobal-info div {
  text-align: center;
}

#menuglobal-info div h3 {
  font-size: 11pt;
  font-weight: 400;
  color: #fff !important;
}

#menuglobal-info div h3 a {
  color: #fff;
  background-image: linear-gradient(#8574a5, #1000e9);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: .4s;
  padding-left: 2px;
  padding-right: 2px;
}

#menuglobal-info div h3 a:hover {
  background-size: 100% 100%;
  color: black !important;
}

#menuglobal-info div img {
  width: 340px;
}

.menuglobal-cont-div {
  float: left;
}

#menuglobal-destacadas {
  width: 100%;
  min-height: 34vh;
  height: auto;
}

#menuglobal-destacadas hr {
  width: 95%;
  height: 2px;
  border: none;
  background-color: #fff;
  margin-bottom: 25px;
}

.destacadaGroup {
  width: auto;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 4px;
  float: left;
}

.destacadaGroup h2 {
  color: #fff;
  font-size: 18pt !important;
  margin-bottom: 12px;
}

.group-cuatro {
  width: 30%;
  max-width: 30%;
}

.group-tres {
  width: 40%;
  max-width: 40%;
}

.group-dos {
  width: 30%;
}

.group-border {
  border-right: 1px solid #c1c1c1;
}

.menuglobal-destacada {
  width: 150px;
  height: 112px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  float: left;
}

.menuglobal-destacada:hover {
  color: #33ccff;
}

.destacada-bg {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 8px;
}

.menuglobal-destacada span {
  font-size: 11pt;
}

.globalnav-vermas {
  color: #fff;
  background-size: 0%;
  background-position: center;
  background-repeat: no-repeat;
}

.globalnav-vermas span {
  transition: all 0.6s;
}

.globalnav-vermas:hover span {
  color: transparent;
  cursor: pointer;
}

.globalnav-vermas:hover {
  background-size: 26px;
}


@media only screen and (max-width: 1500px) {
  #menuglobal-cont {
      width: 90% !important;
  }
}

@media only screen and (max-width: 700px) {
  #menuglobal-cont {
      position: absolute;
      width: 98% !important;
      top: 0;
      bottom: 0;
      left: 0;
      right: -15px;
  }

  .globalmenu_btn_close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 48px;
      height: 48px;
      background-size: cover;
      border-bottom: none;
  }

  .globalmenu_btn_close:hover {
      border-bottom: none;
  }

  .menuglobal-listas {
      width: 100%;
      height: auto;
      padding-top: 25px;
  }

  .menulst-dos {
      width: 100%;
      margin-top: 25px;
  }

  .menuglobal-lista h2 {
      font-size: 16pt;
  }

  .menuglobal-lista hr {
      width: 100%;
      margin-top: 5px;
      margin-bottom: 12px;
  }

  .menuglobal-lista ul li {
      font-size: 13pt;
  }

  #menuglobal-destacadas {
      height: auto;
      margin-top: 20px;
      margin-bottom: 25px;
  }

  .menuglobal-destacada {
      width: 33%;
      height: 98px;
      font-size: 10pt;
      padding: 5px;
  }

  .destacada-bg {
      width: 38px;
      height: 38px;
  }

  .destacadaGroup h2 {
      font-size: 16pt !important;
      margin-top: 10px;
  }

  .group-cuatro {
      width: 100%;
      max-width: 100%;
  }

  .group-tres {
      width: 100%;
      max-width: 100%;
  }

  .group-dos {
      width: 100%;
      max-width: 100%;
  }

  .group-border {
      border-right: 0px solid #c1c1c1;
  }
}

.sticky-container {
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -150px;
  top: 230px;
  width: 210px;
  z-index: 1100;
}

.sticky li {
  list-style-type: none;
  background-color: #ffffff00;
  color: transparent;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.sticky li:hover {
  margin-left: -30px;
}

.sticky li img {
  float: left;
  margin: 5px 4px;
  margin-right: 5px;
}

.sticky li p {
  padding-top: 5px;
  margin: 0px;
  line-height: 16px;
  font-size: 11px;
}

.sticky li p a {
  text-decoration: none;
  color: #2C3539;
}

.sticky li p a:hover {
  text-decoration: underline;
}



.gaceta-content {
  display: none; /* Oculta todos los años por defecto */
}

.gaceta-content.active {
  display: block; /* Muestra solo el activo */
}


/* ------------------------------------------------
   Sección Sesiones de Cabildo y Puntos de Acuerdo
-------------------------------------------------- */
/* ------------------------------------------------
   Contenedor principal de la página de Sesiones de Cabildo
-------------------------------------------------- */
.sesiones-cabildo {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* ------------------------------------------------
   Título Principal
-------------------------------------------------- */
.sesiones-cabildo h2 {
  margin-bottom: 1rem;
  color: #131c46;
}

/* ------------------------------------------------
   Contenedor de los "botones" (años de sesiones)
-------------------------------------------------- */
.cabildo-years {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ------------------------------------------------
   Estilo de cada "botón" de año
-------------------------------------------------- */
.cabildo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  border-radius: 4px;
  background: #131c46;  /* Fondo oscuro por defecto */
  color: #fff;          /* Texto claro por defecto */
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.cabildo-btn img {
  width: 40px;
  height: 40px;
}

/* Hover: aclaramos un poco el fondo */
.cabildo-btn:hover {
  background: white;
  color: #131c46;
}

/* Botón ACTIVO: fondo claro, texto oscuro */
.cabildo-btn.active {
  background: #f4f4f4;
  color: #333;
}

/* ------------------------------------------------
   Contenido de cada sesión de cabildo
-------------------------------------------------- */
.cabildo-content {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  display: none; /* Ocultas por defecto */
}

/* Si está activa, se muestra */
.cabildo-content.active {
  display: block;
}

.cabildo-content h3 {
  margin-top: 0;
  color: #131c46;
}

/* ------------------------------------------------
   Grid de Tarjetas (Sesiones de Cabildo)
-------------------------------------------------- */
.sesiones-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.sesion-card {
  display: grid;
  background: white;
  border: 1px solid #ddd;
  grid-template-rows: auto 1fr auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  align-items: center;
  justify-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sesion-card img {
  height: 80px;
  margin-bottom: 10px;
  align-self: center;
  justify-self: center;
}

.sesion-card h3 {
  font-size: 1.2rem;
  color: #131c46;
  margin-bottom: 10px;
}

.sesion-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.sesion-card a {
  text-decoration: none;
  color: #fff;
  background-color: #131c46;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.sesion-card a:hover {
  background-color: #0f2a66;
}

.sesion-card a:focus {
  outline: 2px dashed #131c46;
  outline-offset: 2px;
}

.sesion-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ------------------------------------------------
   Responsividad (Mobile)
-------------------------------------------------- */
@media (max-width: 768px) {
  .cabildo-years {
    flex-direction: column;
    align-items: center;
  }

  .sesiones-container {
    grid-template-columns: 1fr;
  }
}


.sesiones-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.sesion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.sesion-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.sesion-card h3 {
  font-size: 1.1rem;
  color: #131c46;
  margin-bottom: 10px;
}

.sesion-card .btn {
  display: inline-block;
  background: #131c46;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}

.sesion-card .btn:hover {
  background: #0f2a66;
}

.sesion-card:hover {
  transform: scale(1.05);
}


 /* Menu */
 #menuglobal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(https://fresnillo.gob.mx/assets/purificacion.JPG);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #183889;
  color: #fff !important;
  width: 100%;
  min-height: 100vh;
  z-index: 8888;
}

.globalmenu_telemergencia {
  position: absolute;
  top: 25px;
  right: 100px;
  width: 400px;
  height: 96px;
  border: 1px solid white;
}

.ico_emergencia {
  width: 38px;
  height: 38px;
  background-image: url(../images/icons/icon_telefono.png);
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
}

.globalmenu_telemergencia div {
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
  float: left;
  border: 1px solid white;
}

.globalmenu_telemergencia div h3 {
  font-size: 10pt;
  color: #fff;
}

.globalmenu_btn_close {
  position: absolute;
  top: 25px;
  right: 75px;
  width: 48px;
  height: 48px;
  background-image: url(https://fresnillo.gob.mx/assets/ico_menu_btn_close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 94%;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  z-index: 99;
}

.globalmenu_btn_close:hover {
  border-bottom: 4px solid #3B8DD1;
}

#menuglobal-scrollarea {
  position: relative;
  width: 100% !important;
  height: 100vh !important;
  overflow: auto;
}

#menuglobal-cont {
  position: relative;
  width: 70% !important;
  height: auto;
  padding-right: 17px;
  margin: auto !important;
  padding-top: 90px;
}

.menuglobal-contlst {
  width: 100%;
  height: auto;
}

.menuglobal-listas {
  position: relative;
  height: auto;
  padding-top: 25px !important;
}

.menuglobal-listas-small {
  width: 50%;
  min-height: 20vh;
}

.menuglobal-listas-large {
  width: 100%;
  min-height: 20vh;
}

.menuglobal-lista {
  float: left;
}

.menuglobal-lista hr {
  width: 90%;
  height: 2px;
  border: none;
  background-color: #fff;
  margin-top: 8px;
}

.menuglobal-lista a {
  color: #fff !important;
  background-image: linear-gradient(#fff, #fff);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: .6s;
  padding-left: 2px;
  padding-right: 2px;
  text-shadow: 1px 1px 1px #000;
}

.menuglobal-lista a:hover {
  background-size: 100% 100%;
  color: black !important;
  text-shadow: none;
}

.menulst-dos {
  width: 50%;
}

.menulst-dos div {
  width: 50%;
  float: left;
}

.menulst-uno {
  width: 100%;
}

.menulst-uno div {
  width: 50%;
  float: left;
}

.menuglobal-lista h2 {
  font-size: 24pt;
  color: #fff !important;
}

.menuglobal-lista ul {
  list-style: none;
  padding-left: 33px;
}

.menuglobal-lista ul li {
  font-size: 14pt;
  font-weight: 400;
  word-spacing: 1px;
  padding-top: 8px !important;
  cursor: pointer;
}

#menuglobal-info {
  width: 50%;
  height: auto;
  min-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menuglobal-info div {
  text-align: center;
}

#menuglobal-info div h3 {
  font-size: 11pt;
  font-weight: 400;
  color: #fff !important;
}

#menuglobal-info div h3 a {
  color: #fff;
  background-image: linear-gradient(#8574a5, #1000e9);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: .4s;
  padding-left: 2px;
  padding-right: 2px;
}

#menuglobal-info div h3 a:hover {
  background-size: 100% 100%;
  color: black !important;
}

#menuglobal-info div img {
  width: 340px;
}

.menuglobal-cont-div {
  float: left;
}

#menuglobal-destacadas {
  width: 100%;
  min-height: 34vh;
  height: auto;
}

#menuglobal-destacadas hr {
  width: 95%;
  height: 2px;
  border: none;
  background-color: #fff;
  margin-bottom: 25px;
}

.destacadaGroup {
  width: auto;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 4px;
  float: left;
}

.destacadaGroup h2 {
  color: #fff;
  font-size: 18pt !important;
  margin-bottom: 12px;
}

.group-cuatro {
  width: 30%;
  max-width: 30%;
}

.group-tres {
  width: 40%;
  max-width: 40%;
}

.group-dos {
  width: 30%;
}

.group-border {
  border-right: 1px solid #c1c1c1;
}

.menuglobal-destacada {
  width: 150px;
  height: 112px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  float: left;
}

.menuglobal-destacada:hover {
  color: #33ccff;
}

.destacada-bg {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 8px;
}

.menuglobal-destacada span {
  font-size: 11pt;
}

.globalnav-vermas {
  color: #fff;
  background-size: 0%;
  background-position: center;
  background-repeat: no-repeat;
}

.globalnav-vermas span {
  transition: all 0.6s;
}

.globalnav-vermas:hover span {
  color: transparent;
  cursor: pointer;
}

.globalnav-vermas:hover {
  background-size: 26px;
}


@media only screen and (max-width: 1500px) {
  #menuglobal-cont {
      width: 90% !important;
  }
}

@media only screen and (max-width: 700px) {
  #menuglobal-cont {
      position: absolute;
      width: 98% !important;
      top: 0;
      bottom: 0;
      left: 0;
      right: -15px;
  }

  .globalmenu_btn_close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 48px;
      height: 48px;
      background-size: cover;
      border-bottom: none;
  }

  .globalmenu_btn_close:hover {
      border-bottom: none;
  }

  .menuglobal-listas {
      width: 100%;
      height: auto;
      padding-top: 25px;
  }

  .menulst-dos {
      width: 100%;
      margin-top: 25px;
  }

  .menuglobal-lista h2 {
      font-size: 16pt;
  }

  .menuglobal-lista hr {
      width: 100%;
      margin-top: 5px;
      margin-bottom: 12px;
  }

  .menuglobal-lista ul li {
      font-size: 13pt;
  }

  #menuglobal-destacadas {
      height: auto;
      margin-top: 20px;
      margin-bottom: 25px;
  }

  .menuglobal-destacada {
      width: 33%;
      height: 98px;
      font-size: 10pt;
      padding: 5px;
  }

  .destacada-bg {
      width: 38px;
      height: 38px;
  }

  .destacadaGroup h2 {
      font-size: 16pt !important;
      margin-top: 10px;
  }

  .group-cuatro {
      width: 100%;
      max-width: 100%;
  }

  .group-tres {
      width: 100%;
      max-width: 100%;
  }

  .group-dos {
      width: 100%;
      max-width: 100%;
  }

  .group-border {
      border-right: 0px solid #c1c1c1;
  }
}

.sticky-container {
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -150px;
  top: 230px;
  width: 210px;
  z-index: 1100;
}

.sticky li {
  list-style-type: none;
  background-color: #ffffff00;
  color: transparent;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.sticky li:hover {
  margin-left: -30px;
}

.sticky li img {
  float: left;
  margin: 5px 4px;
  margin-right: 5px;
}

.sticky li p {
  padding-top: 5px;
  margin: 0px;
  line-height: 16px;
  font-size: 11px;
}

.sticky li p a {
  text-decoration: none;
  color: #2C3539;
}

.sticky li p a:hover {
  text-decoration: underline;
}

