.boton {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 150px;
    height: 40px;
    color: #FFFFFF;
    background-color: var(--azul);
    border-radius: 20px;
    cursor: pointer;
    margin-top: 40px;
    margin-bottom: 40px;

}

.centrado {
    text-align: center;
}
.boton_icono {
    display: none;
}

.boton:hover {
    background: var(--azul);
    color: var(--blanco);
    box-shadow: 0 0 5px var(--azul),
    0 0 25px var(--azul),
    0 0 50px var(--azul),
    0 0 200px var(--azul);
    transition: all .3s ease-in-out;
    width: 250px;
    .boton_icono {
        display: block;
    }
}


.descarga {
    display: flex;
    justify-content:space-between;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    width: 400px;
    height: 40px;
    color: black;
    border: solid 1px var(--azul);
    border-radius: 20px;
    cursor: pointer;

}

.descarga:hover {
    opacity: .8;
    color: black;
    transition: all .3s ease-in-out;
    background-color: var(--azul);

    .boton_icono {
        display: block;
        transition: all .3s ease-in-out;
    }
}


/* Los estilos del formulario de contacto viven en css/formulario.css.
   Aquí había una sección heredada de la plantilla original (.campo_input,
   .etiqueta_input, .legal) que ningún elemento usaba y cuyo selector
   `form .campo` pisaba al del formulario real por especificidad. */








