/* Resetando margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cabeçalho */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #002244;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

header .logo-escrita {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

/* Menu */
.menu-container {
    width: 100%;
    background-color: #002244;
    text-align: center;
}

/* Menu normal em telas grandes */
nav {
    display: flex;
    justify-content: center;
    background: #002244;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin: 10px 20px;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
    background-color: #FFD700;
    color: #002244;
    text-decoration: none;
    transform: scale(1.1); /* Efeito de zoom no hover */
}

/* Menu hambúrguer para telas menores */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    padding: 10px;
    text-align: center;
}
body {
    background-color: #002244;
}

.pagina-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: linear-gradient(to bottom, #16213e, #0f3460);
}

.escudo  img {
    width: 300px;
    height: auto;
}

/* Estilo dos botões */
.botoes {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;  /* Espaçamento abaixo dos botões */
}

.botao {
    display: inline-block;
    background-color: #FFD700;
    color: #002244;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 10px;
}

/* Rodapé */
footer {
    background-color: #002244;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: 40px;
}

/* Colaboradores */
footer h3 {
    margin-bottom: 15px;
}

.footer-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-images a img {
    width: 50%;
    max-width: 100px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.footer-images a img:hover {
    transform: scale(1.1);
}

/* Responsividade */
/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        background: #002244;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        text-align: center;
        margin: 0;
        border-bottom: 1px solid #FFD700;
    }

    nav ul li a {
        display: block;
        padding: 15px;
    }
    .footer-images {
        flex-wrap: nowrap;  /* Impede que as imagens fiquem empilhadas */
        justify-content: space-around;  /* Distribui as imagens igualmente na tela */
    }

    .footer-images a img {
        width: 60%;  /* Ajusta a largura para as imagens ficarem mais compactas */
        max-width: 80px;  /* Limita o tamanho máximo das imagens */
    }

    .botoes {
        margin-bottom: 20px;  /* Ajuste para garantir que os botões não fiquem muito perto da imagem */
    }

}