/* Configurações Gerais de Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #0b0b0b; /* Fundo preto escuro */
    color: #ffffff; /* Texto branco */
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
    text-align: center;
}

.bg-darker {
    background-color: #050505;
}

/* Títulos no Estilo Rock */
h1, h2, h3 {
    font-family: 'Metal Mania', cursive;
    letter-spacing: 2px;
}

h2 {
    font-size: 3rem;
    color: #ffffff;
    text-transform: uppercase;
}

/* Detalhe de Linha Vermelha (Inspirado nos olhos do logo) */
.decor-line {
    height: 4px;
    width: 80px;
    background-color: #ff0000;
    margin: 15px auto 40px auto;
    box-shadow: 0 0 10px #ff0000;
}

/* Cabeçalho e Menu */
header {
    background-color: #000000;
    border-bottom: 2px solid #ff0000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

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

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00; /* Destaque amarelo do fogo do logo */
}

/* Seção Inicial (Hero) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://unsplash.com') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid #ff0000;
}

.hero-content h1 {
    font-size: 5rem;
    color: #ffffff;
    text-shadow: 0 0 15px #ff0000;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.4rem;
    color: #ffcc00;
    font-style: italic;
}

/* Estilização da página Quem Somos */
#quem-somos p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #cccccc;
    text-align: justify;
}

/* Grid de Eventos */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.event-card {
    background-color: #111111;
    border: 1px solid #333333;
    padding: 30px;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
}

.event-date {
    background-color: #ff0000;
    color: #ffffff;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.event-card p {
    color: #bbbbbb;
    font-size: 1rem;
}

/* Formulário de Contato */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #111111;
    padding: 40px;
    border: 1px solid #222222;
    border-top: 4px solid #ff0000;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffcc00;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #000000;
    border: 1px solid #444444;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #ff0000;
    outline: none;
}

/* Botão Rocker */
.btn-rock {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-rock:hover {
    background-color: #cc0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

/* Rodapé */
footer {
    background-color: #000000;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #222222;
}

footer p {
    color: #777777;
    font-size: 0.9rem;
}

.sub-footer {
    font-family: 'Metal Mania', cursive;
    color: #444444 !important;
    font-size: 1.2rem !important;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Responsividade Básica para Celulares */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
}
/* ==========================================
   NOVOS ESTILOS: GALERIA E REDES SOCIAIS
   ========================================== */

/* Grid da Galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    overflow: hidden;
    border: 3px solid #111111;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    height: 220px;
    background-color: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(40%); /* Dá um ar mais sóbrio/vintage */
}

/* Efeito de passar o mouse nas fotos */
.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Ícones de Redes Sociais no Rodapé */
.footer-socials {
    margin-bottom: 20px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0 15px;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Efeito Hover das Redes Sociais alternando entre Amarelo e Vermelho do Logo */
.footer-socials a:hover {
    transform: translateY(-3px);
}

.footer-socials a[aria-label="Facebook"]:hover { color: #3b5998; }
.footer-socials a[aria-label="Instagram"]:hover { color: #e1306c; }
.footer-socials a[aria-label="YouTube"]:hover { color: #ff0000; }
.footer-socials a[aria-label="WhatsApp"]:hover { color: #25d366; }
/* ==========================================
   ESTILOS: IDEOLOGIA DO CLUBE
   ========================================== */

.ideologia-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #aaaaaa;
}

.ideologia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.ideologia-card {
    background-color: #111111;
    border-bottom: 3px solid #333333;
    padding: 35px 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Ícones temáticos com brilho vermelho */
.ideologia-icon {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.ideologia-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.ideologia-card p {
    color: #bbbbbb;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Efeito de destaque ao passar o mouse */
.ideologia-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #ff0000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.ideologia-card:hover .ideologia-icon {
    color: #ffcc00; /* Muda o ícone para o amarelo/dourado do logo */
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}
/* ==========================================
   ESTILOS: PERGUNTAS FREQUENTES (FAQ)
   ========================================== */

.faq-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #aaaaaa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #111111;
    border-left: 4px solid #ff0000;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, border-left-color 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    border-left-color: #ffcc00; /* Muda a borda para o amarelo do fogo do logo */
}

.faq-question h3 {
    font-family: 'Roboto', sans-serif; /* Fonte limpa para leitura das perguntas */
    font-size: 1.2rem;
    color: #ffcc00;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-answer p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}


/* ==========================================
   ESTILOS: PRODUTOS OFICIAIS
   ========================================== */

.products-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #aaaaaa;
}

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

.product-card {
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
}

/* Selo de Destaque */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ffcc00; /* Amarelo do logo */
    color: #000000;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #050505;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-info h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-desc {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price-row .price {
    font-size: 1.3rem;
    color: #ffcc00;
    font-weight: bold;
    font-family: 'Metal Mania', cursive;
}

/* Botão de compra direcionado ao WhatsApp */
.btn-buy {
    background-color: #25d366; /* Verde do WhatsApp para passar confiança */
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-buy:hover {
    background-color: #1ebd58;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}
