#site-header {
    display: flex;
    width: 100%;
    height: 100vh;
}

.header-left {
    flex: 1;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 64px;
    gap: 12px;
}

.header-nome {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.header-cargo {
    font-family: "Montserrat", sans-serif;
    font-size: 5rem;
    color: #ffffff80;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.header-right {
    width: 42%;
    background: #000;
    overflow: hidden;
    flex-shrink: 0;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
}

@media (max-width: 768px) {
    #site-header {
        flex-direction: column;
        height: 100vh;
    }

    .header-left {
        padding: 32px 28px 28px;
        gap: 8px;
        flex: 1;
        justify-content: flex-end;
    }

    .header-nome {
        font-size: clamp(3rem, 16vw, 5rem);
        letter-spacing: -1px;
    }

    .header-cargo {
        font-size: clamp(1rem, 5vw, 1.8rem);
        letter-spacing: 3px;
    }

    .header-right {
        width: 100%;
        height: 45vh;
        flex-shrink: 0;
        order: -1;
    }
}
