/* =========================================
   VARIÁVEIS E CORPO
   ========================================= */
:root {
    --header-bg: #e32f2e;
    --header-height: 110px;
}
body.theme-green { --header-bg: #04b954; }
body { padding-top: var(--header-height); }

/* UserWay: esconde o ícone flutuante padrão (substituído por botão estático no footer) */
#userwayAccessibilityIcon { display: none !important; }

/* =========================================
   CABEÇALHO FIXO
   ========================================= */
.header-section {
    position: fixed; top: 0; left: 0;
    width: 100%; z-index: 9999;
    background: var(--header-bg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    height: var(--header-height);
    display: flex; align-items: center;
}
.header-section.header-scrolled { --header-height: 80px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.header-flex-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.header-logo img { max-height: 80px; width: auto; transition: all 0.4s ease; filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.2)); }
.header-logo img:hover { transform: scale(1.08); }
.header-section.header-scrolled .header-logo img { max-height: 55px; }

/* MENU DESKTOP */
.desktop-nav { display: flex; align-items: center; }
.main-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.main-menu li { position: relative; margin-left: 35px; padding: 20px 0; }
.main-menu li a { color: #ffffff; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; position: relative; transition: all 0.3s ease; }
.main-menu li a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: #ffffff; transition: width 0.3s ease; }
.main-menu li a:hover { text-shadow: 0px 0px 8px rgba(255,255,255,0.4); }
.main-menu li a:hover::after { width: 100%; }

.main-menu li .dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(15px); background: #ffffff; min-width: 190px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 10px 0; z-index: 99; list-style: none; text-align: center; }
.main-menu li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.main-menu li .dropdown li { margin: 0; padding: 0; }
.main-menu li .dropdown li a { padding: 10px 20px; display: block; text-transform: none; font-weight: 600; font-size: 14px; color: #333333; }
.main-menu li .dropdown li a::after { display: none; }
.main-menu li .dropdown li a:hover { color: var(--header-bg); background: #f8f9fa; }

.header-icons { display: flex; align-items: center; margin-left: 35px; border-left: 1px solid rgba(255,255,255,0.3); padding-left: 25px; }
.header-icons a, .header-icons .search-switch { color: #ffffff; font-size: 18px; margin-left: 18px; cursor: pointer; transition: transform 0.3s ease; text-decoration: none; }
.header-icons a:hover, .header-icons .search-switch:hover { transform: scale(1.2); }

.theme-toggle-btn { width: 20px; height: 20px; border-radius: 50%; background-color: #04b954; margin-left: 18px; cursor: pointer; border: 2px solid #fff; transition: transform 0.3s ease; }
body.theme-green .theme-toggle-btn { background-color: #e32f2e; }
.theme-toggle-btn:hover { transform: scale(1.2); }

/* MENU MOBILE */
.mobile-toggle-btn { display: none; color: #ffffff; font-size: 28px; cursor: pointer; }
.mobile-drawer { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: #111111; z-index: 10000; transition: right 0.4s cubic-bezier(0.77,0,0.175,1); padding: 40px 20px; box-shadow: -5px 0 30px rgba(0,0,0,0.5); overflow-y: auto; }
.mobile-drawer.active { right: 0; }
.mobile-drawer-close { position: absolute; top: 20px; right: 20px; color: #ffffff; font-size: 24px; cursor: pointer; }
.mobile-drawer-menu { list-style: none; padding: 0; margin: 40px 0 0 0; }
.mobile-drawer-menu li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-drawer-menu li a { display: block; color: #ffffff; font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 0; text-decoration: none; }
.mobile-drawer-menu li a:hover { color: var(--header-bg); }
.mobile-drawer-submenu { list-style: none; padding: 0 0 10px 20px; display: none; }
.mobile-drawer-submenu.open { display: block; }
.mobile-drawer-submenu li { border: none; }
.mobile-drawer-submenu li a { font-size: 14px; text-transform: none; color: #aaaaaa; padding: 8px 0; }
.mobile-drawer-icons { display: flex; gap: 20px; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-drawer-icons a, .mobile-drawer-icons .search-switch { color: #ffffff; font-size: 20px; }
.mobile-overlay-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.6); z-index: 9999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.mobile-overlay-bg.active { opacity: 1; visibility: visible; }

/* Desktop: ocultar completamente todos os elementos do menu mobile */
@media only screen and (min-width: 992px) {
    .mobile-toggle-btn,
    .mobile-toggle-btn * { display: none !important; }

    .mobile-drawer,
    .mobile-drawer.active { display: none !important; }

    .mobile-overlay-bg,
    .mobile-overlay-bg.active { display: none !important; }
}

@media only screen and (max-width: 991px) {
    :root { --header-height: 80px; }
    .desktop-nav { display: none !important; }
    .mobile-toggle-btn { display: block; }
    .header-logo img { max-height: 50px; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer-section { background-color: #1a1a1a; color: #d5d5d5; padding: 60px 0 20px; position: relative; }
.footer-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.30); }
.footer-section .container { position: relative; z-index: 1; }
.footer-widget { margin-bottom: 30px; }
.footer-widget h4 { color: #ffffff; font-size: 18px; font-weight: 600; margin-bottom: 25px; text-transform: uppercase; border-left: 4px solid #e32f2e; padding-left: 12px; }
.footer-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-contact ul li { font-size: 15px; margin-bottom: 18px; display: flex; align-items: flex-start; line-height: 1.4; }
.footer-contact ul li i { color: #e32f2e; font-size: 18px; margin-right: 15px; margin-top: 2px; min-width: 20px; text-align: center; }
.footer-text p { font-size: 14px; line-height: 1.7; margin-bottom: 15px; color: #b3b3b3; }
.footer-text p strong { color: #ffffff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; }
.footer-bottom p { font-size: 14px; margin: 0; color: #999; }
.btn-accessibility { display: inline-block; margin-top: 8px; background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #bbb; font-size: 13px; padding: 5px 14px; border-radius: 4px; cursor: pointer; transition: all 0.2s ease; }
.btn-accessibility:hover { border-color: #fff; color: #fff; }
.dev-logo { opacity: 0.6; transition: all 0.3s ease; }
.dev-logo:hover { opacity: 1; transform: scale(1.05); }

/* =========================================
   PAGE HEADER - COMPARTILHADO
   ========================================= */
.page-header { background-color: #f8f9fa; padding: 40px 0 20px; border-bottom: 1px solid #eaeaea; margin-bottom: 40px; }
.page-header h1 { font-size: 32px; font-weight: 700; color: #222; margin-bottom: 10px; text-transform: uppercase; }
.page-header--flush { margin-bottom: 0; }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: #e32f2e; text-decoration: none; font-weight: 600; }
.breadcrumb-item.active { color: #666; }

/* =========================================
   HOME - HERO / BANNERS
   ========================================= */
.bg-light-gray { background-color: #f8f9fa; }
.bg-white { background-color: #fff; }

.hero-section { height: auto !important; min-height: 0 !important; padding-top: 25px !important; padding-bottom: 0 !important; margin: 0 0 30px 0 !important; }
.hero-slider, .hero-slider .owl-stage-outer, .hero-slider .owl-stage, .hero-slider .owl-item, .hs-item { height: auto !important; min-height: 0 !important; margin-bottom: 0 !important; }
.hero-img { width: 100%; height: auto; border-radius: 20px; display: block; object-fit: cover; }
.hero-slider:not(.owl-loaded) { display: block; }
.hero-slider:not(.owl-loaded) .hs-item:first-child { display: block !important; }
.hero-slider:not(.owl-loaded) .hs-item:not(:first-child) { display: none !important; }

/* HOME - NOTÍCIAS */
.soccer-section { padding: 50px 0; margin-top: 0 !important; }
.section-title-border { border-bottom: 2px solid #ed1c24; padding-bottom: 10px; }
.section-title-border h3 { font-weight: 700; color: #333; }

.noticia-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; height: 100%; border: 1px solid #eee; transition: all 0.3s ease; }
.noticia-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.noticia-img-container { width: 100%; aspect-ratio: 3 / 2; background-color: #e9ecef; overflow: hidden; }
.noticia-img-container img { width: 100%; height: 100%; object-fit: cover; }
.noticia-card-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.noticia-title { font-size: 16px; font-weight: 600; margin-bottom: 15px; line-height: 1.4; }
.noticia-title a { color: #000 !important; text-decoration: none; }
.noticia-date { font-size: 13px; color: #888; border-top: 1px solid #eee; padding-top: 10px; }

/* HOME - FAQ */
.faq-section { padding: 60px 0; background-color: #fdfdfd; }
.faq-section .section-title h3 { color: #222; font-weight: 700; text-align: center; margin-bottom: 40px; }
.faq-accordion .card { border: 1px solid #eaeaea; border-radius: 10px !important; box-shadow: 0 4px 10px rgba(0,0,0,0.03); margin-bottom: 15px; overflow: hidden; background: #fff; }
.faq-accordion .card-header { background-color: #fff; border-bottom: none; padding: 0; }
.faq-accordion .btn-link { width: 100%; text-align: left; padding: 20px 25px; color: #222 !important; font-weight: 600; font-size: 16px; text-decoration: none !important; box-shadow: none !important; display: flex; justify-content: space-between; align-items: center; white-space: normal; transition: background-color 0.3s ease; }
.faq-accordion .btn-link:hover { background-color: #f9f9f9; }
.faq-accordion .btn-link::after { content: '\25BC'; font-size: 12px; color: #888; transition: transform 0.3s ease; }
.faq-accordion .btn-link[aria-expanded="true"] { color: #e32f2e !important; }
.faq-accordion .btn-link[aria-expanded="true"]::after { transform: rotate(180deg); color: #e32f2e; }
.faq-accordion .card-body { background-color: #fff; color: #333; font-size: 15px; line-height: 1.6; padding: 0 25px 25px 25px; border-top: 1px solid #f5f5f5; }

/* HOME - PATROCINADORES */
.sponsor-section { padding: 60px 0; }
.sponsor-logo-box { display: flex; align-items: center; justify-content: center; height: 110px; padding: 15px; transition: transform 0.3s ease; }
.sponsor-logo-box:hover { transform: scale(1.08); }
.sponsor-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
.sponsor-logo-box:hover img { filter: grayscale(0%); opacity: 1; }

@media only screen and (max-width: 991px) {
    .hero-section { padding: 15px 0 5px 0 !important; display: block !important; }
    .hero-slider, .hero-slider .owl-stage-outer, .hero-slider .owl-stage, .hero-slider .owl-item, .hs-item { padding: 0 !important; }
    .hero-slider .hs-item a { display: block; width: 100%; }
    .hero-img { height: 260px !important; box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important; }
    .soccer-section { padding: 15px 0 !important; }
    .soccer-section .mb-4 { margin-bottom: 15px !important; }
}

/* =========================================
   NOTÍCIAS - LISTAGEM
   ========================================= */
.page-header-clean { background-color: #f8f9fa; padding: 40px 0 20px; border-bottom: 1px solid #eaeaea; margin-bottom: 40px; }
.page-header-clean h1 { font-size: 32px; font-weight: 800; color: #111; margin-bottom: 10px; text-transform: uppercase; letter-spacing: -1px; }
.breadcrumb-clean { background: transparent; padding: 0; margin: 0; font-size: 14px; }
.breadcrumb-clean a { color: #e32f2e; text-decoration: none; font-weight: 600; }
.breadcrumb-clean .active { color: #666; }

.news-grid-container { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 250px 250px; gap: 20px; margin-bottom: 50px; }
.news-grid-item { position: relative; border-radius: 16px; overflow: hidden; display: block; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.news-grid-item:hover { text-decoration: none; }
.news-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-grid-item:hover img { transform: scale(1.08); }
.news-grid-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 70%; background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.news-grid-item.main { grid-row: span 2; }
.news-grid-item.main .news-grid-overlay { padding: 40px; }
.news-badge { background: #e32f2e; color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; align-self: flex-start; margin-bottom: 12px; letter-spacing: 1px; }
.news-grid-title { color: #fff; font-weight: 800; line-height: 1.2; margin-bottom: 10px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); transition: color 0.2s; }
.news-grid-item.main .news-grid-title { font-size: 32px; }
.news-grid-item.sub .news-grid-title { font-size: 18px; }
.news-grid-item:hover .news-grid-title { color: #e32f2e; }
.news-grid-date { color: #ccc; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 6px; }

.blog-section .section-title { font-size: 22px; font-weight: 800; text-transform: uppercase; border-left: 5px solid #e32f2e; padding-left: 15px; margin-bottom: 30px; color: #111; }
.list-news-item { display: flex; gap: 25px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #eaeaea; align-items: center; transition: transform 0.3s; }
.list-news-item:hover { transform: translateX(10px); }
.list-news-img-wrapper { flex: 0 0 220px; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.list-news-img { width: 100%; height: 150px; object-fit: cover; transition: transform 0.5s ease; }
.list-news-item:hover .list-news-img { transform: scale(1.1); }
.list-news-text { flex: 1; }
.list-news-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.list-news-title a { color: #111; text-decoration: none; transition: color 0.2s ease; }
.list-news-title a:hover { color: #e32f2e; }
.list-news-excerpt { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.list-news-meta { font-size: 13px; color: #999; font-weight: 600; }

.sidebar-widget { background: #f8f9fa; padding: 25px; border-radius: 12px; border: 1px solid #eaeaea; }
.sidebar-widget--sticky { position: sticky; top: 20px; }
.trending-list { counter-reset: trending-counter; display: flex; flex-direction: column; gap: 20px; }
.trending-item { display: flex; gap: 15px; align-items: center; position: relative; }
.trending-number { flex: 0 0 40px; height: 40px; background: #111; color: #fff; font-size: 18px; font-weight: 900; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: background 0.3s; }
.trending-item:hover .trending-number { background: #e32f2e; }
.trending-text h5 { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 5px; }
.trending-text h5 a { color: #222; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.trending-text h5 a:hover { color: #e32f2e; }
.trending-date { font-size: 12px; color: #888; }

@media (max-width: 991px) {
    .news-grid-container { grid-template-columns: 1fr; grid-template-rows: auto; }
    .news-grid-item.main { grid-row: span 1; height: 350px; }
    .news-grid-item.sub { height: 220px; }
    .list-news-item { flex-direction: column; gap: 15px; }
    .list-news-img-wrapper { flex: 0 0 auto; width: 100%; }
    .list-news-img { height: 220px; }
}

/* =========================================
   NOTÍCIA - DETALHAMENTO
   ========================================= */
.article-section { padding: 40px 0 80px; background-color: #ffffff; }
.btn-back-news { display: inline-flex; align-items: center; gap: 8px; color: #666; font-size: 13px; font-weight: 700; text-transform: uppercase; text-decoration: none; margin-bottom: 20px; transition: color 0.3s ease; letter-spacing: 1px; }
.btn-back-news:hover { color: #e32f2e; text-decoration: none; }

.hero-header { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.hero-header-img { width: 100%; height: 500px; object-fit: cover; display: block; }
.hero-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 80px 40px 40px; background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.7) 40%, rgba(17,17,17,0) 100%); display: flex; flex-direction: column; justify-content: flex-end; }
.hero-badge { background: #e32f2e; color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; align-self: flex-start; margin-bottom: 15px; letter-spacing: 1px; }
.hero-title { font-size: 42px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 15px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); letter-spacing: -1px; }
.hero-meta { font-size: 14px; color: #ccc; font-weight: 500; display: flex; align-items: center; gap: 15px; }
.hero-meta i { color: #e32f2e; }

.article-content { font-size: 18px; line-height: 1.8; color: #333; margin-bottom: 50px; }
.article-content p { margin-bottom: 25px; }
.article-content::first-letter { font-size: 60px; font-weight: 900; color: #e32f2e; float: left; line-height: 1; padding-right: 8px; margin-top: -5px; }

.gallery-title { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.article-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.article-gallery a { display: block; cursor: zoom-in; overflow: hidden; border-radius: 8px; }
.article-gallery img { width: 100%; height: 150px; object-fit: cover; transition: transform 0.3s ease; }
.article-gallery a:hover img { transform: scale(1.05); }

.sidebar-title { font-size: 18px; font-weight: 800; color: #111; border-left: 4px solid #e32f2e; padding-left: 12px; margin-bottom: 25px; text-transform: uppercase; }
.recent-post-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
.recent-post-img-wrapper { width: 80px; height: 80px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.recent-post-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.recent-post-item:hover .recent-post-img { transform: scale(1.1); }
.recent-post-text { flex-grow: 1; }
.recent-post-text h5 { font-size: 14px; font-weight: 700; line-height: 1.4; margin: 0 0 5px 0; }
.recent-post-text a { color: #111; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.recent-post-text a:hover { color: #e32f2e; }
.recent-post-date { font-size: 12px; color: #888; font-weight: 500; }

@media (max-width: 768px) {
    .hero-header-img { height: 350px; }
    .hero-title { font-size: 28px; }
    .hero-overlay { padding: 40px 20px 20px; }
    .article-content { font-size: 16px; }
}

/* =========================================
   TRANSPARÊNCIA
   ========================================= */
.search-filter-container { margin-bottom: 30px; position: relative; }
.search-input { width: 100%; padding: 15px 20px 15px 50px; border: 1px solid #eaeaea; border-radius: 50px; font-size: 16px; color: #333; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: all 0.3s ease; outline: none; }
.search-input:focus { border-color: #e32f2e; box-shadow: 0 4px 15px rgba(227,47,46,0.1); }
.search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: #999; font-size: 18px; }

.transparency-section { padding-bottom: 60px; }
.category-card { background: #fff; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); margin-bottom: 30px; overflow: hidden; border: 1px solid #eaeaea; transition: all 0.3s ease; }
.category-header { background: #e32f2e; color: #fff; padding: 15px 20px; font-size: 18px; font-weight: 600; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.doc-list { list-style: none; padding: 0; margin: 0; }
.doc-item { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid #f0f0f0; transition: background 0.3s ease; }
.doc-item:last-child { border-bottom: none; }
.doc-item:hover { background: #fcfcfc; }
.doc-title { display: flex; align-items: center; font-size: 15px; color: #333; font-weight: 500; }
.doc-title i { color: #e32f2e; font-size: 22px; margin-right: 15px; }
.doc-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-view { display: inline-block; padding: 8px 18px; background: transparent; border: 1px solid #e32f2e; color: #e32f2e; border-radius: 50px; font-size: 13px; font-weight: 600; text-transform: uppercase; text-decoration: none !important; transition: all 0.3s ease; white-space: nowrap; }
.btn-view:hover { background: #e32f2e; color: #fff; box-shadow: 0 4px 10px rgba(227,47,46,0.2); }
.btn-download { border-color: #555; color: #555; }
.btn-download:hover { background: #555; color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }

@media only screen and (max-width: 767px) {
    .doc-item { flex-direction: column; align-items: flex-start; gap: 12px; }
    .doc-actions { width: 100%; }
    .btn-view { flex: 1; text-align: center; }
}

/* =========================================
   CONTATO
   ========================================= */
.breadcrumb-nav ol { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.breadcrumb-nav li { font-size: 14px; color: #666; }
.breadcrumb-nav li a { color: #e32f2e; text-decoration: none; font-weight: 600; }
.breadcrumb-nav li + li::before { content: "»"; margin: 0 10px; color: #aaa; }

.full-width-map { width: 100%; height: 550px; position: relative; z-index: 1; background: #eee; }
.full-width-map iframe { width: 100%; height: 100%; border: none; filter: contrast(1.05) saturate(1.1); }

.contact-section { position: relative; z-index: 2; padding-bottom: 80px; }
.contact-overlap-box { background: #fff; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.15); margin-top: -120px; padding: 50px; display: flex; gap: 50px; flex-wrap: wrap; }
.contact-info-wrapper { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 25px; }
.info-card { display: flex; align-items: flex-start; gap: 20px; padding-bottom: 25px; border-bottom: 1px solid #f0f0f0; }
.info-card:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon { width: 50px; height: 50px; background: #f8f9fa; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #e32f2e; flex-shrink: 0; transition: all 0.3s; }
.info-card:hover .info-icon { background: #e32f2e; color: #fff; transform: scale(1.05); }
.info-text h4 { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 5px; text-transform: uppercase; }
.info-text p { font-size: 15px; color: #666; line-height: 1.6; margin: 0; }
.contact-form-wrapper { flex: 1.2; min-width: 300px; background: #fcfcfc; padding: 40px; border-radius: 15px; border: 1px solid #eaeaea; }
.contact-form-wrapper h3 { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 25px; text-transform: uppercase; letter-spacing: -0.5px; }
.contact-form-wrapper .form-group { margin-bottom: 20px; }
.contact-form-wrapper .form-group label { display: block; font-size: 13px; font-weight: 700; color: #555; margin-bottom: 8px; text-transform: uppercase; }
.contact-form-wrapper .form-control { width: 100%; padding: 15px 20px; border: 2px solid #eaeaea; border-radius: 10px; font-size: 15px; color: #333; transition: all 0.3s; background: #fff; outline: none; }
.contact-form-wrapper .form-control:focus { border-color: #111; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.contact-form-wrapper textarea.form-control { height: 120px; resize: vertical; }
.btn-whatsapp { width: 100%; background: #25D366; color: #fff; border: none; padding: 16px; border-radius: 10px; font-size: 16px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 10px 20px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #1ebd5c; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(37,211,102,0.4); }

@media (max-width: 768px) {
    .contact-overlap-box { margin-top: -60px; padding: 30px 20px; gap: 40px; }
    .contact-form-wrapper { padding: 25px 20px; }
    .full-width-map { height: 400px; }
}

/* =========================================
   CLUBE - HISTÓRIA E DIRETORIA
   ========================================= */
.history-section { padding-bottom: 80px; background: #fff; }
.history-content { display: flex; align-items: center; gap: 50px; }
.history-logo { flex: 0 0 250px; text-align: center; }
.history-logo img { max-width: 100%; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08)); }
.history-text h3 { font-size: 28px; font-weight: 800; color: #111; margin-bottom: 20px; line-height: 1.2; }
.history-text p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 30px; }
.club-badges { display: flex; gap: 20px; }
.badge-item { background: #f8f9fa; padding: 15px 25px; border-radius: 10px; border-left: 4px solid #e32f2e; }
.badge-item span { display: block; font-size: 12px; color: #888; text-transform: uppercase; font-weight: 700; margin-bottom: 5px; }
.badge-item strong { font-size: 18px; color: #111; font-weight: 800; }

@media (max-width: 991px) {
    .history-content { flex-direction: column; text-align: center; }
    .club-badges { justify-content: center; flex-wrap: wrap; }
}

.board-premium-section { background: linear-gradient(135deg, #111111 0%, #026b30 100%); padding: 80px 0; position: relative; }
.board-premium-section .section-title h2 { color: #fff; font-weight: 800; letter-spacing: -1px; }
.board-premium-section .section-title p { color: rgba(255,255,255,0.9); font-size: 16px; margin-top: -10px; margin-bottom: 40px; }
.board-card { text-align: center; padding: 35px 20px; background: rgba(255,255,255,0.08); border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); transition: all 0.4s ease; height: 100%; }
.board-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-10px); border-color: rgba(255,255,255,0.5); }
.board-img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; margin-bottom: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.board-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.board-role { font-size: 13px; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* =========================================
   CLUBE - ELENCO
   ========================================= */
.team-section { padding: 80px 0; background-color: #f8f9fa; }
.team-section .section-title h2 { font-weight: 800; color: #111; letter-spacing: -1px; }
.team-filter-group { list-style: none; padding: 0; margin: 0 0 50px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.team-filter-group li { padding: 10px 25px; background: #fff; color: #555; border-radius: 50px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.team-filter-group li:hover, .team-filter-group li.active { background: #e32f2e; color: #fff; box-shadow: 0 8px 20px rgba(227,47,46,0.3); transform: translateY(-2px); }
.player-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: none; transition: all 0.4s ease; margin-bottom: 30px; }
.player-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }
.player-img-wrapper { position: relative; width: 100%; aspect-ratio: 3 / 4; background: #eee; overflow: hidden; }
.player-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.player-card:hover .player-img-wrapper img { transform: scale(1.05); }
.player-number { position: absolute; bottom: 0; right: 0; background: #e32f2e; color: #fff; font-size: 22px; font-weight: 800; padding: 8px 20px; border-top-left-radius: 15px; }
.player-info { padding: 25px 20px; text-align: center; }
.player-name { font-size: 18px; font-weight: 800; color: #111; margin-bottom: 8px; text-transform: uppercase; }
.player-detail { font-size: 14px; color: #666; margin: 0 0 5px 0; font-weight: 500; }

/* =========================================
   CLUBE - PRANCHETA TÁTICA
   ========================================= */
.tactical-board-section { padding: 60px 0 100px; background-color: #f8f9fa; }
.court-wrapper { width: 100%; max-width: 900px; margin: 0 auto; padding: 20px; }
.futsal-court { position: relative !important; width: 100% !important; aspect-ratio: 2 / 1 !important; min-height: 400px; background-color: #0a4b25 !important; border: 4px solid #fff !important; border-radius: 5px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); overflow: hidden; }
.court-line { position: absolute; background-color: rgba(255,255,255,0.5); }
.center-line { top: 0; bottom: 0; left: 50%; width: 4px; transform: translateX(-50%); }
.center-circle { top: 50%; left: 50%; width: 120px; height: 120px; border: 4px solid rgba(255,255,255,0.5); border-radius: 50%; transform: translate(-50%,-50%); background: transparent; }
.penalty-area { width: 15%; height: 50%; top: 50%; transform: translateY(-50%); position: absolute; background: transparent; }
.penalty-area.bottom { left: 0; border: 4px solid rgba(255,255,255,0.5); border-left: none; border-radius: 0 100px 100px 0; }
.penalty-area.top { right: 0; border: 4px solid rgba(255,255,255,0.5); border-right: none; border-radius: 100px 0 0 100px; }
.zone-title { position: absolute; color: rgba(255,255,255,0.2); font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; pointer-events: none; z-index: 1; }
.title-goleiro { top: 50%; left: 5%; transform: translateY(-50%) rotate(-90deg); }
.title-fixo { top: 50%; left: 25%; transform: translateY(-50%) rotate(-90deg); }
.title-ala-esq { top: 15%; left: 50%; transform: translateX(-50%); }
.title-ala-dir { bottom: 15%; left: 50%; transform: translateX(-50%); }
.title-pivo { top: 50%; right: 10%; transform: translateY(-50%) rotate(90deg); }
.court-zone { position: absolute; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; }
.zone-goleiro { top: 50%; left: 2%; transform: translateY(-50%); flex-direction: column; width: 15%; }
.zone-fixo { top: 50%; left: 22%; transform: translateY(-50%); flex-direction: column; width: 15%; }
.zone-ala-esq { top: 10%; left: 50%; transform: translateX(-50%); flex-direction: row; width: 40%; }
.zone-ala-dir { bottom: 10%; left: 50%; transform: translateX(-50%); flex-direction: row; width: 40%; }
.zone-pivo { top: 50%; right: 5%; transform: translateY(-50%); flex-direction: column; width: 15%; }
.player-on-court { text-align: center; transition: transform 0.3s ease; cursor: pointer; }
.player-on-court:hover { transform: scale(1.2); z-index: 10; }
.p-dot { width: 32px; height: 32px; background: #e32f2e; color: #fff; line-height: 28px; border-radius: 50%; text-align: center; font-weight: bold; margin: 0 auto 4px; border: 2px solid #fff; box-shadow: 0 4px 8px rgba(0,0,0,0.4); font-size: 14px; }
.p-name { color: #fff; font-size: 11px; font-weight: 700; text-shadow: 1px 1px 3px rgba(0,0,0,0.9); text-transform: uppercase; background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; }

@media (max-width: 768px) {
    .futsal-court { aspect-ratio: 1 / 1.6 !important; }
    .center-line { top: 50%; left: 0; width: 100%; height: 4px; transform: translateY(-50%); }
    .penalty-area { width: 50% !important; height: 15% !important; left: 50% !important; right: auto !important; transform: translateX(-50%) !important; }
    .penalty-area.bottom { bottom: 0 !important; top: auto !important; border: 4px solid rgba(255,255,255,0.5) !important; border-bottom: none !important; border-radius: 100px 100px 0 0 !important; }
    .penalty-area.top { top: 0 !important; bottom: auto !important; border: 4px solid rgba(255,255,255,0.5) !important; border-top: none !important; border-radius: 0 0 100px 100px !important; }
    .title-goleiro { top: auto; bottom: 5%; left: 50%; transform: translateX(-50%) rotate(0deg); }
    .title-fixo { top: auto; bottom: 25%; left: 50%; transform: translateX(-50%) rotate(0deg); }
    .title-ala-esq { top: 50%; left: 10%; transform: translateY(-50%) rotate(-90deg); }
    .title-ala-dir { top: 50%; left: auto; right: 10%; transform: translateY(-50%) rotate(90deg); bottom: auto; }
    .title-pivo { top: 10%; right: auto; left: 50%; transform: translateX(-50%) rotate(0deg); }
    .zone-goleiro { top: auto; bottom: 2%; left: 50%; transform: translateX(-50%); flex-direction: row; width: 80%; }
    .zone-fixo { top: auto; bottom: 20%; left: 50%; transform: translateX(-50%); flex-direction: row; width: 80%; }
    .zone-ala-esq { top: 45%; left: 5%; transform: none; flex-direction: column; width: auto; }
    .zone-ala-dir { top: 45%; left: auto; right: 5%; bottom: auto; transform: none; flex-direction: column; width: auto; }
    .zone-pivo { top: 15%; right: auto; left: 50%; transform: translateX(-50%); flex-direction: row; width: 80%; }
}

/* =========================================
   FLUIDO — ANIMAÇÕES E TRANSIÇÕES SUAVES
   ========================================= */

html { scroll-behavior: smooth; }

/* Entrada suave de página (pages.css é crítico/síncrono no <head>) */
body {
    animation: pageIn 0.3s ease both;
}
@keyframes pageIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Barra de progresso na navegação entre páginas */
#page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #e32f2e, #ff7070);
    z-index: 999999;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(227, 47, 46, 0.5);
}

/* Scroll reveal — estado inicial (classe adicionada via JS) */
.reveal-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-anim.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Imagens lazy com fade-in ao carregar */
img.img-fade {
    opacity: 0;
    transition: opacity 0.4s ease;
}
img.img-fade.img-faded {
    opacity: 1;
}

/* Destaque do link da página atual no menu */
.main-menu li a.menu-active::after {
    width: 100% !important;
}
.mobile-drawer-menu li a.menu-active {
    color: var(--header-bg) !important;
    font-weight: 600;
}
