/* Estilo base para la página */
body {
  font-family:Century gothic,Verdana, Geneva, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #333;
  text-align:justify;
  line-height: 1.4em;

}


/* Contenido principal centrado */
main {
  max-width: 80%;
  margin: auto;
  padding: 2em;
  background: white;
}

/* Título principal */
h1 {
  font-size: 5em;
  margin-bottom: 0.7em;
  font-family:"Barlow Condensed" , verdana;
  font-weight: 400;
}
#titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  font-size: 5em;
  font-weight: 300;
  font-family: "Barlow Condensed" ,Verdana;
  line-height: 1;
  text-align:left;
  
  
}

#titulo img.titulo-icono {
  width: clamp(36px, 6vw, 56px);  /* MÁS GRANDE */
  width: 100px;
  height: auto;
  flex-shrink: 0;
}
/* Bloques con icono + texto */
.icono-texto {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  margin-bottom: 1.5em;
}

/* Iconos SVG: pequeños, responsivos, alineados */
.icono-texto svg {
  width: clamp(20px, 4.5vw, 32px);
  height: auto;
  fill: #005847;       /* Color verde Geoparque */
  flex-shrink: 0;
  margin-top: 0.25em;
}

/* Contenedor del texto junto al icono */
.icono-texto div {
  flex: 1;
}

/* Párrafos generales */
p {
  margin: 0.5em 0;
}

/* Listas */
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

/* Markdown básico */
p strong {
  font-weight: 400;
  font-size: 2em;
  display: block;
  font-family:"Barlow Condensed" , verdana;
  text-transform: uppercase;
  margin-bottom: 1em;
  line-height: 1.2;
  text-align:left;
}
strong{
  font-weight: normal;
}
em {
  font-style: normal;
  }
.contenido-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5em;
  flex-wrap: wrap;
}

.contenido-flex .imagen {
  /*flex: 0 0 220px;*/
  //max-width: 40%;
   max-width: 250px;
}

.contenido-flex .imagen img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-top:17px;
}

#texto {
  flex: 1;
  min-width: 250px;
}

@media (max-width: 768px) {
  .contenido-flex .imagen {
    /* flex: 0 0 220px; */
    max-width: 100%;
  }
}		

