@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
body {
    font-family: "Press Start 2P", system-ui;
    font-weight: 200;
    font-style: normal;
    margin: 0;
    color: #333;
    min-height: 100vh;
    /* Fundo fixo com as formas abstratas*/
    background-color: #2e2e2e;
    background-image:
        /* Mancha 1 (Amarela, Superior Direita)*/
        radial-gradient(ellipse 70% 55% at 80% 20%, #ffeb3b 0%, #ffeb3b 65%, rgba(255, 235, 59, 0) 80%),
        
        /* Mancha 2 (Azul, Inferior Esquerda)*/
        radial-gradient(ellipse 50% 70% at 20% 80%, #00bcd4 0%, #00bcd4 65%, rgba(0, 188, 212, 0) 80%),
        
        /* Mancha 3 (Roxa, Centro) */
        radial-gradient(ellipse 80% 40% at 45% 50%, #9c27b0 0%, #9c27b0 60%, rgba(156, 39, 176, 0) 75%),
        
        /* Mancha 4 (Amarela, Centro Direita)*/
        radial-gradient(ellipse 60% 80% at 75% 60%, #ffeb3b 0%, #ffeb3b 50%, rgba(255, 235, 59, 0) 70%);
    
    background-size: 1500px 1500px, 1200px 1200px, 900px 900px, 700px 600px; 
    background-position: calc(100% + 300px) -200px, -300px calc(100% + 200px), -400px 150px, calc(100% - 350px) 400px;
   
    background-attachment: fixed; 
}


header {
    background-color: #673ab7; 
    padding: 15px 30px;
    color: white;
}
a {
    text-decoration: none;
    color: #ffffff;
    
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    flex-grow: 1; /* Permite que o main ocupe o espaço restante */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Estilos para janela */
.window-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 700px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.window-header {
    background-color: #f0f0f0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.window-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.window-header .dot.yellow {
    background-color: #ffc107;
}

.window-header .dot.blue {
    background-color: #2196f3;
}

.window-header .close-btn {
    margin-left: auto;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2em;
    color: #666;
}

.window-content {
    padding: 20px;
}

.window-content h1 {
    font-size: 2.5em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.window-content p {
    line-height: 1.6;
    color: #555;
}
/* TROCAR FONTE */
.main-header {
    background: linear-gradient(#9019ff, #1b32ff);
    color: white;
    display: flex;
    justify-content: space-between; /* Empurra o logo para a esquerda*/
    align-items: center; /* Centraliza os itens verticalmente */
    padding: 15px 30px; /* Preenchimento*/
    text-decoration: none;
}

.main-header .logo {
    font-size: 1.8em; /* Aumenta o tamanho do texto da logo */
    font-weight: bold;
    font-family: 'Press Start 2P', cursive;
    text-decoration: none;
}

.main-nav ul {
    list-style: none; /* Remove os marcadores de lista */
    margin: 0;
    padding: 0;
    display: flex; /* Faz com que os itens da lista sejam exibidos em uma linha */
}

.main-nav li {
    margin-left: 25px; /* Espaçamento */
}

.main-nav a {
    color: white;
    text-decoration: none; /* Remove a marca dos links */
    font-size: 1.1em;
    font-family: 'Press Start 2P', cursive; 
}


.main-nav a:hover,
.main-nav a:focus {
    color: #e0e0e0; /* Cor mais clara quando passa o mouse */
}
body{
    background-color: black;
    color: aliceblue;
}

/*Outras abas*/


          html {
            scroll-behavior: smooth; /* Rolagem suave entre as âncoras */
        }

        body {
            margin: 0;
            color: #333;
            
            /* Fundo fixo com as formas abstratas */
            background-color: #2e2e2e;
            background-image:
                radial-gradient(ellipse at 80% 20%, #ffeb3b 0%, #ffeb3b 40%, transparent 40%),
                radial-gradient(ellipse at 20% 80%, #00bcd4 0%, #00bcd4 40%, transparent 40%),
                radial-gradient(ellipse at 40% 50%, #9c27b0 0%, #9c27b0 30%, transparent 30%),
                radial-gradient(ellipse at 70% 50%, #ffeb3b 0%, #ffeb3b 15%, transparent 15%);
            background-repeat: no-repeat;
            background-size: 800px 800px, 800px 800px, 500px 500px, 300px 300px; 
            background-position: calc(100% + 150px) -100px, -150px calc(100% + 100px), -100px 200px, calc(100% - 200px) 300px;
            background-attachment: fixed; /* Chave para manter o fundo fixo durante a rolagem */
        }

        /* Cabeçalho Fixo */
        .main-header {
            background: linear-gradient(#9019ff, #1b32ff);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            position: fixed; /* Fixa o cabeçalho no topo */
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000; /* Garante que o cabeçalho fique sobre o conteúdo */
            box-sizing: border-box;
        }

        .main-header .logo {
            font-size: 1.8em;
            font-weight: bold;
            font-family: 'Press Start 2P', cursive;
        }

        .main-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .main-nav li {
            margin-left: 25px;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1em;
            font-family: 'Press Start 2P', cursive;
            transition: color 0.3s ease;
        }

        .main-nav a:hover,
        .main-nav a:focus {
            color: #e0e0e0;
        }
        
        /* Estilo para cada seção da página (ABA) */
        .page-section {
            min-height: 100vh; /* Cada seção ocupa no mínimo a altura da tela inteira */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 100px 20px 40px; /* Espaçamento: 100px no topo, 20px nas laterais, 40px na base */
            box-sizing: border-box;
        }

        /* O main centraliza a janela de conteúdo dentro da seção */
        main {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Estilos para a janela de conteúdo */
        .window-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 700px;
            overflow: hidden;
            border: 1px solid #ccc;
        }

        .window-header {
            background-color: #f0f0f0;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
        }

        .window-header .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }

        .window-header .dot.yellow { background-color: #ffc107; }
        .window-header .dot.blue { background-color: #2196f3; }

        .window-header .close-btn {
            margin-left: auto;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.2em;
            color: #666;
        }

        .window-content {
            padding: 20px 30px;
        }

        .window-content h1 {
            font-size: 2.2em;
            color: #333;
            text-align: center;
            margin-bottom: 20px;
        }

        .window-content p {
            line-height: 1.6;
            color: #555;
            text-align: center;
        }
        
        /* Estilos Específicos para o Formulário */
        .participation-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 5px;
            font-weight: bold;
            color: #444;
        }
        
        .form-group input {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1em;
        }

        .form-group input:focus {
            outline: none;
            border-color: #673ab7;
            box-shadow: 0 0 5px rgba(103, 58, 183, 0.5);
        }
        
        .submit-btn {
            background: linear-gradient(#9019ff, #1b32ff);
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            opacity: 0.9;
        }
        .buttons {
            display: flex;
            justify-content: center; /* centraliza horizontalmente */
            align-items: center;
            gap: 20px;
            flex-wrap: wrap; /* permite quebrar linha em telas pequenas */
            margin: 30px 0;
        }


        .blob-btn {
            position: relative;
            color: rgb(5, 5, 5);
            font-size: 16px;
            font-weight: bold;
            background-color: #deec12;
            padding: 16px 30px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            filter: url("#goo");
            overflow: hidden;
            width: 200px;
            text-align: center;
        }


        .blob-btn__inner {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }


        .blob-btn__blobs {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
        }


        .blob-btn__blob {
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            animation: blobAnim 4s infinite ease-in-out;
        }


        .blob-btn__blob:nth-child(2) { left: 60%; animation-delay: 1s; }
        .blob-btn__blob:nth-child(3) { left: 30%; animation-delay: 2s; }
        .blob-btn__blob:nth-child(4) { left: 80%; animation-delay: 3s; }


        @keyframes blobAnim {
            0% { transform: scale(1) translateY(0px); }
            33% { transform: scale(1.3) translateY(-20px); }
            66% { transform: scale(0.9) translateY(10px); }
            100% { transform: scale(1) translateY(0px); }
        }


        a {
            text-decoration: none;
        }