*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
}

.logo{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.titulo{
    padding: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: #ffffff;
}

section h1 {
    display: flex;
    justify-content: center;
}

/*Estilização dos perfis*/
.perfil{
    display: flex;
    justify-content: center;
}

.lista-perfis{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 0;
    list-style: none;
    cursor: pointer;
}

.lista-perfis li {
    flex: 1 1 120px;
    max-width: 160px;
    min-width: 100px;
    display: flex;
    justify-content: center;
}

.borda-perfil {
    border: 1px solid #ffffff;
}

img:hover {
    transform:scale(1.1);
    transition: 0.3s ease;
}

/*Estilização nos nomes*/
p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

/*Arredodamento das bordas das imagens*/
img {
    border-radius: 15px;
}

/*Estilização do botão*/

.button{
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 32px;
    border-radius: 8px;
    margin: 32px auto 0 auto;
    display: block;
    cursor: pointer;
}

.button:hover {
    background-color: #ffffff;
    color: #000000;
    transition: 0.3s ease;
}

/* Ajustes para telas menores */


@media (min-width: 576px) { 
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .flex-container {
        display: flex;
        gap: 20px;
    }

    .coluna {
        width: 50%;
    }
}

@media (min-width: 992px) {
    
    .container {
        max-width: 960px;
    }

    body {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 600px) {
    .titulo {
        padding: 24px 0;
        font-size: 1rem;
    }
    .lista-perfis {
        gap: 16px;
    }
    .arredondamento {
        max-width: 80px;
    }
    .button {
        width: 90%;
        font-size: 0.9rem;
        padding: 10px 0;
    }
}