:root
{
    --color_boton_base: #002D58;
    --color_boton_base_hover: #F5F5DC;
    --color_text:#555555;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.boton_principal
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cont_interno_boton
{
    width: 250px;
    height: 50px;
    background-color: var(--color_boton_base);
    border: 1px solid rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.boton_principal:hover
{
    border-top: 1px solid rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}
.boton_principal:hover .cont_interno_boton
{
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 1);
}

.fondo_white:hover
{
    border-top: 1px solid var(--color_boton_base);
    border-bottom: 1px solid var(--color_boton_base);
    color: var(--color_boton_base);
}
.fondo_white_int:hover
{
    border: 1px solid var(--color_boton_base) !important;
}