/* Header com Logo HERMES - Componente Reutilizável */
.header {
    background: linear-gradient(135deg, #1B8EF2 0%, #1B8EF2 100%);
    padding: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 -48px 0 -48px;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    filter: brightness(0) invert(1);
    height: 50px;
    max-width: 200px;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.header-separator {
    width: 5px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.header-subtitle {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    color: white;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    justify-content: flex-end;
    min-height: 100%;
}

.header-right-top {
    display: flex;
    align-items: center;
    gap: 15px;
    align-self: flex-end;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-left {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .header-separator {
        display: none;
    }
    
    .header-right {
        width: 100%;
        align-items: flex-start;
    }
}

