:root
{
    --color_fondo_animado:rgb(255, 255, 255);
    --color_fondo_estatico:rgb(33, 95, 61);
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.boton_contacto
{
    width: 250px;
    height: 60px;
    border: 2px solid var(--color_fondo_estatico);
    background-color: var(--color_fondo_estatico);
    cursor: pointer;
}
.boton_arriba
{
    width: 0%;
    height: 50%;
    /*border: 1px solid red;*/
    background-color: var(--color_fondo_animado);
    transition: width 0.5s;
}
.boton_abajo
{
    width: 100%;
    height: 50%;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.cont_barra_color
{
    width: 0%;
    height: 100%;
    background-color: var(--color_fondo_animado);
    /*border: 1px solid red;*/
    transition: width 0.5s;
}
.cont_palabra_en_boton
{
    z-index: 2;
    position:relative;
    bottom: 55px;
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid red;*/
}
.cont_palabra_en_boton h6
{
    font-size: 20px;
    font-weight: 400;
    color: white;
    transition: all 0.3s ease;
}

.boton_contacto:hover .boton_arriba
{
    width: 100%;
}
.boton_contacto:hover .boton_abajo .cont_barra_color
{
    width: 100%;
}
.boton_contacto:hover .cont_palabra_en_boton h6
{
    color: var(--color_fondo_estatico);
}