/* Estilos generales editables */
.atribuciones-planeacion {
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #841833;
}

.subtitulo {
  font-size: 1.5rem;
  color: #571e28;
  margin-bottom: 1rem;
  font-weight: 600;
}

.texto-centrado {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  color: #444;
  text-align: justify;       /* Justifica el texto */
  line-height: 1.6;          /* Mejora la lectura */	
}

.texto-lateral {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}
.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.infografia-descriptiva-small {
  min-height: 250px; /* opcional: para unificar altura */
}
/* CSS de reportes trimestrales de inversión */

.submenu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
}

.submenu.active {
  display: flex;
}


.inversion-reportes {
  padding: 20px;
  font-family: 'Arial', sans-serif;
}

.section-title {
  font-size: 2rem;
  color: #703341;
  margin-bottom: 20px;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas */
  gap: 15px;
}

.year-group {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.year-toggle {
  width: 100%;
  padding: 10px;
  background-color: #841833;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.year-toggle:hover {
  background-color: #a01c3c;
}

.submenu {
  display: none;
  margin-top: 10px;
  flex-direction: column;
}

.submenu.active {
  display: flex;
}

.submenu a {
  display: block;
  background-color: #eee;
  padding: 8px;
  margin: 4px 0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}

.submenu a:hover {
  background-color: #ddd;
}


/* Botón primario */
.btn-primary {
    background-color: #841833; 
    color: white;
}

.btn-primary:hover {
    background-color: #571e28; /* Azul más oscuro */
}

/* Botón secundario */
.btn-secondary {
    background-color: #6c757d; /* Gris Bootstrap */
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62; /* Gris más oscuro */
}

/* Botón de éxito (verde) */
.btn-success {
    background-color: #703341;
    color: white;
}

.btn-success:hover {
    background-color: #1e7e34;
}

/*css index transparencia */

.contenedor-transparencia {
  padding: 20px;
  font-family: Arial, sans-serif;
}

.centrado {
  text-align: center;
}

.botones-dobles, .botones-triples, .botones-videos, .botones-transmision {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.botones-triples .btn-llamativo {
  background-color: #841833;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.botones-triples .btn-llamativo:hover {
  background-color: #841833;
}

.alineado {
  text-align: center;
  margin: 30px 0;
}

.contacto-contenedor {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
}

.texto-contacto {
  width: 45%;
}

.formulario-contacto {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.formulario-contacto input,
.formulario-contacto textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.formulario-contacto button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.mapa iframe {
  border-radius: 10px;
}

/*tablas de normatividad */

.titulo-normatividad {
  color: #841833;
}

.tabla-normatividad thead {
  background-color: #f9f1f3;
}

.tabla-normatividad th {
  color: #841833;
  vertical-align: middle;
}

.tabla-normatividad td {
  color: #555;
  vertical-align: middle;
}

.tabla-normatividad a img {
  transition: transform 0.2s ease;
}

.tabla-normatividad a:hover img {
  transform: scale(1.1);
}

/* Estilo zebra para las filas */
.tabla-normatividad tbody tr:nth-child(odd) {
  background-color: #fdf7f9;
}

.tabla-normatividad tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Efecto hover en filas */
.tabla-normatividad tbody tr:hover {
  background-color: #ffeef2;
  cursor: pointer;
}

.filtros-normatividad input,
.filtros-normatividad select {
  font-size: 1rem;
  padding: 0.5rem;
}



