.secao {
    padding: 80px 40px;
}

.div-section {
    max-width: 1200px;
    margin: 0 auto;
}

.titulo-produto {
    margin-bottom: 12px;

    color: #888;

    font-size: 14px;
    text-transform: uppercase;
}

.subtitulo-produto {
    margin-bottom: 16px;

    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
}

.descricao-produto {
    max-width: 600px;

    color: #555;

    font-size: 16px;
    line-height: 1.6;
}

.media-produto {
    width: 50%;
    aspect-ratio: 16/9;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 32px;

    background: #f0f0f0;

    border-radius: 8px;

    color: #aaa;
    font-size: 14px;
}

/* HERO */

.projetos-futuros-home {
    display: flex;
    align-items: center;
    justify-content: space-around;

    flex-wrap: wrap;

    gap: 80px;

    padding: 2rem 5%;
}

.projetos-futuros-home div {
    width: 50%;
}

.projetos-futuros-home span {
    color: var(--azul-principal);
    font-weight: bold;
}

.projetos-futuros-home h1 {
    margin-bottom: 20px;

    color: var(--branco);

    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -1px;
}

.projetos-futuros-home p {
    margin: 15px 0;

    color: #999898;
}

.projetos-futuros-home button {
    padding: 15px;

    background: var(--azul-principal);

    border: none;
    border-radius: 10px;

    color: var(--cor-fonte);
    font-weight: bold;

    cursor: pointer;

    transition:
        background 0.3s,
        transform 0.3s;
}

.projetos-futuros-home button:hover {
    background: var(--azul-principal-hover);
    transform: scale(1.05);
}

/* GIF */

#background-projetos-futuros {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 40%;
    min-width: 400px;

    overflow: hidden;

    background-size: cover;
    background-repeat: no-repeat;
}

#background-projetos-futuros img {
    width: 400px;
    height: auto;

    border-radius: 60px;
}

/* PROJETOS */

.secao-projetos {
    min-height: 700px;
    width: 100%;
}

.fotos-projeto {
    display: flex;
    justify-content: space-around;

    gap: 20px;

    padding: 2rem 5%;
}

.info-fotos-projeto {
    flex: 1 1 500px;

    width: min(500px, 100%);
    max-width: 1000px;

    padding-top: 100px;
}

.info-fotos-projeto h2 {
    margin-bottom: 1rem;

    font-size: clamp(2rem, 5vw, 62px);
}

.info-fotos-projeto p {
    font-size: clamp(1rem, 2vw, 24px);
}

/* RESPONSIVIDADE */

@media (max-width: 900px) {

    .projetos-futuros-home div {
        width: 100%;
    }

    #background-projetos-futuros {
        max-width: 100%;
        min-width: auto;
    }

    .fotos-projeto {
        flex-direction: column;
    }
}


.barra-progresso {
    width: 100%;
    height: 3px;
    background: var(--cor-fonte);
}
#progresso {
    width: 0%;
    height: 100%;
    background: var(--azul-principal);
    transition: 0.1s linear;
}  

.animar {
    opacity: 0;
    transition: 0.1s linear;
}

