<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.beneficios {
    background-color: #A5C4B44D;
    color: var(--jade);
    font-family: "Antapani Regular";
    padding: 4vw;
}

.beneficios-titulo {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 140%;
    padding-bottom: 3rem;
}

.beneficios-frame {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.fila {
    display: flex;
    width: 100%;
    gap: 1rem;
    align-items: stretch;
}

.beneficios-boton {
    border: 1px solid var(--jade);
    border-radius: 8px;
    padding: 50px;
    text-transform: uppercase;
    font-size: 14px;
    box-sizing: border-box;
    flex: 1; /* Cambiado de flex: 1 1 0 a solo flex: 1 */
}

.titulo-boton {
    font-weight: bold;
}

.beneficios-boton-saber-mas {
    display: block;
    margin-top: 3rem;
    margin-right: 2vh;
    color: var(--jade);
    font-size: 17px;
    font-weight: 400;
    line-height: 140%;
    text-align: right;
}

@media screen and (max-width: 1024px) {
    .beneficios-frame {
        display: flex;
        flex-direction: column;
    }
    
    .fila {
        flex-wrap: wrap;
        justify-content: center;
    }

    .beneficios-boton {
        flex: 1 1 45%;
        min-width: 280px;
    }
}

@media screen and (max-width: 640px) {
    .beneficios-boton {
        flex: 1 1 100%;
        padding: 25px;
        min-width: auto;
    }

    .beneficios-boton-saber-mas {
        text-align: center;
        margin: 3rem auto 0 auto;
    }
}</pre></body></html>