* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 420px;
            text-align: center;
            padding: 40px 20px;
        }

        .logo-container {
            margin-bottom: 25px;
        }

        .logo {
            max-width: 240px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0px 4px 8px rgba(255, 0, 0, 0.2));
        }

        h1 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            color: #ffffff;
        }

        .subtitle {
            font-size: 0.9rem;
            color: #a0a0a0;
            margin-bottom: 35px;
        }

        .links-wrapper {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .btn-link {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.03);
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid #ff0000; /* Vermelho correspondente ao logo */
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 12px rgba(255, 0, 0, 0.05);
        }

        /* Efeito ao passar o mouse / tocar na tela */
        .btn-link:hover {
            background-color: #ff0000;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35);
        }

        .btn-link:active {
            transform: translateY(-1px);
        }

        .footer {
            margin-top: 60px;
            font-size: 0.75rem;
            color: #555555;
            letter-spacing: 0.5px;
        }

        /* Estilização da Barra Horizontal de Redes Sociais */
.social-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 8px;
}

.social-icon {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor; /* Faz o preenchimento do desenho seguir a cor do texto */
    padding: 2px; /* Adiciona uma área de respiro interna para evitar qualquer corte do navegador */
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho total do botão */
}

/* Efeito Hover e Toque */
.social-icon:hover {
    color: #ff0000; /* Vermelho padrão da Evolution */
    transform: translateY(-3px) scale(1.12);
    filter: drop-shadow(0px 0px 8px rgba(255, 0, 0, 0.6));
}

.social-icon:active {
    transform: translateY(-1px) scale(1.05);
}