/*****************************HEADER*****************************/

.header{
    font-size: larger;
    position: fixed;
    width: 100%;
    top:0;
    left: 0;  
    box-sizing: border-box; 
    z-index: 10;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color:#62bee2;
    border-bottom: 1px solid #ccc;
}

.barra{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.barra_grid{
    display: grid;
    grid-template-columns: repeat(2,minmax(7rem,1fr));
    align-self: stretch;
}
.h_opt,.ico_wpp{
    font-size: medium;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.identidade{
    display: flex;
    align-items: center;
    font-size: large;
    padding-left: 1rem;
}
.barra_mobile{
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #afeaff;
    
}
.blank_screen{
    display: none;
    background-color: rgba(0, 0, 0, 0.1);
    height: 100vh;
    backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
    .header{
        background-color: rgba(0,0,0,0);
        border-bottom: none;
    }
    .barra{
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color:#62bee2;
        border-bottom: 3px solid #ccc;
    }
    .ico_wpp{
        padding-right: 1rem;
    }
    .barra_grid{
        display: inherit;
    }
    .h_opt{
        display: none;
    }
    .identidade{
        font-size: x-large;
        padding-left: 0rem;
    }
}

.h_opt:visited{
    color: inherit;
}

.h_opt:hover{
    background-color: skyblue;
    color: white;   
}
.icone{
    display: flex;
    margin-right: 0.5rem;    
}
/****************************************************************/