/* ================================
SECCION MARCAS
================================ */

.marcas{

background:#020617;
padding:40px 0;
text-align:center;

}


/* TITULO */

.titulo-marcas{

color:#fac94a;
font-size:25px;
margin-bottom:50px;
font-family:Arial, Helvetica, sans-serif;

}


/* CONTENEDOR DEL SLIDER */

.slider{

width:100%;
overflow:hidden;
position:relative;

}


/* PISTA DONDE SE MUEVEN LOS LOGOS */

.slider-track{
display:flex;
align-items:center;
gap:80px; /* separación entre logos */
}

.slide{

flex:0 0 auto;

width:200px;
height:120px;

display:flex;
justify-content:center;
align-items:center;

}

/* LOGOS */

.slide img{

max-width:300px;   /* tamaño del logo */
max-height:100px;

width:auto;
height:auto;

object-fit:contain;

filter:grayscale(100%);
opacity:0.8;

transition:all 0.3s ease;

}
/* HOVER */

.slide img:hover{

filter:grayscale(0%);
opacity:1;
transform:scale(1.1);

}