/* Estilos gerais */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@700&family=Poppins:wght@700&display=swap');

body {
    font-family: 'Roboto', sans-serif; /* Fonte moderna */
    background-color: #000000;
    color: #333;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Para evitar scroll horizontal durante a animação */
}

body, html {
    height: 100%;
    margin: 0;
}

.banner-background {
    background-image: url('/Banner/0925.mov');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.info {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
}

.info .profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.social-media {
    margin-top: 20px;
}

.best-friends {
    width: 45%; /* Largura do frame */
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: white;
    margin-top: 20px;
}

.best-friends .profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Aumenta o espaçamento entre os perfis */
}

.best-friends .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px; /* Ajusta a largura do bloco do perfil */
}

.best-friends .profile img {
    width: 100px; /* Ajusta o tamanho da imagem */
    height: 100px;
    border-radius: 50%;
}

.best-friends .nickname {
    margin-top: 5px; /* Adiciona espaço entre a imagem e o nome */
    font-size: 14px;
    font-weight: bold;
}

/* Container de "Best Friends" */
.best-friends {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: white;
    background: rgba(0, 0, 0, 0.5); /* Fundo preto com transparência */
}

.best-friends h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

/* Container das imagens */
.profiles {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center; /* Centralizar os perfis horizontalmente */
    align-items: center; /* Centralizar os perfis verticalmente */
}

/* Cada perfil */
.profile {
    position: absolute; /* Alterar para absoluto */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    text-align: center;
    width: 150px; /* Tamanho fixo */
}

/* Cada perfil de Best Friends */
.best-friends .profile {
    position: absolute; /* Alterar para absoluto */
    top: 50%;
    left: 100%; /* Iniciar fora da tela à direita */
    transform: translate(-50%, -50%);
    animation: slide-left 28s linear infinite; /* Aumentar a duração da animação */
    opacity: 0; /* Tornar invisível inicialmente */
    text-align: center;
    width: 150px; /* Tamanho fixo */
}

/* Cada perfil de Social Media */
.social-media-section .profile {
    position: absolute; /* Alterar para absoluto */
    top: 50%;
    left: 100%; /* Iniciar fora da tela à direita */
    transform: translate(-50%, -50%);
    animation: slide-left 36s linear infinite; /* Adicionar animação */
    opacity: 0; /* Tornar invisível inicialmente */
    text-align: center;
    width: 150px; /* Tamanho fixo */
}

/* Nome acima do avatar */
.profiles .nickname {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
    font-family: 'Roboto', sans-serif;
}

/* Configura as imagens */
.profiles img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* Configura a ordem de cada perfil */
.profiles .profile:nth-child(1) {
    animation-delay: 4s; /* ggrafan */
}

.profiles .profile:nth-child(2) {
    animation-delay: 8s; /* offilene24horas */
}

.profiles .profile:nth-child(3) {
    animation-delay: 12s; /* bonesnnug */
}

.profiles .profile:nth-child(4) {
    animation-delay: 16s; /* 9usyx */
}

.profiles .profile:nth-child(5) {
    animation-delay: 20s; /* pvvly */
}

/* Animação: Da direita para a esquerda */
@keyframes move-left {
    0% {
        left: 100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        left: 50%;
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: -100px;
        opacity: 0;
    }
}

/* Animação */
@keyframes slide-left {
    0% {
        left: 100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    40% {
        left: 50%;
        opacity: 1;
    }
    70% {
        left: 0%;
        opacity: 1;
    }
    80% {
        left: -50%;
        opacity: 0;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

/* Cabeçalho */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin: 10px 0;
}

/* Seções */
section {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.5);
    margin: 10px 0;
}

/* Foto de perfil */
.profile-photo {
    width: 100px; /* Aumentar o tamanho da foto de perfil */
    height: 100px; /* Aumentar o tamanho da foto de perfil */
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    border: none; /* Remover a borda branca */
}

/* Estilo do botão de controle de música */
#music-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

#music-toggle img {
    width: 30px;
    height: 30px;
}

/* Estilos para organizar os ícones de perfil das redes sociais */
.social-media-list {
    list-style: none;
    padding: 0;
}

.social-media-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.social-media-list .social-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    filter: brightness(0) invert(1); /* Tornar o ícone branco */
    transition: transform 0.2s ease-in-out; /* Adicionar transição suave */
}

.social-media-list .social-icon:hover {
    transform: scale(1.1); /* Aumentar um pouco o tamanho ao passar o mouse */
}

.content-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.social-media-section {
    width: 45%; /* Largura do frame */
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
}

.social-media-section h2 {
    font-family: 'Montserrat', sans-serif; /* Fonte moderna */
    font-size: 2em; /* Aumentar o tamanho da fonte */
    margin-bottom: 20px;
    text-align: center;
}

.social-media-list li a {
    font-family: 'Poppins', sans-serif; /* Fonte moderna e chamativa */
    font-size: 1.5em; /* Aumentar o tamanho da fonte */
    color: #fff; /* Cor do texto */
    text-decoration: none; /* Remover sublinhado */
    transition: color 0.3s ease; /* Transição suave para a cor */
}

.social-media-list li a:hover {
    color: #ffcc00; /* Cor ao passar o mouse */
}

.counter {
    font-family: 'Poppins', sans-serif; /* Fonte moderna e chamativa */
    font-size: 1em; /* Tamanho da fonte */
    color: #fff; /* Cor do texto */
    margin-left: 10px; /* Espaço entre o texto e o contador */
    display: flex;
    align-items: center;
}

.counter::before {
    content: url('path/to/eye-icon.png'); /* Ícone de olho */
    margin-right: 5px; /* Espaço entre o ícone e o número */
}

footer {
    text-align: center;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif; /* Fonte agradável */
    font-size: 1.2em; /* Tamanho maior */
    color: #fff; /* Cor do texto */
}

@media (max-width: 600px) {
    .profile img {
        width: 100px; /* Ajustar o tamanho da foto de perfil para dispositivos móveis */
        height: 100px; /* Ajustar o tamanho da foto de perfil para dispositivos móveis */
    }

    .info h1 {
        margin-top: -10px; /* Ajustar a margem superior para dispositivos móveis */
        font-size: 20px; /* Ajustar o tamanho da fonte para dispositivos móveis */
    }

    .discord-button, .roblox-button, .instagram-button {
        font-size: 12px; /* Ajustar o tamanho da fonte para dispositivos móveis */
        padding: 4px 8px; /* Ajustar o padding para dispositivos móveis */
    }

    .discord-button img, .roblox-button img, .instagram-button img {
        width: 14px; /* Ajustar o tamanho da imagem para dispositivos móveis */
        height: 14px; /* Ajustar o tamanho da imagem para dispositivos móveis */
        margin-right: 6px; /* Ajustar o espaço à direita para dispositivos móveis */
    }

    .social-media-list {
        flex-direction: column; /* Ajustar a direção dos itens para dispositivos móveis */
        align-items: center;
    }

    .social-media-list li {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }

    .social-media-section, .best-friends {
        width: 90%; /* Ajustar a largura das seções para dispositivos móveis */
        padding: 10px; /* Ajustar o padding para dispositivos móveis */
    }

    .content-container {
        width: 100%;
        padding: 10px; /* Ajustar o padding para dispositivos móveis */
    }

    .best-friends {
        margin-top: 0px; /* Ajustar a margem superior para dispositivos móveis */
        padding-bottom: 20px; /* Adicionar espaço inferior */
    }

    .best-friends .profiles {
        flex-direction: column; /* Ajustar a direção dos perfis para dispositivos móveis */
        gap: 20px; /* Adicionar espaço entre os perfis */
    }

    .best-friends .profile {
        width: 100px; /* Ajustar o tamanho da foto de perfil para dispositivos móveis */
        height: 100px; /* Ajustar o tamanho da foto de perfil para dispositivos móveis */
    }

    .best-friends .nickname {
        font-size: 12px; /* Ajustar o tamanho da fonte para dispositivos móveis */
    }

    .info .profile {
        top: 20px; /* Ajustar a posição da foto de perfil */
    }

    .info .profile img {
        width: 120px; /* Ajustar o tamanho da foto de perfil */
        height: 120px; /* Ajustar o tamanho da foto de perfil */
    }

    .info h1 {
        font-size: 24px; /* Ajustar o tamanho da fonte */
        margin-top: 10px; /* Ajustar a margem superior */
    }
}
