/* ===== 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); }
.nav-menu .btn-login { padding: 8px 16px; font-size: 13px; font-weight: 600; color: #888; border: 1px solid #ddd; border-radius: 6px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 5px; }
.nav-menu .btn-login:hover { background: var(--gray); color: var(--black); border-color: #bbb; }
.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(4, 1fr); gap: 12px; }
.jogador-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.25s; border: 1px solid #eee; text-decoration: none; color: inherit; display: block; }
.jogador-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.jogador-foto { aspect-ratio: 3/4; overflow: hidden; background: var(--gray); }
.jogador-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.jogador-card:hover .jogador-foto img { transform: scale(1.05); }
.jogador-foto-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #ccc; }
.jogador-info { padding: 8px 10px 10px; }
.jogador-info h3 { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--black); line-height: 1.2; }
.jogador-tags { display: flex; flex-wrap: wrap; gap: 3px; }
.jogador-tags span { font-size: 10px; padding: 2px 7px; background: var(--gray); border-radius: 20px; color: #555; display: inline-flex; align-items: center; gap: 2px; }
.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-subtitulo { font-size: 20px; color: #888; margin-bottom: 20px; font-weight: 400; }
.post-conteudo { font-size: 16px; line-height: 1.8; color: #444; }
.post-conteudo p { margin-bottom: 15px; }
.post-conteudo img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.post-conteudo a { color: var(--primary); text-decoration: underline; }
.post-conteudo a:hover { color: #a31a1f; }
.post-conteudo h2, .post-conteudo h3 { margin: 25px 0 10px; color: var(--black); }
.post-conteudo ul, .post-conteudo ol { margin: 15px 0; padding-left: 25px; }
.post-conteudo li { margin-bottom: 5px; }
.post-conteudo blockquote { border-left: 4px solid var(--primary); padding: 15px 20px; margin: 20px 0; background: var(--gray); border-radius: 0 10px 10px 0; font-style: italic; color: #555; }
.post-conteudo iframe { max-width: 100%; border-radius: 12px; margin: 20px 0; }

/* ===== SOCIAL SHARE ===== */
.social-share { display: flex; align-items: center; gap: 10px; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--gray); }
.social-share span { font-size: 14px; font-weight: 700; color: #666; margin-right: 5px; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; font-size: 18px; transition: all 0.3s; text-decoration: none; }
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.share-facebook { background: #1877F2; }
.share-twitter { background: #000; }
.share-linkedin { background: #0A66C2; }
.share-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.share-email { background: #666; }

/* ===== CHART.JS DASHBOARD ===== */
.chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.chart-card { background: #fff; border-radius: 10px; padding: 25px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.chart-card h3 { font-size: 16px; color: #1F1F1F; margin-bottom: 15px; }
.chart-card canvas { max-height: 300px; }
.stats-highlight { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-bottom: 20px; }
.stat-mini { background: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); text-align: center; }
.stat-mini .num { font-size: 24px; font-weight: 700; color: var(--primary); }
.stat-mini .label { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }

/* ===== COMENTÁRIOS ===== */
.comentarios-section { margin-top: 50px; padding-top: 35px; border-top: 3px solid; border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary)) 1; }
.comentarios-section h3 { font-size: 24px; margin-bottom: 30px; color: var(--black); display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }
.comentarios-section h3 i { color: var(--primary); font-size: 22px; background: rgba(200,32,38,0.08); padding: 10px; border-radius: 10px; }
.comentario-item { background: linear-gradient(135deg, #fafafa 0%, #fff 100%); border-radius: 12px; padding: 22px 25px; margin-bottom: 15px; border: 1px solid #eee; border-left: 4px solid var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.3s; }
.comentario-item:hover { box-shadow: 0 4px 15px rgba(200,32,38,0.08); border-left-color: var(--secondary); }
.comentario-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-wrap: wrap; gap: 5px; }
.comentario-header strong { font-size: 16px; color: var(--black); display: flex; align-items: center; gap: 8px; }
.comentario-header strong i { color: var(--primary); font-size: 14px; background: rgba(200,32,38,0.08); padding: 6px; border-radius: 50%; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; }
.comentario-data { font-size: 12px; color: #999; background: var(--gray); padding: 3px 12px; border-radius: 20px; font-weight: 500; }
.comentario-corpo { font-size: 15px; color: #444; line-height: 1.7; margin-top: 5px; }
.sem-comentarios { color: #999; font-size: 15px; padding: 40px 0; text-align: center; background: #fafafa; border-radius: 12px; border: 2px dashed var(--gray); }
.sem-comentarios i { font-size: 32px; display: block; margin-bottom: 10px; opacity: 0.3; }
.comentario-form { margin-top: 35px; background: linear-gradient(135deg, #fff 0%, #fcfcfc 100%); border: 2px solid #eee; border-radius: 16px; padding: 35px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.comentario-form::before { content: ''; display: block; height: 4px; width: 80px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 2px; margin-bottom: 20px; }
.comentario-form h4 { font-size: 20px; margin-bottom: 5px; color: var(--black); font-weight: 700; }
.comentario-form .form-subtitle { font-size: 14px; color: #888; margin-bottom: 25px; }
.form-row-comentario { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comentario-form .form-group { margin-bottom: 18px; }
.comentario-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: #444; text-transform: uppercase; letter-spacing: 0.5px; }
.comentario-form label .required { color: var(--primary); }
.comentario-form input, .comentario-form textarea { width: 100%; padding: 14px 16px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 15px; font-family: inherit; transition: all 0.3s; background: #fff; }
.comentario-form input:focus, .comentario-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(200,32,38,0.08); background: #fff; }
.comentario-form input:hover, .comentario-form textarea:hover { border-color: #bbb; }
.comentario-form textarea { resize: vertical; min-height: 100px; }
.btn-comentar { background: linear-gradient(135deg, var(--primary) 0%, #a31a1f 100%); color: #fff; border: none; padding: 14px 36px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 4px 15px rgba(200,32,38,0.3); }
.btn-comentar:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,32,38,0.4); background: linear-gradient(135deg, #d42a30 0%, #8c1418 100%); }
.btn-comentar:active { transform: translateY(0); }
.btn-comentar i { font-size: 14px; }
.alert-comentario { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.alert-comentario::before { font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 16px; }
.alert-comentario.success { background: linear-gradient(135deg, #d4edda, #c3e6cb); color: #155724; border: 1px solid #b8daff; }
.alert-comentario.success::before { content: '\f00c'; }
.alert-comentario.error { background: linear-gradient(135deg, #f8d7da, #f5c6cb); color: #721c24; border: 1px solid #f5c6cb; }
.alert-comentario.error::before { content: '\f071'; }
@media (max-width: 600px) {
    .form-row-comentario { grid-template-columns: 1fr; }
    .comentario-form { padding: 25px 20px; }
    .comentario-item { padding: 18px 18px; }
}

/* ===== 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(150px, 1fr)); gap: 14px; }
.equipe-card { background: var(--white); border-radius: 8px; overflow: hidden; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid #eee; padding: 14px 10px 12px; transition: all 0.25s; text-decoration: none; color: inherit; display: block; }
.equipe-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.equipe-foto { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; border: 2px 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: 22px; color: #aaa; }
.equipe-card h3 { font-size: 13px; font-weight: 700; margin-bottom: 2px; line-height: 1.2; }
.equipe-funcao { font-size: 11px; color: var(--primary); font-weight: 600; display: block; margin-bottom: 6px; }
.equipe-card p { font-size: 12px; color: #666; line-height: 1.4; }

/* ===== 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-midias { margin-top: 15px; display: flex; flex-direction: column; gap: 8px; }
.perfil-midias img, .perfil-midias video { width: 100%; border-radius: 8px; max-height: 300px; object-fit: cover; }
.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; }
    .nav-menu .btn-login { margin: 5px 0 10px; justify-content: 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; }
}
