body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('../img/girl_bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    color: #fff;
    /* Adicionado para texto padrão */
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}


.logo {
    margin-top: 20px;
    max-width: 400px;
}

@media (max-width: 768px) {
    .logo {
        margin-top: 10px;
        max-width: 270px;
    }

}

.slogan {
    margin-top: 30px;
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
}

.play-btn {
    width: 120px;
    height: 120px;
    background: transparent;
    border: 5px solid #ffd700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: pulse 1.4s infinite;
    position: relative;
    /* Necessário para posicionar o ícone */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



.play-btn i {
    font-size: 3rem;
    /* Tamanho do ícone */
    color: #ffd700;
    /* Cor do ícone */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.social {
    margin: 0;
    display: flex;
    gap: 30px;
}

.social a {
    width: auto;
    height: auto;
    background: none;
    border: none;
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.4);
    box-shadow: none;
    transition: transform 0.2s;
}

.social a:hover {
    transform: scale(1.2);
}

footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .play-btn {
        margin-top: 100px;
        /* Ajusta o botão de play para ficar abaixo do slogan */
    }

    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        text-align: center;
        /* Mantém o rodapé fixo com cor de fundo */
        color: #ffffff;
        /* Ajusta a cor do texto para contraste */
        padding: 10px 0;
        /* Adiciona espaçamento interno */
    }
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    /* Fundo escuro para o loader */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Garante que o loader fique acima de tudo */
}

.loading {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}