/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    min-height: 82px;
}

/* =========================
   BRAND
========================= */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-black);
}

.brand-text span {
    margin-top: 4px;
    font-size: 0.9rem;
    color: var(--color-text-soft);
    font-weight: 600;
}

/* =========================
   NAV
========================= */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-soft);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================
   FOOTER BRAND AJUSTE
========================= */
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-brand .brand-text strong {
    color: var(--color-white);
}

.footer-brand .brand-text span {
    color: rgba(255, 255, 255, 0.72);
}