    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: #333;
      background-color: #e9f3ec; /* verde institucional claro */
       
    }
    .hero {
      position: relative;
      background-image: url('images/fondo.jpg');
      background-size: cover;
      background-position: center;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }
    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem;
    }
    .hero-content h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    .hero-content p {
      font-size: 1.2rem;
      margin: 0;
    }

    nav {
      background-color: #ffc72c;
      text-align: center;
      padding: 1.2rem 0; /* un poco más alto */
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    nav a {
      color: #333;
      text-decoration: none;
      margin: 0 2rem; /* separación mayor entre botones */
      font-weight: 600;
      font-size: 1.05rem; /* opcional: agranda un poco el texto */
      transition: color 0.3s;
    }
    
    nav a:hover,
    nav a:focus {
      color: #000;
    }
    
    .container {
      max-width: 900px;
      margin: 2rem auto;
      padding: 2rem;
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }
    footer {
      text-align: center;
      font-size: 0.9rem;
      padding: 1.5rem;
      color: #777;
    }
  
    .cta {
      background-color: #15552b;
      color: white;
      text-decoration: none;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      display: inline-block;
      margin-top: 1rem;
      transition: background-color 0.3s;
    }
    .cta:hover {
      background-color: #eeaf04;
    }
    .photo {
      text-align: center;
      margin-bottom: 2rem;
    }
    .photo img {
      width: 220px;
      height: 220px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #ffc72c;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }
    #galeria {
    margin-top: 4rem;
    }
    
    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    
    .galeria-grid img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .galeria-grid p {
      text-align: center;
      margin-top: 0.5rem;
      font-size: 0.95rem;
    }
    
    /* Lightbox base */
    .lightbox {
      display: inline-block;
      position: relative;
      cursor: zoom-in;
    }
    
    /* Imagen ampliada */
    .lightbox:target::before {
      content: "";
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1000;
    }
    
    .lightbox:target img {
      position: fixed;
      top: 50%;
      left: 50%;
      width: auto;
      max-width: 90%;
      max-height: 90%;
      transform: translate(-50%, -50%);
      z-index: 1001;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    }
    
    /* Ocultar las otras imágenes cuando hay una activa */
    .lightbox:target ~ * {
      display: none;
      
    }
    
    .redes-sociales {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 1rem;
    }
    
    .redes-sociales a img {
      filter: grayscale(100%);
      opacity: 0.8;
      transition: opacity 0.3s, filter 0.3s;
    }
    
    .redes-sociales a:hover img,
    .redes-sociales a:focus img {
      filter: grayscale(0%);
      opacity: 1;
    }
    
    .lineamientos-section {
  padding: 2rem 2rem;
  border-radius: 16px 16px 0 0;

}

.lineamientos-section h2 {
  color: #15552b;
  margin-bottom: 1.5rem;
}

.lineamientos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  
}



.lineamiento-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
    align-self: flex-start;
    
}

.lineamiento-card h3 {
  color: #15552b;
  margin-bottom: 1rem;
  text-align: center;
}

.lineamiento-card p {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #444;
}

.boton-lineamiento {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: #15552b;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.boton-lineamiento:hover {
  background-color: #10773a;
}

.icono-direccion {
  width: 100px;
  height: 100px;
  object-fit: contain; 
    margin-bottom: 1rem;
    display: block;
    margin: 0 auto 0rem auto;
}

.lista-lineamientos {
  text-align: left;
  padding-left: 1.2rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.75rem;
  color: #444;
  line-height: 1.3;
}

.lista-lineamientos li {
  margin-bottom: 0.3rem;
}
.gobernanza-section {
  
  border-radius: 0 0 16px 16px;
  padding: 3rem 1rem;

}

.gobernanza-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

details,
details summary,
details ul,
details li {
  font-size: 1rem; /* Asegura el mismo tamaño de texto */
  line-height: 1.6; /* Ajusta según el interlineado de tu web */
  font-family: inherit; /* Usa la fuente general del sitio */
  color: inherit; /* Mantén el color general */
}
details ul {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
details li {
  margin-bottom: 0.5rem;
}

.titulo-direccion {
  text-align: center;
  color: #15552b;
  margin-bottom: 2rem;
}

.lista-lineamientosb {
  line-height: 1.6;
  padding-left: 1.2rem;
  color: #333;
  font-size: 1rem;
}

.texto-justificado {
  text-align: justify;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
}

.lista-lineamientosb {
  padding-left: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  list-style-position: outside;
}

.lista-lineamientosb li {
  margin-bottom: 1rem;
  text-align: justify;
}


.vision-card {
  background-color: #fff9e5; /* amarillo pastel institucional */
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 2rem auto;
  max-width: 1000px;
  text-align: justify;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
}

.vision-card h3 {
  color: #15552b;
  margin-bottom: 1rem;
  text-align: center;
}

