.flechitas {
    position: relative;
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #00225F;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid #00225F;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 #00225F;
}

.flechitas:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 #ff3c50;
}

.flechitas:active {
    transform: scale(0.9);
}

.flechitas2 {
    position: relative;
    display: inline-block;
    margin: 10px 0px 10px 0px;
    padding: 5px 45px 5px 45px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    color: darkslategrey;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 0px solid #ff3c50;
    border-radius: 20px;
    box-shadow: inset 0 0 0 0 white;
    font-weight: bolder;
}

.flechitas2:hover {
    color: #ff3c50;
    box-shadow: inset 0 -100px 0 0 white;
    background: white;

}

.flechitas2:active {
    transform: scale(0.9);
}

.masInformacion {
    color: #F70F31;
}

.seccionMovil {
    width: 80%;
}

@media (max-width:1000px) {
    .seccionMovil {
        width: 100%;
    }
}

@media (max-width:575px) {
    .seccionMovil {
        width: 100%;
    }
}