@media (max-width: 950px) {
    .menu {
        justify-content: space-between;
        padding: 0 9% 0 5%;
    }

    .links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 5px;
        background-color: #1f1b15;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        box-shadow: 0 0 10px #e7ba54;
        width: 200px;
        z-index: 2;
    }

    .hamburguer {
        display: block;
    }

    .links.show {
        display: flex;
    }

    .links li {
        margin: 1.5rem 0;
        text-align: center;
    }

    .inscrever-se {
        display: none;
    }

    .hero-conteudo {
        margin-top: 15%;
        width: 100%;
        text-align: center;
    }

    .estatisticas {
        justify-content: center;
    }
}

@media (max-width: 530px) {
    .logo {
        font-size: 1.5rem;
    }

    .hamburguer {
        font-size: 2rem;
    }

    .links {
        top: 55px;
    }

    .hero-conteudo {
        font-size: 1.8rem;
        margin-top: 30%;
    }
}

@media (max-width: 530px) {
    .hero-conteudo {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-conteudo button {
        width: 80%;
        margin: 0;
    }
}