/* ==========================================================
   HEADER
========================================================== */

.header{

    width:100%;
    background:#ffffff;
    border-bottom:1px solid #ececec;

}

.header-container{

    width:min(1280px,95%);
    margin:auto;

    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.logo img{

    height:58px;
    display:block;

}


/* ==========================================================
   MENÚ ESCRITORIO
========================================================== */

.menu{

    display:flex;
    align-items:center;
    gap:40px;

}

.menu a{

    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;

    transition:.25s;

}

.menu a:hover{

    color:#0A2540;

}


/* ==========================================================
   BOTÓN CONTACTO
========================================================== */

.btn-contacto{

    background:#0A2540;
    color:#fff !important;

    padding:14px 24px;

    border-radius:50px;

    font-weight:600;

}

.btn-contacto:hover{

    background:#0076bd;

}


/* ==========================================================
   HAMBURGUESA
========================================================== */

.hamburger{

    display:none;

    width:48px;
    height:48px;

    background:none;

    border:none;

    cursor:pointer;

    padding:0;

}

.hamburger span{

    display:block;

    width:28px;
    height:3px;

    margin:6px auto;

    background:#222;

    border-radius:20px;

    transition:.3s;

}


/* ==========================================================
   MENÚ MÓVIL
========================================================== */

.mobile-menu{

    display:none;

    position:fixed;

    top:90px;
    left:0;

    width:100%;

    background:#fff;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    z-index:999;

}

.mobile-menu a{

    display:block;

    padding:16px 0;

    color:#222;

    text-decoration:none;

    font-size:18px;

    border-bottom:1px solid #eee;

}

.mobile-menu a:last-child{

    border:none;

}

.btn-mobile{

    margin-top:25px;

    background:#0A2540;

    color:#fff !important;

    text-align:center;

    border-radius:50px;

    padding:16px;

    font-weight:600;

}


/* ==========================================================
   MENÚ ABIERTO
========================================================== */

.mobile-menu.open{

    display:block;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

.menu{

    display:none;

}

.hamburger{

    display:block;

}

.header-container{

    height:75px;

}

.logo{

    gap:10px;

}

.logo img{

    height:38px;

}

.logo-title{

    font-size:22px;
    line-height:1;

}

.logo-subtitle{

    font-size:11px;
    margin-top:2px;

}

.mobile-menu{

    top:75px;

}

}

.logo{

    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:none;

}

.logo img{

    height:58px;
    display:block;

}

.logo-text{

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.logo-title{

    font-size:34px;
    font-weight:800;
    line-height:1;
    color:#0A2540;
    letter-spacing:-1px;

}

.logo-subtitle{

    margin-top:4px;
    font-size:14px;
    font-weight:500;
    color:#666;

}