/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 32px; font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: 1px; }
.title-bar { width: 80px; height: 4px; background: var(--primary); margin: 15px auto 0; border-radius: 2px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.header .logo img { max-height: 55px; }
.header .logo .logo-text { font-size: 28px; font-weight: 900; color: var(--primary); letter-spacing: 2px; }
.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu a { padding: 8px 16px; font-size: 14px; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s; border-radius: 6px; position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); background: rgba(200,32,38,0.06); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 20px; height: 3px; background: var(--primary); border-radius: 2px; }
.nav-menu .btn-ajude { background: var(--primary); color: var(--white) !important; padding: 10px 24px; font-weight: 700; }
.nav-menu .btn-ajude:hover { background: #a31a1f; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(200,32,38,0.3); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; width: 28px; height: 3px; background: var(--black); border-radius: 3px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; width: 100%; height: 85vh; min-height: 500px; overflow: hidden; margin-top: 80px; }
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; justify-content: center; }
.hero-slide.active { opacity: 1; }
.hero-content { text-align: center; color: var(--white); padding: 20px; max-width: 800px; }
.hero-content h1 { font-size: 52px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content p { font-size: 20px; opacity: 0.9; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }
.hero-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: var(--white); border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 20px; cursor: pointer; transition: all 0.3s; z-index: 10; }
.hero-btn:hover { background: rgba(200,32,38,0.8); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dots span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.hero-dots span.active { background: var(--white); transform: scale(1.3); }

/* ===== PATROCINADORES ===== */
.sponsors-slider { overflow: hidden; padding: 20px 0; }
.sponsors-track { display: flex; gap: 50px; animation: scrollSponsors 20s linear infinite; align-items: center; }
.sponsors-track:hover { animation-play-state: paused; }
.sponsor-item { flex: 0 0 180px; display: flex; align-items: center; justify-content: center; padding: 20px; }
.sponsor-item img { max-height: 80px; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s; }
.sponsor-item:hover img { filter: grayscale(0); opacity: 1; }
@keyframes scrollSponsors { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== IMPACTO SOCIAL ===== */
.impacto-section { background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%); color: var(--white); }
.impacto-section .section-title h2 { color: var(--white); }
.impacto-section .title-bar { background: var(--secondary); }
.indicadores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.indicador-card { background: rgba(255,255,255,0.05); border-radius: 20px; padding: 40px 30px; text-align: center; border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; }
.indicador-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.indicador-numero { font-size: 56px; font-weight: 900; color: var(--secondary); margin-bottom: 10px; line-height: 1; }
.indicador-rotulo { font-size: 16px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.indicador-card p { font-size: 14px; color: #bbb; line-height: 1.7; }

/* ===== JOGADORES ===== */
.jogadores-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.jogador-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #f0f0f0; }
.jogador-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.jogador-foto { aspect-ratio: 9/16; overflow: hidden; background: var(--gray); }
.jogador-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.jogador-card:hover .jogador-foto img { transform: scale(1.08); }
.jogador-foto-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: #ccc; }
.jogador-info { padding: 20px; }
.jogador-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.jogador-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.jogador-tags span { font-size: 12px; padding: 4px 10px; background: var(--gray); border-radius: 20px; color: #555; display: inline-flex; align-items: center; gap: 4px; }
.jogador-tags .tag-categoria { background: var(--primary); color: var(--white); }

/* ===== CATEGORIA FILTRO ===== */
.categoria-filtro { display: flex; justify-content: center; gap: 10px; margin-bottom: 35px; flex-wrap: wrap; }
.cat-btn { padding: 10px 24px; border: 2px solid var(--gray); background: var(--white); border-radius: 30px; font-size: 14px; font-weight: 600; color: #666; cursor: pointer; transition: all 0.3s; }
.cat-btn:hover, .cat-btn.active { border-color: var(--primary); background: var(--primary); color: var(--white); }

/* ===== CALENDÁRIO ===== */
.calendario-section { background: var(--gray); }
.calendario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.calendario-card { background: var(--white); border-radius: 16px; padding: 30px; box-shadow: 0 5px 25px rgba(0,0,0,0.06); }
.calendario-card h3 { font-size: 20px; margin-bottom: 20px; color: var(--black); display: flex; align-items: center; gap: 10px; }
.calendario-card h3 i { color: var(--primary); }
.jogo-item { padding: 20px; border-bottom: 1px solid #f0f0f0; }
.jogo-item:last-child { border-bottom: none; }
.jogo-status { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.jogo-status.resultado { background: #d4edda; color: #155724; }
.jogo-status.proximo { background: var(--primary); color: var(--white); }
.jogo-tipo { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.jogo-titulo { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.jogo-data { font-size: 13px; color: #888; }
.jogo-local { font-size: 13px; color: #888; margin-top: 4px; }
.jogo-local i { color: var(--primary); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.blog-grid.blog-grades { grid-template-columns: repeat(2, 1fr); }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #f0f0f0; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-meta { display: flex; gap: 12px; font-size: 12px; color: #888; margin-bottom: 10px; flex-wrap: wrap; }
.blog-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.blog-card-meta i { color: var(--primary); }
.blog-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: #666; line-height: 1.6; }

/* Blog Container (sidebar) */
.blog-container { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.blog-sidebar { position: sticky; top: 100px; align-self: start; }
.blog-sidebar h3 { font-size: 18px; font-weight: 700; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 3px solid var(--primary); }
.categorias-lista li a { display: block; padding: 10px 15px; font-size: 14px; color: #666; border-radius: 8px; transition: all 0.3s; margin-bottom: 2px; }
.categorias-lista li a:hover, .categorias-lista li a.active { background: var(--gray); color: var(--primary); font-weight: 600; }
.ultimas-lista li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.ultimas-lista li a { font-size: 14px; color: #555; display: block; margin-bottom: 3px; }
.ultimas-lista li a:hover { color: var(--primary); }
.ultimas-lista .data { font-size: 12px; color: #aaa; }
.btn-back { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 14px; margin-bottom: 20px; }
.btn-back:hover { text-decoration: underline; }

/* Post Individual */
.post-imagem-full { border-radius: 16px; overflow: hidden; margin-bottom: 30px; max-height: 500px; }
.post-imagem-full img { width: 100%; height: 100%; object-fit: cover; }
.post-meta { display: flex; gap: 20px; font-size: 14px; color: #888; margin-bottom: 20px; flex-wrap: wrap; }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta i { color: var(--primary); }
.post-meta .post-categoria { background: var(--primary); color: var(--white); padding: 3px 12px; border-radius: 20px; font-size: 12px; }
.post-meta .post-categoria i { color: var(--white); }
.blog-content-full h1 { font-size: 32px; font-weight: 800; margin-bottom: 15px; line-height: 1.3; }
.post-resumo { font-size: 18px; color: #666; margin-bottom: 20px; font-style: italic; }
.post-conteudo { font-size: 16px; line-height: 1.8; color: #444; }
.post-conteudo p { margin-bottom: 15px; }

/* ===== CONTATO ===== */
.contato-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.contato-form-card { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: 0 5px 25px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; }
.contato-form .form-group { margin-bottom: 20px; }
.contato-form .form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: #333; }
.contato-form input, .contato-form select, .contato-form textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--gray); border-radius: 10px; font-size: 15px; transition: all 0.3s; font-family: inherit; }
.contato-form input:focus, .contato-form select:focus, .contato-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,32,38,0.1); }
.contato-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.btn-submit { background: var(--primary); color: var(--white); border: none; padding: 14px 40px; font-size: 16px; font-weight: 700; border-radius: 10px; cursor: pointer; transition: all 0.3s; width: 100%; }
.btn-submit:hover { background: #a31a1f; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,32,38,0.3); }
.contato-info { display: flex; flex-direction: column; gap: 20px; }
.info-item { background: var(--white); border-radius: 16px; padding: 25px; display: flex; align-items: center; gap: 18px; box-shadow: 0 5px 25px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; }
.info-item i { font-size: 32px; color: var(--primary); width: 50px; text-align: center; }
.info-item h4 { font-size: 14px; color: #888; margin-bottom: 3px; }
.info-item p { font-size: 15px; font-weight: 600; }
.info-item p a { color: var(--black); }
.info-item p a:hover { color: var(--primary); }

/* ===== TRANSPARÊNCIA ===== */
.transparencia-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.doc-card { background: var(--white); border-radius: 16px; padding: 30px; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; transition: all 0.3s; }
.doc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: var(--primary); }
.doc-icon { font-size: 48px; color: var(--primary); margin-bottom: 15px; }
.doc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.doc-ref { font-size: 14px; color: #888; display: block; margin-bottom: 15px; }
.doc-download { display: inline-block; padding: 8px 20px; background: var(--gray); border-radius: 30px; font-size: 13px; font-weight: 600; color: #555; transition: all 0.3s; }
.doc-card:hover .doc-download { background: var(--primary); color: var(--white); }

/* ===== EQUIPE ===== */
.equipe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.equipe-card { background: var(--white); border-radius: 16px; overflow: hidden; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; padding: 30px 20px; transition: all 0.3s; }
.equipe-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.equipe-foto { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; border: 4px solid var(--gray); }
.equipe-foto img { width: 100%; height: 100%; object-fit: cover; }
.equipe-foto-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--gray); font-size: 40px; color: #aaa; }
.equipe-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.equipe-funcao { font-size: 14px; color: var(--primary); font-weight: 600; display: block; margin-bottom: 12px; }
.equipe-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== PERFIL JOGADOR ===== */
.perfil-jogador { display: grid; grid-template-columns: 350px 1fr; gap: 40px; margin-top: 20px; }
.perfil-foto { border-radius: 20px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.1); aspect-ratio: 9/16; }
.perfil-foto img { width: 100%; height: 100%; object-fit: cover; }
.perfil-foto-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--gray); font-size: 80px; color: #aaa; }
.perfil-info h1 { font-size: 36px; font-weight: 900; margin-bottom: 20px; }
.perfil-detalhes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
.perfil-item { padding: 12px 16px; background: var(--gray); border-radius: 10px; font-size: 15px; }
.perfil-item strong { color: var(--primary); }
.perfil-bio h3 { font-size: 20px; margin-bottom: 10px; }
.perfil-bio p { font-size: 15px; color: #555; line-height: 1.8; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: #ccc; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #333; }
.footer-col h3 { color: var(--white); font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 8px; }
.footer-col a { color: #ccc; font-size: 14px; display: block; padding: 5px 0; transition: all 0.3s; }
.footer-col a:hover { color: var(--primary); padding-left: 5px; }
.footer-col p i { color: var(--primary); width: 20px; }
.social-links { display: flex; gap: 12px; margin-top: 15px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; transition: all 0.3s; padding: 0; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); padding-left: 0; }
.footer-bottom { text-align: center; padding: 25px 0; font-size: 13px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom a { color: var(--primary); font-weight: 600; display: inline; padding: 0; }
.footer-bottom a:hover { color: var(--secondary); padding-left: 0; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: all 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); color: var(--white); }

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .indicadores-grid { grid-template-columns: 1fr; gap: 20px; }
    .jogadores-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .calendario-grid { grid-template-columns: 1fr; }
    .perfil-jogador { grid-template-columns: 1fr; }
    .perfil-foto { max-width: 300px; }
}

@media (max-width: 768px) {
    .header .container { height: 65px; }
    .hero { height: 60vh; min-height: 400px; margin-top: 65px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .nav-menu { display: none; position: fixed; top: 65px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 0; }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 14px 20px; width: 100%; border-radius: 0; border-bottom: 1px solid #f0f0f0; }
    .nav-menu a.active::after { display: none; }
    .nav-menu .btn-ajude { margin-top: 10px; text-align: center; }
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 24px; }
    .jogadores-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .blog-grid, .blog-grid.blog-grades { grid-template-columns: 1fr; }
    .blog-container { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .contato-grid { grid-template-columns: 1fr; }
    .contato-form .form-row { grid-template-columns: 1fr; }
    .contato-form-card { padding: 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom .container { flex-direction: column; gap: 10px; }
    .perfil-detalhes { grid-template-columns: 1fr; }
    .perfil-info h1 { font-size: 28px; }
    .hero-btn { width: 40px; height: 40px; font-size: 16px; }
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }
    .sponsor-item { flex: 0 0 120px; }
    .sponsor-item img { max-height: 50px; }
    .indicador-numero { font-size: 40px; }
    .btn-submit { padding: 12px 30px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 24px; letter-spacing: 1px; }
    .jogadores-grid { grid-template-columns: 1fr; }
    .container { padding: 0 15px; }
    .section { padding: 35px 0; }
    .section-title { margin-bottom: 30px; }
    .section-title h2 { font-size: 20px; }
    .equipe-grid { grid-template-columns: 1fr; }
    .transparencia-grid { grid-template-columns: 1fr; }
    .hero { height: 50vh; min-height: 300px; }
    .calendario-card { padding: 20px; }
    .blog-card-img { height: 180px; }
}
