<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* SECCION INFORMACION DINAMICAS */

.contenedorCabecera{
  display: flex;
  text-align: center;
  margin-bottom: 0; 
  margin-top: 50px;
}

.columnaCabecera {
  flex: 1;
}

.columnaCabecera h2 {
  font-family: "DM Sans", serif;
  font-optical-sizing: auto;
  font-size: clamp(24px, 4vw, 38px); 
  color: #000000;
  font-weight: 700; /* Peso de la fuente (negrita) */
  margin-bottom: 0px; /* Espacio debajo del tÃ­tulo */
  word-wrap: break-word; 
  margin-top: 0;
}

.circuloVerdeCabecera {
  width: 80px; 
  height: 80px;
  background-color: #00761a; 
  border-radius: 50%;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  margin: 0 auto 10px;
}

.logoCabecera {
  width: 50px;
  height: 50px; 
}

.lineaVerdeCabecera {
  width: 150px; 
  height: 2px; 
  background-color: #00761a; 
  margin: 10px auto 0;
  margin-bottom: 30px;
}

/* INFORMACION PRIMERA PARTE */

.seccionInformacionDinamicas_1 {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 10px;
  }
  
  .contenedorInformacionDinamicas_1 {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
  }
  
  .colummnaInformacionDinamicas_1 h1{
    font-family: "Inter", serif;
    font-size: 18px;
    font-weight: 750;
    font-style: normal;
    color: #37A836;
  }
  
  .colummnaInformacionDinamicas_1 p{
    font-family: "DM Sans", serif;
    font-size: 16px;
    font-weight: 220;
    font-style: normal;
  }

  .contenedorTemasDinamicas {
    display: flex;
    flex-wrap: wrap; /* Permite que las tarjetas se distribuyan en varias filas */
    justify-content: space-between; /* Distribuye espacio entre las tarjetas */
    gap: 10px; /* Espacio entre las tarjetas */
    padding: 10px;
    margin-bottom: 50px;
    
}

@media (max-width: 768px) {
  .contenedorTemasDinamicas {
      flex-direction: column; /* Cambia la direcciÃ³n a vertical */
      align-items: center; /* Centra las tarjetas */
      margin: 50px;
  }

  .tarjetaTemas {
      flex: 1 1 100%; /* Ocupa el 100% del ancho */
      max-width: 90%; /* Opcional: Para que no quede pegado a los bordes */
  }
}

@media (min-width: 1024px) { /* Ajusta el ancho segÃºn necesites */
  .contenedorTemasDinamicas {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* 4 columnas */
      gap: 20px; /* Espaciado entre tarjetas */
      justify-content: center; /* Centrar las tarjetas */
  }
}

.contenedorBotonDinamicas {
  text-align: center; 
  margin-bottom: 90px;
}

.botonDinamicas {
  background-color: #00a724; 
  color: #ffffff; 
  padding: 15px 30px; 
  border-radius: 10px; 
  text-decoration: none; 
  font-size: 18px; 
  font-weight: 700; 
  font-family: "Inter", serif; 
  display: inline-block; 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
</pre></body></html>