/* Configurações Globais */
:root {
    --bg-color: #0b0e14;
    --card-bg: #161b22;
    --text-primary: #ffffff;
    --text-secondary: #8b949e;
    --accent-color: #ff4d4d; /* Vermelho Syndicate - mude para sua cor preferida */
    --accent-hover: #ff6666;
    --border: #30363d;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header / Navegação */
header {
    background-color: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, #1a1f2e 0%, var(--bg-color) 70%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Grid de Projetos */
.grid-projetos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 50px 10%;
}

/* Card do Projeto */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: 0.4s;
}

.card:hover img {
    filter: grayscale(0%);
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Badge de Status */
.badge-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
}

/* Barra de Progresso */
.progresso-container {
    background: #21262d;
    height: 8px;
    border-radius: 10px;
    margin: 1rem 0;
    overflow: hidden;
}

.progresso-bar {
    background: linear-gradient(90deg, var(--accent-color), #ff8080);
    height: 100%;
    border-radius: 10px;
    width: 0;
}

/* Botões */
.btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--glass);
    color: white;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    nav ul { display: none; } /* Oculta menu em telas pequenas para simplicidade */
}

/* Efeito de zoom ao passar o mouse na galeria */
.galeria img {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.galeria img:hover {
    transform: scale(1.05); /* Aumenta levemente */
    filter: brightness(1.2); /* Dá um brilho */
}

/* O Modal (fundo escuro) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9); 
    backdrop-filter: blur(5px);
}

/* Imagem dentro do Modal */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.1)} 
    to {transform: scale(1)}
}

/* Botão de fechar */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover { color: var(--accent-color); }

.card-membro:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Estilo para os links de ícone */
.icon-link {
    color: var(--text-secondary);
    font-size: 1.8rem; /* Tamanho do ícone */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Efeito ao passar o mouse */
.icon-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 8px var(--accent-color)); /* Brilho neon */
}

/* Cores específicas se você quiser (opcional) */
.fa-github:hover {
    color: #ffffff; /* O GitHub costuma ser branco/cinza */
    filter: drop-shadow(0 0 8px #ffffff);
}

.fa-discord:hover {
    color: #5865F2; /* Cor oficial do Discord */
    filter: drop-shadow(0 0 8px #5865F2);
}

/* Seção de Aviso Legal */
.aviso-legal {
    padding: 40px 10%;
    margin-top: 50px;
    border-top: 1px solid var(--border);
    background: linear-gradient(to bottom, var(--bg-color), #0f1218);
}

.aviso-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 77, 77, 0.05); /* Um fundo vermelho bem clarinho e transparente */
    padding: 30px;
    border-radius: 15px;
    border: 1px dashed rgba(255, 77, 77, 0.3);
}

.aviso-container i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.aviso-container h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.aviso-container p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Container do Formulário */
.container-contato {
    padding: 60px 10%;
    display: flex;
    justify-content: center;
}

.contato-wrapper {
    max-width: 700px;
    width: 100%;
}

.contato-texto {
    text-align: center;
    margin-bottom: 40px;
}

/* Estilo do Card do Formulário */
.form-syndicate {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Inputs e Selects Estilizados */
.form-syndicate label {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-syndicate input, 
.form-syndicate select, 
.form-syndicate textarea {
    background: #080a0e; /* Tom mais escuro que o card */
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 15px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.form-syndicate input:focus, 
.form-syndicate textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}