.hero {
    width: 100%;
    background-color: var(--cor-primaria);
    padding: calc(var(--t-header-desktop) + 128px) 0 128px 0;
    position: relative;
}

.hero > div {
    width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 128px;
}

.hero .mancha {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero .placas {
    width: calc(100% - 50% - 64px);
    height: auto;
    position: relative;
    z-index: 2;
}

.hero .apresentacao {
    width: calc(100% - 50% - 64px);
    height: auto;
    display: flex;
    flex-direction: column;
    color: var(--cor-branco);
    position: relative;
    z-index: 2;
}
.hero .apresentacao h1 {
    font-size: var(--f-size-xl);
    font-weight: 700;
    line-height: 96px;
}
.hero .apresentacao p {
    font-size: var(--f-size-s);
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 84px;
}

@media (max-width: 1200px) {
    .hero .placas {
        display: none;
    }
}