/* Header */

.fl-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background-color: var(--color-white);
    border-bottom: 2px solid var(--color-border-light);
    box-shadow: 0 2px 12px rgba(13,31,60,.07);
    transition: box-shadow var(--transition);
}

.fl-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(13,31,60,.12);
}

.fl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-8);
}

.fl-header__logo {
    flex-shrink: 0;
}

.fl-header__logo a {
    display: block;
}

.fl-logo img {
    display: block;
    width: auto;
    height: auto;
}

.fl-logo--header img {
    max-height: 56px;
    max-width: 200px;
    object-fit: contain;
}

.fl-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.fl-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.fl-header__whatsapp { display: none; }

/* Exibir WhatsApp no header em telas maiores */
@media (min-width: 1024px) {
    .fl-header__whatsapp { display: inline-flex; }
}
