.header {
    background: rgba(15, 23, 42, 0.96);
    color: var(--hf-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header__content {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* ===== LOGO ===== */
.header__logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 18px;
    flex-shrink: 0;
}

/* ===== NOMBRE ===== */
.header__brand strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1;
}

.header__brand small {
    display: block;
    color: #CBD5E1;
    font-size: 17px;
    margin-top: 4px;
}

/* ===== MENÚ ===== */
.header__nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header__nav a {
    color: #E5E7EB;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: .25s ease;
    position: relative;
    white-space: nowrap;
}

.header__nav a:hover {
    color: var(--hf-accent);
}

.header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--hf-accent);
    transition: width .3s ease;
}

.header__nav a:hover::after {
    width: 100%;
}

/* ===== BOTÓN ===== */
.header__btn {
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--hf-accent);
    color: var(--hf-primary);
    font-weight: 800;
    font-size: 13px;
    transition: .25s ease;
}

.header__btn:hover {
    background: var(--hf-accent-hover);
    transform: translateY(-2px);
}

/* ===== TABLET ===== */
@media (max-width: 992px) {

    .header__content {
        height: 100px;
    }

    .header__logo {
        width: 75px;
        height: 75px;
    }

    .header__brand strong {
        font-size: 26px;
    }

    .header__brand small {
        font-size: 15px;
    }

    .header__nav {
        gap: 24px;
    }

    .header__nav a {
        font-size: 17px;
    }
}

/* ===== MÓVIL ===== */
@media (max-width: 820px) {

    .header__content {
        height: auto;
        padding: 18px 0;
        flex-direction: column;
        gap: 20px;
    }

    .header__brand {
        justify-content: center;
    }

    .header__logo {
        width: 70px;
        height: 70px;
    }

    .header__brand strong {
        font-size: 24px;
    }

    .header__brand small {
        font-size: 14px;
    }

    .header__nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header__nav a {
        font-size: 16px;
    }

    .header__btn {
        display: none;
    }
}