body {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    
    margin: 0;
    background: #009545;
    color: white;
    text-align: center;
}
.encabezado {
    display: flex;
    align-items: center;
    justify-content: center; /* centra todo el bloque */
    gap: 10px;
    margin: 30px;
    }

.logo {
    width: 100px;
}
.textos h2,
.textos h3 {
    margin: 0;
}
.textos {
    display: flex;
    flex-direction: column; 
    text-align: left;
  
}

.bloque_graficos{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bloque1,.bloque2 {
    text-align: center;
    width: 90%;
    max-width: 550px;
    margin: 40px auto;
    padding: 20px;
    background: #25bb67;
    border-radius: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.25);
}
p {
    color: white;
    text-shadow: 0 0 3px black;
}

canvas {
    background: #fff;
    border-radius: 10px;
}

.estado1 {
    margin-top: 15px;
    font-size: 18px;
}