/* --- ESTILO GERAL --- */
:root {
    --accent: #CCFF00; /* Verde Neon Sport */
    --bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; }

body { background-color: var(--bg); color: var(--text-main); line-height: 1.6; }

a { text-decoration: none; color: var(--accent); transition: 0.3s; cursor: pointer;}
a:hover { opacity: 0.8; }

/* --- HEADER --- */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    background-color: var(--bg); /* Garante leitura sobre conteudo */
}
.brand { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.brand span { color: var(--accent); }

.contact-link { font-size: 0.9rem; cursor: text; font-weight: bold; }

/* --- HERO SECTION --- */
.hero {
    /* Mudei para min-height para evitar cortes em telas pequenas na horizontal */
    min-height: 80vh;
    /* Fallback e gradiente para leitura */
    background: linear-gradient(to bottom, rgba(15,15,15,0.4), var(--bg));
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 4rem;
    max-width: 900px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero p { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.text-accent { color: var(--accent); }

/* --- CONTEÚDO (WRAPPER) --- */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

/* --- GRID DE CARDS --- */
.grid {
    display: grid;
    /* Ajustado para 280px para caber em celulares estreitos sem quebrar */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.card img { width: 100%; height: 200px; object-fit: cover; }

.card-body { padding: 30px; }
.card-body h3 { margin-bottom: 15px; font-size: 1.4rem; color: var(--text-main); }
.card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* --- MANIFESTO (TEXTO FINAL) --- */
.manifesto-section {
    margin-top: 100px;
    background: var(--card-bg);
    padding: 60px;
    border-radius: 12px;
    border-top: 1px solid #333;
}

.manifesto-section h2 {
    color: var(--text-main);
    margin-bottom: 30px;
    font-size: 2.2rem;
    line-height: 1.2;
}

.manifesto-section p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify; /* Justificado para leitura de artigo */
}

/* Destaque final */
.manifesto-highlight {
    margin-top: 40px;
    padding: 20px;
    border-left: 4px solid var(--accent);
    background: rgba(204, 255, 0, 0.05); /* Leve brilho verde no fundo */
}

.manifesto-highlight p {
    margin: 0;
    color: var(--text-main);
    font-weight: bold;
    font-size: 1.25rem;
    text-align: left;
}

.text-accent-strong { color: var(--accent); font-weight: 800; }

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
    background-color: var(--bg);
}

.footer-note { margin-top: 10px; font-size: 0.8rem; color: #444; }

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }

    .content-wrapper { padding: 40px 20px; }

    .grid { gap: 30px; }

    .manifesto-section { padding: 30px 20px; margin-top: 60px; }
    .manifesto-section h2 { font-size: 1.8rem; }
    .manifesto-section p { text-align: left; } /* Em mobile, justificado pode criar buracos */

    .brand { font-size: 1.3rem; }
}
