.boton-cta {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    height: 34px; 
    line-height: 1.17; 
    /*margin-top: 30px; */
    padding: 1px 19px 0 19px; 
    text-align: left; 
    text-decoration: none; 
    font-size: .75rem; 
    letter-spacing: .06rem; 
    cursor: pointer; 
    font-weight: 600; 
    background-color: #9e1b32; 
    color: #fff;
    transition: color .4s, background-color .4s, box-shadow .4s;
}

.round-margins {
    border-radius: 4px;
}

.boton-cta::before {
    content: "\2794";
    
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: .75rem;
    margin-right: .4rem;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1.17;
    margin-left: .2em;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0;
    padding-bottom: 1.5px;
}

.boton-cta:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 0 1px #000 inset;
    text-decoration: none;
}

.link-cta a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: transparent;
    -webkit-text-decoration-color: transparent;
    font-size: .75rem; 
    letter-spacing: .06rem; 
    cursor: pointer; 
    font-weight: 600;
    transition: color .4s, text-decoration-color .4s;
}

.link-cta a:hover {
    color: #9e1b32;
    text-decoration: underline;
    text-decoration-color: #9e1b32;
    -webkit-text-decoration-color: #9e1b32;
}

.link-cta::before {
    content: ">";
    color: #9e1b32;
    font-weight: 700;
    margin-right: 5px;
}