#home section {
    padding-top: 96px;
    padding-bottom: 96px;
}

#banner-home {
    align-items: center;
    color: var(--branco);
    display: flex;
    height: 82vh;
    min-height: 620px;
    overflow: hidden;
    position: relative;
}

.banner-home-media {
    inset: 0;
    position: absolute;
    z-index: -2;
}

.banner-home-media::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.52));
    content: "";
    inset: 0;
    position: absolute;
}

.banner-home-media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.banner-content {
    max-width: 590px;
    padding-top: 70px;
}

.banner-content p {
    font-size: 1.04rem;
    margin-top: 18px;
    max-width: 540px;
}

#quem-somos {
    background: var(--cinza);
}

#quem-somos .row,
#projetos .row {
    align-items: center;
}

.video-placeholder {
    border-radius: 8px;
    cursor: pointer;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.video-placeholder img.video-thumbnail,
.video-placeholder video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.play-button {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    height: 76px;
    left: 50%;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
}

#servicos-home {
    background: #e7ecef;
    text-align: center;
}

.service-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    margin-top: 42px;
}

.service-card {
    color: var(--branco);
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    background: rgba(37, 36, 36, 0.78);
    content: "";
    inset: 0;
    mix-blend-mode: multiply;
    position: absolute;
    z-index: 1;
}

.service-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.service-card h3 {
    inset: auto 18px 22px;
    position: absolute;
    text-align: left;
    text-transform: uppercase;
    z-index: 2;
}

#banner-secundario {
    align-items: center;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.22)), url("/assets/img/banner-laser.webp");
    background-position: center;
    background-size: cover;
    color: var(--branco);
    display: flex;
    min-height: 370px;
}

#banner-secundario .content {
    max-width: 620px;
}

#banner-secundario p {
    font-size: 1.2rem;
}

#projetos {
    background: var(--branco);
}

#projetos .foto {
    border-radius: 8px;
    height: 560px;
    object-fit: cover;
    width: 100%;
}

.projetos-box {
    columns: 2;
    list-style: square;
    margin: 22px 0 0 18px;
}

.projetos-box li {
    break-inside: avoid;
    margin-bottom: 8px;
}

.projetos-box li::marker {
    color: var(--laranja);
}

#contato .container {
    background: var(--preto);
    border-radius: 8px;
    color: var(--branco);
    padding: 52px;
}

#depoimentos,
#faq {
    background: var(--cinza);
    text-align: center;
}

@media (max-width: 999px) {
    #banner-home {
        min-height: 690px;
        text-align: center;
    }

    .banner-home-media::after {
        background: rgba(0, 0, 0, 0.62);
    }

    .banner-content {
        margin: 0 auto;
        max-width: 350px;
        padding-top: 80px;
    }

    .banner-content .button {
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
    }

    .video-placeholder,
    #projetos .foto {
        height: 360px;
        margin-bottom: 24px;
    }

    #banner-secundario {
        text-align: center;
    }

    .projetos-box {
        columns: 1;
    }

    #contato .container {
        border-radius: 0;
        padding: 42px 24px;
    }
}

@supports (content-visibility: auto) {
    #quem-somos,
    #servicos-home,
    #banner-secundario,
    #projetos,
    #contato,
    #depoimentos,
    #faq {
        content-visibility: auto;
        contain-intrinsic-size: 720px;
    }
}
