/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("/theme/estilos/generales/template_formato-basico.css");


.titulo-h1-contenido{
    color: var(--parrafo);
    	font-family:"Poppins", sans-serif;
}

.subtitulo-h2-contenido{
    color: var(--parrafo);
    font-family:"Poppins", sans-serif;
    font-weight: 700;
     word-wrap: break-word; /* Permite que las palabras largas se rompan */
    overflow-wrap: break-word; /* Hace lo mismo, pero es más moderno */
    white-space: normal; /* Asegura que el texto no se mantenga en una sola línea */
}
.cuerpo_contenido p{
    color: var(--parrafo);
    font-weight: 500;
    font-size: 1.9rem;
    	font-family:"Poppins", sans-serif;
     word-wrap: break-word; /* Permite que las palabras largas se rompan */
    overflow-wrap: break-word; /* Hace lo mismo, pero es más moderno */
    white-space: normal; /* Asegura que el texto no se mantenga en una sola línea */
}
 .contenedor_detalle p ul li{
    color: var(--parrafo);
    font-weight: 500;
    font-size: 1.9rem;
    font-family:"Poppins", sans-serif;
}

.contenedor_detalle p a{
    color: var(--primario);
    text-decoration: underline;
    
}
 .contenedor_detalle p a:hover,.contenedor_detalle p a:link {
   color: var(--primario);
    text-decoration: underline;
    font-weight: 600;
    
}

.contenedor_detalle p img{
    display: block; margin: 1.5rem auto;

}