body,
html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    position: relative;
}

.bgImage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/campo_futebol_1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.bgOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 10px;
    margin: 0 auto;
}

#infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#titulo {
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 100;
}

.descricao, .descricao-blocos {
    color: #ffffff;
    text-align: center;
    font-weight: 100;
}

#logoImg {
    height: 90px;
}

.bgimg-1 {
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

#topo {
    gap: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#divisor {
    height: 65%;
    width: 2px;
    background-color: #f4f3f2;
    opacity: 0.4;
    display: flex;
    align-self: center;
    justify-self: center;
}

/*#03A4AA #003F5E #000000 #252337*/
.rounded-button,
.rounded-button-2 {
    color: #ffffff;
    width: 180px;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.rounded-button {
    background-color: #454f50;
}

.rounded-button-2 {
    background-color: #03A4AA;
}

span {
    color: #ffffff;
}

.rounded-button:hover,
.rounded-button-2:hover {
    background-color: #016b6e;
    transform: scale(1.05);
}

.button-text {
    display: block;
    font-size: 0.9em;
    margin-top: 5px;
}

.button-medium {
    font-size: 1.1em;
    font-weight: 600;
}

footer {
    text-align: center;
    font-size: 0.9em;
    color: #333;
    position: absolute;
    top: 91%;
}

footer p {
    color: #ffffff;
}

footer a {
    text-decoration: none;
    font-weight: bold;
    color: #03A4AA;
    transition: color 0.3s;
}

footer a:hover {
    color: #016b6e;
}

.border-topo {
    border-radius: 25px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
    padding: 10px 20px;
    display: inline-block;
}

.mobile {
    display: none;
}

.bloco-entrar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.descricao-blocos {
    font-size: 16px;
    height: 40px;
    display: flex;
    align-items: center;
}


@media (max-width: 768px) {
    #topo {
        min-width: 80%;
        gap: 25px;
    }

    #titulo {
        margin-bottom: 5px;
    }

    .descricao {
        margin: 0 17px;
        padding-bottom: 10px;
        font-size: 14px;
        display: none;
    }

    .rounded-button,
    .rounded-button-2 {
        width: 100px;
        font-size: 12px;
    }

    .mobile {
        display: block;
    }

    .descricao-blocos {
        font-size: 14.5px;
    }
}