/* Animação pulse */
@keyframes pulse {
    0% {
        background-color: #000000;
        /* Verde inicial */
    }

    50% {
        background-color: #333333;
        /* Verde mais claro */
    }

    100% {
        background-color: #000000;
        /* Volta ao verde inicial */
    }
}

:root {
    --mainColor: #000000;
    --secondaryColor: #eb0000;
    --color-btn: #00b100;
    --color-btn-hover: #03c503;
    --text: #ffffff;
    --text-hover: #eeeeee;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.content-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.text-header {
    width: 60%;
    margin: 0 auto;
}

.text-header h1 {
    font-size: 30px;
}

.text-header p {
    font-size: 14px;
}

.bg-black {
    background-color: #000000;
}

.logo {
    width: 6rem;
}

.carrossel {
    width: 50%;
}

.img-fundo {
    width: 100%;
    position: absolute;
    height: 20rem;
}

.glass {
    width: 100%;
    height: 20rem;
    position: relative;
    background-color: #000000a6;
}

.conteudo-site {
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

.carousel-item img {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    object-fit: cover;
}

.conteudo-unico {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6rem 0;
    padding: 2rem;
    font-style: italic;
    font-weight: 700;
    background-color: #fcffcc;
    border-radius: 2.4rem 0 2.4rem 0;
}

.conteudo-unico p {
    margin: 0;
}

.btn-entrar-grupo {
    background-color: #00b100;
    color: #ffffff;
    padding: 1rem 2rem;
    border: 2px solid #a0a0a0;
}

.btn-entrar-grupo:hover {
    background-color: #03c503;
    color: #d3d3d3;
}

.squadRules {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.title-rules {
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
}

.squadRules ul {
    list-style-type: none;
    padding: 0;
}

footer {
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    padding: 2rem;
}

.content-not-found {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.content-not-found p {
    font-size: 1.4rem;
    margin-top: 2rem;
}

.link-grupo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 100%;
    height: 50px;
    cursor: pointer;
    border-radius: 0.4rem;
    background-color: #000;
    color: #ffffff;
    animation: pulse 2.5s infinite;
}

.list-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem;
}

.list-groups a {
    width: 22rem;
    margin: 1rem auto;
}

/*
 * Login Page Styles
*/
.body-login {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.form-squad {
    width: 500px;
    height: 500px;
    padding: 2rem;
    color: #fff;
    background: #3c4e64a4;
    border-radius: 16px;
    backdrop-filter: blur(8.5px);
    -webkit-backdrop-filter: blur(8.5px);
    border: 1px solid rgba(255, 255, 255, 0.21);
}

.input-content {
    display: flex;
    height: 100%;
    gap: 1.2rem;
    flex-direction: column;
    justify-content: center;
}

.input-form {
    padding: 1rem 2rem;
    border-radius: 0.6rem;
    border: none;
    outline: none;
}

.btn-login {
    padding: 1rem 2rem;
    background-color: #2585f3;
    color: #fff;
    font-size: 1.4rem;
}

.btn-login:hover {
    color: #c4c4c4;
    background-color: #1c41e9;
}

.errorMsg {
    color: #eb0000;
    text-align: center;
    font-weight: bold;
}

/*
 * Page Admin Styles
*/

.form-content-input-files {
    display: flex;
    justify-content: space-around;
    margin: 5rem 0;
}

.content-input-files {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 5rem 0;
}

@media (max-width:640px) {
    .carrossel {
        width: 100%;
    }

    .text-header {
        width: 100%;
    }

    .list-groups {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .squadRules {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width:480px) {
    .carrossel {
        width: 90%;
    }

    .text-header {
        width: 100%;
    }

    .list-groups {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .squadRules {
        flex-direction: column;
        gap: 2rem;
    }
}