body {
    color: white;
    background-color: black;
    font-family: monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    align-items: center;
    padding: 15px;
    background-color: burlywood;
    font-size: 18px;
}

a {
    color: black;
    text-decoration: none;
}

p a {
    color: burlywood;
    text-decoration: none;
}

h3 {
    font-size: 20px;
    color: burlywood;
    text-align: center;
    justify-content: center;
}

nav {
    width: 100%;
}

nav a:hover {
    color: white;
}

.conteudo {
    padding: 0px 50px;
}

.conteudo hr {
    border: solid 2px burlywood;
    width: 65%;
}

header img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid burlywood;
    margin: 0px 10px 0px 10px;
}

.imgperfil {
    text-align: center;
}

.bioperfil {
    text-align: center;
}

.bioperfil h1 {
    margin-bottom: 0px;
    color: burlywood;
}

.bioperfil h2 {
    margin: 0px;
}

.bioperfil h2 a {
    margin: 0px;
    color: burlywood;
}

footer img {
    width: 25px;
    height: 25px;
    border-radius: 5px;
}

footer p {
    margin-top: 2px;
    margin-bottom: 2px;
}

footer a {
    text-align: center;
}

footer {
    padding-top: 5px;
    display: flex;
    justify-content: center;
    background-color: burlywood;
}

main {
    text-align: center;
}

.sobremim h3 {
    font-size: 25px;
    color: burlywood;
}

.sobremim p {
    font-size: 15px;
}

main.carrossel {
    display: flex;
}

.carrossel {
    max-width: 850px;
    overflow: hidden;
    box-shadow: 0px 8px 50px burlywood;
    border-radius: 35px;
    display: flex;
    position: relative;
    margin-bottom: 35px;
}

.destaques {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.destaques img {
    display: block;
    max-width: 100%;
    border-radius: 35px;
    object-fit: contain;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    border: none;
    background-color: rgb(222, 184, 135, 0.5);
    cursor: pointer;
    transition: background-color 200ms ease;
}

button:hover {
    background-color: burlywood;
}

.imgFireGamers {
    display: inline-block; /* Garante que o span envolva a imagem */
    overflow: unset;      /* Esconde a parte da imagem que passa do tamanho original */
    border: 2px solid burlywood; /* Opcional: borda */
}

.imgFireGamers img {
    transition: transform 0.3s ease; /* Adiciona suavidade ao efeito */
    width: 250px; /* Tamanho inicial da imagem */
    height: auto;
    display: block;
}

/* Efeito de Rollover (Hover) */
.imgFireGamers:hover img {
    transform: scale(1.2); /* Aumenta a imagem em 20% (1.2x) */
}


.esquerda {
    left: 0px;
}

.direita {
    right: 0px;
}