/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background: #111111; /* De preto para azul escuro */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Container */
.container {
    background: rgba(0, 0, 0, 0.7); /* Preto semitransparente */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

/* Headings */
h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #004e92; /* Azul escuro */
}

/* Paragraphs */
p {
    margin-bottom: 15px;
    font-size: 1.2em;
}

/* Links */
a {
    color: #004e92; /* Azul escuro */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a73e8; /* Azul claro */
}

/* List */
ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    background: rgba(255, 255, 255, 0.1); /* Fundo branco semitransparente */
    padding: 10px 20px;
    border-radius: 4px;
    display: block;
    transition: background 0.3s ease;
}

ul li a:hover {
    background: rgba(255, 255, 255, 0.3); /* Fundo branco mais transparente ao passar o mouse */
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    ul li a {
        font-size: 0.9em;
    }
}

/* Adicione este CSS adicional para o botão flutuante do Telegram */
.telegram-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0088cc;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.telegram-button:hover {
    transform: scale(1.1);
}

.telegram-button svg {
    width: 35px;
    height: 35px;
    fill: white;
}