* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    cursor: default;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('img/dominiogerenciado.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    text-align: center;
    color: white;
    pointer-events: none; /* Desativa eventos de clique no body */
}

.content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    pointer-events: auto; /* Permite eventos de clique no conteúdo */
    border: 5px solid transparent;
    animation: borderAnimation 5s infinite;
}

@keyframes borderAnimation {
    0% { border-color: #800080; }  /* Roxo */
    33% { border-color: #0000ff; }  /* Azul */
    66% { border-color: #ee82ee; }  /* Violeta */
    100% { border-color: #800080; }  /* Volta ao roxo */
}

/* Estilo para os botões */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
    pointer-events: auto; /* Permite eventos de clique nos botões */
}

.float-button {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08); /* Sombra padrão */
}

.float-button:hover {
    background-color: #6a0dad; /* Roxo no hover */
    color: #ffffff; /* Texto branco no hover */
    box-shadow: 0 8px 15px rgba(106, 13, 173, 0.3), 0 4px 6px rgba(0, 0, 255, 0.2); /* Sombra roxo e azul */
    border: 2px solid #0000ff; /* Borda azul ao passar o mouse */
}
