:root
{
    --color_base_boton:#CC3637;
    --color_base_boton_hover: #85594C;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.boton_contacto
{
    width: 250px;
    height: 50px;
    border: 2px solid var(--color_base_boton);
    background-color: var(--color_base_boton);
    cursor: pointer;
}
.boton_arriba
{
    width: 0%;
    height: 50%;
    /*border: 1px solid red;*/
    background-color: var(--color_base_boton_hover);
    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_base_boton_hover);
    /*border: 1px solid red;*/
    transition: width 0.5s;
}
.cont_palabra_en_boton
{
    z-index: 2;
    position:relative;
    bottom: 50px;
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid red;*/
}
.cont_palabra_en_boton p
{
    font-size: 20px;
    font-weight: 600;
    color: white;
    padding: 0px !important;
    margin: 0px !important;
    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 p
{
    color: white;
}