/* =========================================================
   MENU LIST
========================================================= */

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  color: #007bff;
  cursor: pointer;
}

/* Hover opcional */
.menu-list li:hover {
  background: #f8f9fa;
}


/* =========================================================
   DOTS / CIRCULOS
========================================================= */

/* Circulitos */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid;
}

/* Colores */
.rosa {
  border-color: #ff4da6;
}

.amarillo {
  border-color: #f5b400;
}

.azul {
  border-color: #007bff;
}

.naranja {
  border-color: #ff6a00;
}

.verde {
  border-color: #28a745;
}


/* =========================================================
   TEXTOS / FOOTER
========================================================= */

.texto-azul {
  color: #0D006B;
}

.footer {
  /*background-color: #D6EFF2;*/
}

.footer-div {
  /*background-color: #D6EFF2;*/
  padding: 50px;
}


/* =========================================================
   LINKS
========================================================= */

/* Links extraños */
.list-group-item a {
  color: #007bff;
  text-decoration: none;
}

.list-group-item a:visited {
  color: #007bff;
}

.list-group-item a:hover {
  text-decoration: underline;
}

/* Municipal1 */
a,
a:visited,
a:hover,
a:active,
a:focus {
  color: #007bff !important;
  text-decoration: none;
}


/* =========================================================
   COLORES CIRCULOS
========================================================= */

.circulo-004B87 {
  color: #004B87;
}

.circulo-69B3E7 {
  color: #69B3E7;
}

.circulo-C8D8EB {
  color: #C8D8EB;
}

.circulo-63666A {
  color: #63666A;
}

.circulo-97999B {
  color: #97999B;
}

.circulo-C8C9C7 {
  color: #C8C9C7;
}

.circulo-3FB24F {
  color: #3FB24F;
}
.circulo-FBCD62 {
  color: #FBCD62;
}

.circulo-EA87C4 {
  color: #EA87C4;
}
.circulo-FCAD95 {
  color: #FCAD95;
}



/* =========================================================
   DocsPanorama
========================================================= */

.card-custom {
  min-height: 320px;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (max-width: 768px) {
  .text-container {
    margin-top: 15px;
  }
}
/*.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}*/
.carousel-control-prev {
    left: 1% !important;
}

.carousel-control-next {
    right: 1% !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 60px;
    height: 60px;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8800' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0L6 0.75 3.5 4 6 6.5l-.75.75L2 4z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8800' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0L2 0.75 4.5 4 2 6.5l.75.75L6 4z'/%3E%3C/svg%3E") !important;
}

.carousel-indicators li {
    background-color: #ffb366;
    opacity: 0.6;
}

.carousel-indicators .active {
    background-color: #ff8800;
    opacity: 1;
}

/* FIN DocsPanorama */


/* =========================================================
   Indicadores2
========================================================= */

/* BOTONES */
.botones-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* BOTONES UNIFORMES */
.botones-carousel .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  min-width: 100px;
  font-size: 13px;
  padding: 5px 10px;
  text-align: center;
}

/* IMAGEN ADAPTADA AL BOTÓN */
.botones-carousel .btn img {
  height: 30%;
  width: auto;
}

/* TABLET */
@media (max-width: 768px) {
  .botones-carousel .btn {
    flex: 1 1 45%;
  }
}

/* CELULAR */
@media (max-width: 480px) {
  .botones-carousel .btn {
    flex: 1 1 100%;
  }
}


/* IFRAME RESPONSIVO */
.iframe-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.iframe-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}


/* MENU INDICADORES */
.menu-indicadores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background: #f2f2f2;
  border-radius: 15px;
  overflow-x: auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* Cada item */
.menu-indicadores .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  min-width: 85px;
  max-width: 100px;
  flex: 1 1 auto;
  text-align: center;
}

/* Imagen */
.menu-indicadores img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* Texto */
.menu-indicadores span {
  font-size: 13px;
  line-height: 1.2;
}

.menu-indicadores .item:hover {
  transform: scale(1.05);
  transition: 0.2s;
}

/* Scroll horizontal en móvil */
@media (max-width: 768px) {
  .menu-indicadores {
    justify-content: flex-start;
  }
}


/* CONTENEDORES */
body {
  overflow-x: hidden;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* FIN Indicadores2 */


/* =========================================================
   Inicio1
========================================================= */

/* CONTENEDOR GLOBAL */
.siee-dashboard {
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  padding: 25px;
  border-radius: 15px;
}

/* TARJETAS */
.siee-dashboard .siee-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.siee-dashboard .siee-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* IMAGEN */
.siee-dashboard .siee-img {
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.siee-dashboard .siee-card:hover .siee-img {
  transform: scale(1.08);
}

/* BODY */
.siee-dashboard .siee-card-body {
  padding: 20px;
}

/* TITULO */
.siee-dashboard .siee-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* LINKS */
.siee-dashboard .siee-link {
  display: block;
  color: #34495e;
  font-size: 13px;
  margin-bottom: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.siee-dashboard .siee-link:hover {
  color: #007bff;
  padding-left: 6px;
}

/* FOOTER */
.siee-dashboard .siee-footer {
  background: transparent;
  border-top: none;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
}

/* COLORES */
.siee-border-1 {
  border-top: 4px solid #3498db;
}

.siee-border-2 {
  border-top: 4px solid #e67e22;
}

.siee-border-3 {
  border-top: 4px solid #2ecc71;
}

.siee-border-4 {
  border-top: 4px solid #9b59b6;
}



.coll {
  font-size: 1.4em;
  font-weight: bold;

}

.coll{
    color: #555;
    font-weight: normal;
    transition: .2s;
    text-decoration: none;
}

.coll.activo{
    color: #004B87;
    font-weight: bold;
    font-size: 18px;
}

/* FIN Inicio1 */


/* =========================================================
   Municipal2
========================================================= */

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* FIN Municipal2 */

/*Inicio 1*/


.siee-card{
    transition:.2s;
}

.siee-card:hover{
    transform:translateY(-3px);
}

.siee-link{
    padding:6px 0;
    font-size:14px;
}




/* Inicio1*/


/* =========================
   CARDS
========================= */

.siee-card{
    transition: .2s;
}

.siee-card:hover{
    transform: translateY(-3px);
}


/* =========================
   LINKS
========================= */

.siee-link{
    padding: 6px 0;
    font-size: 14px;
}


/* =========================
   HEADER CARD
========================= */

.siee-header{
    min-height: 320px;

    display: flex;
    flex-direction: column;
}


/* =========================
   BODY CARD
========================= */

.siee-card-body{
    flex-grow: 1;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}


/* =========================
   TITULOS
========================= */

.siee-title{
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.siee-title h4{
    margin: 0;
}


/* =========================
   FLECHA
========================= */

.flecha-collapse{
    font-size: 28px;
    color: #777;

    line-height: 1;
    margin-top: 10px;

    animation: flotar 1.5s infinite;
}


/* =========================
   ANIMACION
========================= */

@keyframes flotar{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(5px);
    }

    100%{
        transform: translateY(0);
    }

}

/* =========================================================
   MENU PRINCIPAL SIIE
========================================================= */

.menu-opcion {
    display: flex;
    align-items: flex-start;
}

.menu-opcion svg {
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 4px;
}

.menu-opcion a {
    line-height: 1.3;
}

/* MÓVIL */
@media (max-width: 767.98px) {
    .menu-opcion {
        min-height: 70px;
    }
}

/* ESCRITORIO */
@media (min-width: 768px) {
    .menu-opcion {
        min-height: auto;
    }

    .col hr {
        margin-top: 12px;
        margin-bottom: 12px;
    }
}

