.empresa-hero {
    position: relative;
    background: #20211d;
    min-height: 690px;
    overflow: hidden;
}

.empresa-hero__lines {
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    background-image:
        linear-gradient(135deg, transparent calc(50% - 1px), rgba(0, 128, 255, 0.18) 50%, transparent calc(50% + 1px)),
        linear-gradient(90deg, rgba(0, 128, 255, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(0, 128, 255, 0.12) 1px, transparent 1px);
    background-size: 100% 100%, 160px 160px, 160px 160px;
    opacity: 0.55;
}

.empresa-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 132px 54px 72px;
    min-height: 690px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.empresa-hero__content {
    width: min(100%, 432px);
    position: relative;
    z-index: 1;
}

.empresa-hero__title {
    margin: 0 0 18px;
    font-size: 60px;
    line-height: 0.93;
    font-weight: 300;
    letter-spacing: -0.04em;
    color: #0080ff;
}

.empresa-hero__description {
    margin: 0;
    max-width: 360px;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 768px) {
    .empresa-hero {
        min-height: 400px;
    }

    .empresa-hero__lines {
        width: 100%;
        opacity: 0.3;
    }

    .empresa-hero__container {
        justify-content: flex-start;
        align-items: center;
        min-height: 400px;
        padding: 90px 20px 40px;
    }

    .empresa-hero__title {
        font-size: 36px;
    }
}
