/* ===== GLOBAL ===== */

html,
body{
    width:100%;
    max-width:100%;
    min-height:100%;
    margin:0;
    padding:0;
    overflow-x:hidden !important;
}

body{
    font-family:Arial,sans-serif;
    background:#f4f6f8;
}

#page{
    width:100%;
    min-height:100vh;
}

/* ================================= */
/* HEADER */
/* ================================= */

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:1000;
    padding:10px 15px;
    min-height:70px;
    box-sizing:border-box;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.wrap-full{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

#header .logo{
    display:block;
    max-width:180px;
}

/* ================================= */
/* MENU */
/* ================================= */

#menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border:none;
    background:#981a32;
    color:#fff;
    border-radius:6px;
    font-size:26px;
    cursor:pointer;
    transition:.25s ease;
}

#menu-toggle:hover{
    background:#7b1328;
}

#nav{
    display:none;
    position:absolute;
    top:75px;
    right:0;
    width:270px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    overflow:hidden;
}

#nav.active{
    display:block;
}

#nav ul{
    display:flex;
    flex-direction:column;
    margin:0;
    padding:0;
    list-style:none;
}

#nav ul li a{
    display:block;
    width:100%;
    padding:16px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
    transition:.25s ease;
}

#nav ul li a:hover{
    background:#e57373;
    color:#fff;
    padding-left:22px;
}

/* ================================= */
/* CONTENEDOR */
/* ================================= */

.container{
    width:95%;
    max-width:850px;
    margin:140px auto 40px auto;
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
}

/* ================================= */
/* FORM / TEXT */
/* ================================= */

h2{
    text-align:center;
    color:#333;
    margin-bottom:30px;
}

.form-control{
    border-radius:6px !important;
}

.btn-primary,
.btn-secondary{
    width:100%;
}

/* ================================= */
/* IMAGES */
/* ================================= */

video,
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ================================= */
/* BRANDS - PC (DEFAULT) */
/* ================================= */

.brands-section .wrap{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:center;
}

.brands{
    text-align:center;
    width:100%;
}

.brands-list{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
    gap:40px;
    justify-items:center;
    align-items:center;
    list-style:none;
    padding:0;
    margin:30px auto 0 auto;
    max-width:1100px;
}

.brands-list img{
    border:2px solid #000;
    border-radius:6px;
    padding:6px;
    background:#fff;
    max-width:180px;
    width:100%;
    transition:.2s ease;
}

.brands-list img:hover{
    transform:scale(1.05);
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media(max-width:768px){

    #header{
        padding:10px;
    }

    #header .logo{
        max-width:150px;
    }

    #nav{
        width:240px;
    }

    .container{
        width:95%;
        margin:120px auto 25px auto;
        padding:20px;
    }

    .brands-list{
        grid-template-columns:1fr;
        gap:20px;
    }

    .brands-list img{
        max-width:140px;
    }
}