.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    padding: 60px 80px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Alegreya', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #00296b;
    margin-bottom: 15px;
}

.hero-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #034078;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.hero-content span {
    color: #277da1;
}

.secoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 100%;
    padding: 80px 20px;
    box-sizing: border-box;
}

.sobre-content, 
.player, 
.desenvolvedora {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%; 
    gap: 40px;
    font-size: 20px;
    border-bottom: 3px dashed #ab3428;
    padding-bottom: 120px;
    margin-bottom: 60px; 
    box-sizing: border-box;
}

.sobre-content img {
    border-radius: 50px;
    width: auto;
    height: 400px;
    max-width: 100%;
    object-fit: cover;
}

.player img {
    border-radius: 50px;
    width: auto;
    height: 300px;
    max-width: 100%;
    object-fit: cover;
}

.sobre-content {
    margin-top: 120px;
}

.sobre-content h1, .player h1 {
    font-family: "Alegreya", sans-serif;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #532a09;
    margin-bottom: 12px;
}

.sobre-content p, .player p, .desenvolvedora p {
    color: #532a09;
    font-size: 18px;
}

.desenvolvedora h1, 
.desenvolvedora h2 {
    font-family: "Alegreya", sans-serif;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    color: #532a09;
    margin-bottom: 12px;
}

.desenvolvedora h2 span {
    color: #7a4a34;
}

.player article p {
    max-width: 40ch;
}

@media (max-width: 1024px) {
    .sobre-content, 
    .player, 
    .desenvolvedora {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-bottom: 80px;
        margin-bottom: 40px;
    }

    .player {
        flex-direction: column-reverse;
    }

    .player article p {
        max-width: 100%;
    }

    .sobre-content img {
        height: 300px;
        width: auto;
    }

    .player img {
        height: 250px;
        width: auto;
    }

    .desenvolvedora {
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .desenvolvedora div,
    .desenvolvedora article,
    .desenvolvedora img {
        max-width: 100% !important;
        height: auto;
    }
}

@media (min-width: 769px) {
    .hero {
        padding: 60px 80px;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .hero {
        padding: 50px 40px;
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .secoes {
        gap: 60px;
        padding: 40px 20px;
    }

    .sobre-content {
        margin-top: 60px;
    }
}

@media (max-width: 425px) {
    .hero {
        padding: 40px 20px;
        min-height: 60vh;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1.05rem;
    }

    .secoes {
        gap: 40px;
        padding: 20px 10px;
    }

    .sobre-content {
        margin-top: 40px;
    }

    .sobre-content,
    .player {
        flex-direction: column;
    }

    .sobre-content img {
        width: 100%;
        max-width: 260px;
        height: auto;
        border-radius: 25px;
    }

    .player img {
        width: 100%;
        max-width: 200px;
        height: auto;
        border-radius: 25px;
    }

    .sobre-content h1, 
    .player h1,
    .desenvolvedora h1, 
    .desenvolvedora h2 {
        font-size: 24px;
    }

    .sobre-content p, 
    .player p, 
    .desenvolvedora p {
        font-size: 15px;
    }
}