/* AREA DO SPLASH */
.splash-section {
    background-image: url('../media/logo.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

@keyframes electric {
    0% {
        text-shadow: 0px 0px 5px rgba(0, 0, 255, 0.8), 
                    0px 0px 10px rgba(0, 0, 255, 0.6), 
                    0px 0px 20px rgba(0, 0, 255, 0.4);
    }
    5% {
        text-shadow: -2px 2px 8px rgba(0, 0, 255, 0.9), 
                    2px -2px 12px rgba(0, 0, 255, 0.7), 
                    -3px 3px 18px rgba(0, 0, 255, 0.5);
    }
    10% {
        text-shadow: 2px -2px 6px rgba(0, 0, 255, 0.8), 
                    -2px 2px 14px rgba(0, 0, 255, 0.6), 
                    3px -3px 16px rgba(0, 0, 255, 0.4);
    }
    15% {
        text-shadow: -3px 3px 10px rgba(0, 0, 255, 0.9), 
                    3px -3px 15px rgba(0, 0, 255, 0.7), 
                    -4px 4px 22px rgba(0, 0, 255, 0.5);
    }
    100% {
        text-shadow: 0px 0px 5px rgba(0, 0, 255, 0.8), 
                    0px 0px 10px rgba(0, 0, 255, 0.6), 
                    0px 0px 20px rgba(0, 0, 255, 0.4);
    }
}

.splash-title {
    font-size: 100px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    -webkit-text-stroke: 2px blue; /* Contorno azul */
    animation: electric 30s infinite alternate;
}


.splash-slogan {
    font-size: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.splash-link {
    font-size: 20px;
    margin-top: 20px;
    display: inline-block;
    color: #f8f9fa;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.splash-link:hover {
    background-color: white;
    color: black;
}

.splash-card-adicional {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  border-radius: 0 0 10px 10px; /* Arredonda apenas a parte de baixo */
  margin-top: -5px; /* Evita espaço extra entre a imagem e o texto */
}

.splash-drum-container {
    position: absolute;
    bottom: 20px; /* Ajusta a posição na parte inferior */
    left: 50%;
    transform: translateX(-50%); /* Centraliza horizontalmente */
}

.splash-drum-icon {
    width: 80px; /* Tamanho fixo do tambor */
    height: auto;
    cursor: pointer;
    transition: 0.3s ease-in-out; /* Transição suave */
}

.splash-drum-icon:hover {
    filter: drop-shadow(0 0 20px white); /* Efeito de brilho circular branco */
}