/* Importação das fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Orbitron:wght@400;700&display=swap');

/* Reset básico e estilos do corpo */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #e0f2f7;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Container principal para o conteúdo */
.container {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
    text-align: center;
    max-width: 800px;
    width: 90%;
    box-sizing: border-box;
    border: 1px solid rgba(0, 200, 255, 0.3);
}

/* Estilo do cabeçalho */
h1 {
    font-family: 'Orbitron', sans-serif;
    color: #00e6ff;
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.8);
}

.subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3em;
    color: #a7d9e7;
    margin-bottom: 30px;
}

/* Seção de Informações */
.info-section {
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #c0eaff;
}

.info-section p {
    margin: 10px 0;
}

/* Estilo da seção de links */
.links-section {
    margin-top: 20px;
}

/* Estilo dos botões */
.button {
    display: inline-block;
    background-color: #00bfff;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    margin: 10px 15px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
    letter-spacing: 0.8px;
    border: none;
}

.button:hover {
    background-color: #0099e6;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.6);
}

.button.primary {
    background-color: #00e6ff;
    color: #0a192f;
}

.button.primary:hover {
    background-color: #6effff;
}

.button.secondary {
    background-color: transparent;
    border: 2px solid #3a506b;
    color: #a7d9e7;
    box-shadow: none;
}

.button.secondary:hover {
    background-color: #3a506b;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(58, 80, 107, 0.4);
}

/* Estilo do rodapé */
footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #88bbd4;
    border-top: 1px solid rgba(58, 80, 107, 0.5);
    padding-top: 20px;
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .subtitle {
        font-size: 1.1em;
    }
    .container {
        padding: 30px;
        width: 95%;
    }
    .button {
        padding: 14px 28px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    .subtitle {
        font-size: 1em;
    }
    .links-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .button {
        display: block;
        width: 90%;
        margin: 10px 0;
        padding: 15px;
        font-size: 1em;
    }
}
In