.square__container {
    justify-content: center;
    align-items: center;
    margin: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
}

.square__container .square {
    width: 30%;
    position: relative;
    margin: 10px;
    box-sizing: border-box;
    border-radius: 25px;
    background-color: var(--grey1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}
.square__container .square .titulo {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}
.square__container .square .dato {
    font-size: 3em;
    font-weight: bold;
    color: var(--blue);
    margin-top: 30px; /* Asegura que el dato no se superponga con el título */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.square__container .square.estable {
    background-color: var(--green5);
}

.square__container .square.inestable {
    background-color: var(--red5);
}

.square__container .square.estable .dato ,
.square__container .square.inestable .dato {
    color: white;
}