.hero {
    position: relative;
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        url("/images/hero/eletricista-certificado-medicoes-quadro-eletrico.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(6, 20, 40, 0.98) 0%,
            rgba(6, 20, 40, 0.95) 35%,
            rgba(6, 20, 40, 0.80) 60%,
            rgba(6, 20, 40, 0.40) 82%,
            rgba(6, 20, 40, 0.10) 100%);
}

.hero__container {
    position: relative;
    z-index: 1;

    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero__content {
    max-width: 720px;
}

.hero__eyebrow {
    margin: 0 0 1.25rem;

    color: #FFD400;

    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0 0 1.5rem;

    color: #FFFFFF;

    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero__title span {
    display: block;
    color: #FFD400;
}

.hero__description {
    max-width: 500px;
    margin: 0 0 2rem;

    color: #FFFFFF;

    font-size: 1.2rem;
    line-height: 1.6;
}

.hero__eyebrow-break {
    display: none;
}

@media (max-width: 768px) {
    .hero__eyebrow-break {
        display: block;
    }
}