/* =========================
   BARRA TITULO GLOBAL
========================= */

.barra-titulo-spacer{
    height:0px;
    background:#ffffff;
}

.barra-titulo-wrapper{
    width:100%;
    background:rgba(235, 247, 253, .96);
    backdrop-filter:blur(8px);
    border-bottom:none;
    box-shadow:0 3px 10px rgba(0,0,0,.035);
    position:relative;
    z-index:20;
    margin-bottom:16px;
    border-radius:0 0 16px 16px;
    overflow:hidden;
}

.barra-titulo-content{
    width:100%;
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 26px;
    background:linear-gradient(
            180deg,
            rgba(235, 247, 253, .96) 0%,
            rgba(224, 240, 250, .92) 100%
    );
    border-radius:0 0 16px 16px;
}

/* =========================
   IZQUIERDA
========================= */

.barra-titulo-left{
    min-width:190px;
    text-align:left;
    color:#12303f;
    font-weight:800;
    letter-spacing:.3px;
    line-height:1.25;
    text-transform:uppercase;
}

.barra-titulo-empresa{
    font-size:13px;
    font-weight:900;
}

.barra-titulo-pais{
    font-size:12px;
    font-weight:800;
    opacity:.86;
    margin-top:2px;
}

/* =========================
   CENTRO
========================= */

.barra-titulo-center{
    flex:1;
    text-align:center;
    padding:0 18px;
    line-height:1.25;
}

.barra-titulo-main{
    font-size:15px;
    font-weight:900;
    letter-spacing:.45px;
    color:#0b4f93;
    text-transform:uppercase;
}

.barra-titulo-sub{
    font-size:13px;
    font-weight:800;
    color:#1d4ed8;
    margin-top:3px;
}

/* =========================
   DERECHA / LOGO
========================= */

.barra-titulo-right{
    min-width:190px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.barra-titulo-right img{
    max-height:40px;
    width:auto;
    border-radius:10px;
    padding:4px 8px;
    background:rgba(255,255,255,.82);
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px){

    .barra-titulo-wrapper{
        margin-bottom:12px;
        border-radius:0 0 12px 12px;
    }

    .barra-titulo-content{
        min-height:48px;
        padding:7px 12px;
        gap:8px;
        border-radius:0 0 12px 12px;
    }

    .barra-titulo-left{
        min-width:78px;
    }

    .barra-titulo-empresa{
        font-size:11px;
    }

    .barra-titulo-pais{
        font-size:10px;
        margin-top:1px;
    }

    .barra-titulo-center{
        padding:0 6px;
    }

    .barra-titulo-main{
        font-size:12px;
        line-height:1.2;
        letter-spacing:.25px;
    }

    .barra-titulo-sub{
        font-size:11px;
        line-height:1.2;
        margin-top:2px;
    }

    .barra-titulo-right{
        min-width:78px;
    }

    .barra-titulo-right img{
        max-height:30px;
        padding:2px 5px;
        border-radius:7px;
    }
}

@media (max-width: 480px){

    .barra-titulo-content{
        min-height:44px;
        padding:6px 8px;
    }

    .barra-titulo-left{
        min-width:60px;
    }

    .barra-titulo-right{
        min-width:60px;
    }

    .barra-titulo-empresa{
        font-size:10px;
    }

    .barra-titulo-pais{
        font-size:9px;
    }

    .barra-titulo-main{
        font-size:11px;
    }

    .barra-titulo-sub{
        font-size:10px;
    }

    .barra-titulo-right img{
        max-height:26px;
    }
}