.mi-boton-hover a.wp-block-button__link:hover {
    background-color: white !important;
    color: black !important;
    border: 2px solid black !important;
    transition: all 0.3s ease;
}

.clase-texto:hover {
    color: #0EA5E9 !important;   /* Azul primary de Bootstrap */
    font-weight: bold !important;
}
/* Agregar clase personalizada */
.tick-list {
    list-style-type: none !important;
    padding-left: 0;
}

.tick-list li {
    padding-left: 1em;
    text-indent: -1em;
}

.tick-list li::before {
    content: "✓ ";
    padding-right: 8px;
    color: #0EA5E9; /* Verde para el tick */
    font-weight: bold;
}
/* Ocultar marcador nativo */
.tick-listparrafo {
    display: block;             /* Para que cada span ocupe línea completa */
    position: relative;         /* Para posicionar el tick */
    padding-left: 1.5em;        /* Espacio para el tick */
    margin-bottom: 0.3em;       /* Separación opcional entre líneas */
}

.tick-listparrafo::before {
    content: "✓";              /* Tick personalizado */
    position: absolute;
    left: 0;
    color: #0EA5E9;
    font-weight: bold;
    font-size: 1em;
    line-height: 1;
}