@font-face {
    font-family: 'Montnormal' ;
    src: url(/FUENTE/Mont-Regular.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MontBold' ;
    src: url(/FUENTE/Mont-Bold.otf);
    font-weight: bold;
    font-style: bold;
}


footer{
    width: 100%;
    background:  #EA5B0C;
    color:#fff;
    padding: 20px 0 20px;
    font-size: 15px;
    line-height: 20px;
}

.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 30px; /* Agrega padding a los lados de row para evitar que el contenido toque los bordes */

}

.col{
    flex-basis:25%;
    padding: 25px;
  
}

.logo{
    width: 50px;
    margin-bottom: 0px;
}

.col h3{
    width:fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    font-family: 'Mont';
}

.col p{
    font-family: 'Montnormal';
    font-weight: normal;
}

.social-icons .fa-brands{
    width:40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color:#000;
    background: #fff;
    margin-right: 15px;
    cursor:pointer;
    transition: background-color 0.3s, color 0.3s; /* Agrega transición para el cambio de color */
}
.social-icons .fa-brands:hover {
    background-color: #8b8b8b; /* Cambia el color de fondo al pasar el cursor */
    color: #fff; /* Cambia el color del ícono al pasar el cursor */
}
footer .copy {
    text-align: center; /* Centra el texto */
    margin-top: 20px; /* Ajusta el margen superior según sea necesario */
    font-size: 10px; /* Modifica el tamaño del texto */
}

/* Estilos del enlace */
.contactanosbar {
    cursor: pointer; /* Cambia el cursor a una mano */
}
