/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Cinza claro para o texto */
    background-color: #0A0A0A; /* Fundo bem escuro */
    overflow-x: hidden; /* Evita scroll horizontal */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Tipografia */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    color: #FFFFFF; /* Branco puro para títulos */
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

h1 {
    font-size: 3.5em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.5); /* Neon vermelho */
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #FF4500); /* Gradiente vermelho */
    border-radius: 2px;
}

h3 {
    font-size: 1.8em;
    color: #FF4500; /* Laranja avermelhado para subtítulos de cards */
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23FF0000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(45deg, #FF0000, #FF4500); /* Gradiente vermelho */
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.primary-btn:hover {
    background: linear-gradient(45deg, #FF4500, #FF0000);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    color: #FF0000;
    border: 2px solid #FF0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.secondary-btn:hover {
    background-color: #FF0000;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    transform: translateY(-3px);
}

.small-btn {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
    background: linear-gradient(45deg, #FF0000, #FF4500);
    color: #FFFFFF;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.small-btn:hover {
    background: linear-gradient(45deg, #FF4500, #FF0000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('http://mfxoficial.com.br/img/banner-mfx.png') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    animation: pulse-glow 10s infinite alternate;
    z-index: 0;
}

@keyframes pulse-glow {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero .logo {
    max-width: 250px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8)); /* Brilho neon no logo */
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #C0C0C0;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links p {
    margin: 0;
    font-size: 1.1em;
    color: #E0E0E0;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FF0000;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    stroke: #FF0000;
    transition: stroke 0.3s ease;
}

.social-icon:hover svg {
    stroke: #FFFFFF;
}

/* Seções de Conteúdo */
section {
    padding: 80px 0;
    position: relative;
}

.about-section {
    background-color: #111111;
}

.content-section, .audience-section, .partners-section, .community-section {
    background-color: #0A0A0A;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF0000, #FF4500);
    opacity: 0.7;
    transition: height 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.card p {
    color: #B0B0B0;
}

/* Footer */
footer {
    background-color: #000000;
    color: #888888;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #222222;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #FF0000;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .grid-cards {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero .logo {
        max-width: 200px;
    }

    .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}