*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--bg:#020d1b;
--card:#07182d;
--card2:#0b2342;
--primary:#0d6efd;
--primary-dark:#003b8f;
--text:#ffffff;
--muted:#9db0c7;
--border:rgba(255,255,255,0.06);
}

body{
background:var(--bg);
font-family:'Inter',sans-serif;
color:var(--text);
}

/* HEADER */

.top-header{
position:sticky;
top:0;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 50px;
background:rgba(3,18,38,0.88);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo-area{
display:flex;
align-items:center;
gap:14px;
}

.logo-img{
width:90px;
height:auto;
object-fit:contain;
}

.logo-area h1{
font-size:32px;
font-weight:900;
}

.logo-area span{
color:var(--primary);
}

.main-menu{
display:flex;
gap:30px;
}

.main-menu a{
text-decoration:none;
color:#d7e6ff;
font-weight:700;
position:relative;
padding-bottom:5px;
transition:0.2s;
}

.main-menu a:hover,
.main-menu a.active{
color:#fff;
}

.main-menu a::after{
content:'';
position:absolute;
left:0;
bottom:0;
width:0%;
height:2px;
background:var(--primary);
transition:0.2s;
}

.main-menu a:hover::after,
.main-menu a.active::after{
width:100%;
}

.instagram-btn{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
text-decoration:none;
font-size:18px;
}

/* HERO */

.hero-section{
position:relative;
width:95%;
max-width:1400px;
margin:35px auto;
display:grid;
grid-template-columns:2fr 1fr;
gap:25px;
}

width:95%;
max-width:1400px;
margin:35px auto;
display:grid;
grid-template-columns:2fr 1fr;
gap:25px;
}

.hero-main{
position:relative;
border-radius:28px;
overflow:hidden;
height:620px;
}

.hero-main img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:50px;
background:linear-gradient(transparent,rgba(0,0,0,0.96));
}

.breaking-badge{
background:var(--primary);
padding:10px 18px;
border-radius:30px;
font-size:13px;
font-weight:800;
display:inline-block;
margin-bottom:20px;
}

.hero-overlay h2{
font-size:52px;
font-weight:900;
line-height:1.1;
margin-bottom:20px;
max-width:800px;
}

.hero-overlay p{
font-size:17px;
line-height:1.6;
color:#d0dcee;
max-width:700px;
margin-bottom:30px;
}

.hero-btn{
    transition:0.3s;
display:inline-block;
padding:15px 26px;
background:var(--primary);
border-radius:14px;
text-decoration:none;
font-weight:700;
color:#fff;
}

.hero-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 30px rgba(13,110,253,0.35);
}

/* HERO SIDE */

.hero-side{
display:flex;
flex-direction:column;
gap:25px;
}

.side-news-card{
background:var(--card);
border-radius:24px;
overflow:hidden;
border:1px solid var(--border);
transition:0.2s;
}

.side-news-card:hover{
transform:translateY(-5px);
}

.side-news-card img{
width:100%;
height:220px;
object-fit:cover;
}

.side-news-content{
padding:24px;
}

.news-category{
font-size:12px;
font-weight:800;
color:#69a7ff;
display:block;
margin-bottom:12px;
}

.side-news-content h3{
font-size:22px;
line-height:1.3;
}

/* MAIN GRID */

.main-grid{
width:95%;
max-width:1400px;
margin:0 auto 50px;
display:grid;
grid-template-columns:2fr 1fr;
gap:25px;
}

.section-title{
margin-bottom:25px;
}

.section-title h2{
font-size:34px;
font-weight:900;
}

.news-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

.news-card{
    transition:0.4s;
overflow:hidden;
background:var(--card);
border-radius:24px;
overflow:hidden;
border:1px solid var(--border);
transition:0.25s;
}

.news-card:hover{
transform:translateY(-6px);
}

.news-card img{
width:100%;
height:250px;
object-fit:cover;
display:block;
transition:0.5s;
}
.news-content{
padding:24px;
}

.news-tag{
display:inline-block;
background:rgba(13,110,253,0.18);
color:#69a7ff;
padding:8px 14px;
border-radius:30px;
font-size:12px;
font-weight:800;
margin-bottom:16px;
}

.news-content h3{
font-size:24px;
line-height:1.3;
margin-bottom:14px;
}

.news-content p{
color:var(--muted);
line-height:1.6;
margin-bottom:20px;
}

.news-content a{
color:#69a7ff;
font-weight:700;
text-decoration:none;
}

/* SIDEBAR */

.sidebar{
display:flex;
flex-direction:column;
gap:25px;
}

.sidebar-card{
background:var(--card);
border-radius:24px;
padding:24px;
border:1px solid var(--border);
}

.sidebar-title{
margin-bottom:24px;
}

.sidebar-title h3{
font-size:24px;
}

.match-box{
text-align:center;
}

.teams{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:24px;
}

.team{
display:flex;
flex-direction:column;
align-items:center;
gap:12px;
}

.team img{
width:72px;
height:72px;
object-fit:contain;
}

.vs{
font-size:28px;
font-weight:900;
}

.match-info p{
font-size:20px;
font-weight:800;
margin-bottom:8px;
}

.match-info span{
color:var(--muted);
}

/* MINI TABLE */

.mini-table{
width:100%;
border-collapse:collapse;
}

.mini-table tr{
border-bottom:1px solid rgba(255,255,255,0.05);
}

.mini-table td{
padding:14px 0;
}

.active-row{
color:#69a7ff;
font-weight:800;
}

/* INSTAGRAM */

.instagram-box{
display:flex;
flex-direction:column;
gap:18px;
}

.instagram-box p{
color:var(--muted);
line-height:1.6;
}

.instagram-box a{
display:inline-block;
padding:14px 20px;
background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
border-radius:14px;
color:#fff;
text-decoration:none;
font-weight:700;
text-align:center;
}

@media(max-width:800px){

/* HEADER */

.top-header{
padding:14px 16px;
flex-direction:row;
justify-content:space-between;
align-items:center;
gap:12px;
}

/* LOGO */

.logo-img{
width:95px;
height:auto;
}

/* MENU */

.mobile-btn{
display:flex;
align-items:center;
justify-content:center;
width:48px;
height:48px;
border-radius:14px;
font-size:22px;
}

/* INSTAGRAM */

.instagram-btn{
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
}

/* ESCONDE MENU DESKTOP */

.main-menu{
display:none;
}

/* HERO */

.hero-overlay{
padding:22px;
}

.hero-overlay h2{
font-size:22px;
line-height:1.15;
}

.hero-overlay p{
font-size:14px;
line-height:1.5;
}

.hero-main{
height:420px;
}

.section-title h2{
font-size:28px;
}

}
/* HERO SLIDER */

.hero-slider{
position:relative;
height:620px;
border-radius:28px;
overflow:hidden;
}

.hero-slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.hero-slide.active{
opacity:1;
z-index:2;
}

.hero-slide img{
width:100%;
height:100%;
object-fit:cover;
object-position:center top;
display:block;
}

.slider-dots{
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
z-index:10;
}

.dot{
width:12px;
height:12px;
border-radius:50%;
background:rgba(255,255,255,0.4);
cursor:pointer;
transition:0.3s;
}

.dot.active{
background:#0d6efd;
transform:scale(1.2);
}

/* =========================
   PREMIUM HOVER EFFECTS
========================= */

.news-card,
.side-news-card,
.sidebar-card{
transition:0.35s ease;
position:relative;
overflow:hidden;
}

.news-card:hover,
.side-news-card:hover,
.sidebar-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(13,110,253,0.18);
border-color:rgba(13,110,253,0.25);
}

.news-card img,
.side-news-card img{
transition:0.5s ease;
}

.news-card:hover img,
.side-news-card:hover img{
transform:scale(1.06);
}

/* HERO PREMIUM */

.hero-slider{
box-shadow:
0 25px 50px rgba(0,0,0,0.45),
0 0 40px rgba(13,110,253,0.12);
}

.hero-slide img{
transition:1.5s ease;
}

.hero-slide.active img{
transform:scale(1.03);
}

/* BUTTONS */

.hero-btn,
.instagram-btn{
transition:0.3s ease;
}

.hero-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 30px rgba(13,110,253,0.35);
}

.instagram-btn:hover{
transform:translateY(-4px) scale(1.05);
}

/* MENU */

.main-menu a{
transition:0.3s;
}

.main-menu a:hover{
color:#69a7ff;
}

/* SMOOTH SCROLL */

html{
scroll-behavior:smooth;
}

/* =========================
   LIVE SCORES
========================= */

.live-games{
display:flex;
flex-direction:column;
gap:18px;
}

.live-game{
background:#0b2342;
border-radius:18px;
padding:18px;
border:1px solid rgba(255,255,255,0.05);
transition:0.3s;
}

.live-game:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(13,110,253,0.15);
}

.live-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:18px;
font-size:13px;
color:#9db0c7;
}

.live-badge{
background:#ef4444;
padding:6px 10px;
border-radius:30px;
font-size:11px;
font-weight:800;
color:#fff;
animation:pulseLive 1.2s infinite;
}

@keyframes pulseLive{

0%{
opacity:1;
}

50%{
opacity:0.5;
}

100%{
opacity:1;
}

}

.live-teams{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:16px;
}

.live-team{
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
font-size:13px;
font-weight:700;
}

.live-team img{
width:48px;
height:48px;
object-fit:contain;
}

.live-score{
font-size:28px;
font-weight:900;
color:#fff;
}

.live-minute{
text-align:center;
font-size:20px;
font-weight:900;
color:#10b981;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-btn{
display:none;
width:44px;
height:44px;
border:none;
border-radius:12px;
background:#0d6efd;
color:#fff;
font-size:20px;
font-weight:800;
cursor:pointer;
}

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:#031226;
z-index:9999;
padding:100px 30px;
display:flex;
flex-direction:column;
gap:24px;
transition:0.4s ease;
box-shadow:-10px 0 40px rgba(0,0,0,0.35);
}

.mobile-menu.active{
right:0;
}

.mobile-menu a{
text-decoration:none;
color:#fff;
font-size:18px;
font-weight:700;
padding-bottom:10px;
border-bottom:1px solid rgba(255,255,255,0.06);
}

.mobile-menu a:hover{
color:#69a7ff;
}

/* RESPONSIVE */

@media(max-width:1000px){

.mobile-btn{
display:block;
}

.main-menu{
display:none;
}

.top-header{
padding:18px 20px;
}

.logo-area h1{
font-size:24px;
}

.hero-overlay h2{
font-size:34px;
}

.hero-slider{
height:500px;
}

}

/* =========================
   NEWSLETTER
========================= */

.newsletter-box p{
font-size:15px;
line-height:1.7;
color:#9db0c7;
margin-bottom:24px;
}

.newsletter-form{
display:flex;
flex-direction:column;
gap:14px;
}

.newsletter-form input{
width:100%;
padding:16px;
border:none;
border-radius:14px;
background:#0b2342;
color:#fff;
outline:none;
font-size:15px;
}

.newsletter-form button{
padding:16px;
border:none;
border-radius:14px;
background:#0d6efd;
color:#fff;
font-weight:800;
cursor:pointer;
transition:0.3s;
}

.newsletter-form button:hover{
background:#0052cc;
}

/* SOCIAL */

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

.social-card{
display:flex;
align-items:center;
gap:18px;
padding:18px;
background:#0b2342;
border-radius:18px;
text-decoration:none;
color:#fff;
transition:0.3s;
}

.social-card:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(13,110,253,0.16);
}

.social-icon{
width:54px;
height:54px;
border-radius:16px;
background:#0d6efd;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
font-weight:900;
}

.social-card strong{
display:block;
margin-bottom:6px;
font-size:16px;
}

.social-card p{
font-size:14px;
color:#9db0c7;
}

/* =========================
   HEADER FIXO
========================= */

.top-header{
position:sticky;
top:0;
z-index:999;
backdrop-filter:blur(16px);
background:rgba(2,13,27,0.92);
transition:0.3s;
}
.news-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(13,110,253,0.16);
}

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

/* =========================
   ANIMAÇÕES
========================= */

.hero-slide,
.news-card,
.side-news-card,
.sidebar-card{
animation:fadeUp 0.8s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* =========================
   MOBILE PREMIUM
========================= */

@media(max-width:900px){

/* BODY */

body{
overflow-x:hidden;
}

/* HEADER */

.top-header{
padding:16px 18px;
}

.logo-area h1{
font-size:22px;
}

.logo-img{
width:42px;
}

/* HERO */

.hero-section{
grid-template-columns:1fr;
gap:20px;
}

.hero-slider{
height:auto;
border-radius:24px;
overflow:hidden;
}

.hero-slide{
min-height:auto;
}

.hero-slide img{
height:320px;
}

.hero-overlay{
padding:24px;
}

.hero-overlay h2{
font-size:28px;
line-height:1.2;
margin-bottom:16px;
}

.hero-overlay p{
font-size:15px;
line-height:1.6;
}

.hero-btn{
width:100%;
text-align:center;
padding:16px;
}

/* SIDE NEWS */

.hero-side{
grid-template-columns:1fr;
gap:18px;
}

.side-news-card{
flex-direction:column;
}

.side-news-card img{
width:100%;
height:220px;
}

/* MAIN GRID */

.main-grid{
grid-template-columns:1fr;
gap:25px;
}

.news-grid{
grid-template-columns:1fr;
gap:20px;
}

.news-card img{
height:240px;
}

/* SIDEBAR */

.sidebar{
width:100%;
}

/* PAGE TITLES */

.section-title h2,
.page-header h1,
.videos-title,
.instagram-title{
font-size:34px;
}

/* ARTICLE */

.article-page{
grid-template-columns:1fr;
}

.article-title{
font-size:34px;
}

.article-content{
padding:24px;
}

.article-text{
font-size:18px;
line-height:1.8;
}

.article-content{
padding:24px;
}

.article-text{
font-size:18px;
line-height:1.8;
}

/* VIDEOS */

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

/* INSTAGRAM */

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

.instagram-card iframe{
min-height:500px;
}

/* RELATED */

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

}

/* LOGO DESKTOP */

.logo-img{
width:90px;
height:auto;
object-fit:contain;
}

/* LOGO MOBILE */

@media(max-width:900px){

.logo-img{
width:68px;
}

}

/* PÁGINA DA NOTÍCIA */

.article-container{
max-width:1100px;
margin:60px auto;
padding:0 20px;
}

.article-image{
width:100%;
height:380px;
overflow:hidden;
border-radius:24px;
margin-bottom:30px;
}

.article-image img{
width:100%;
height:100%;
object-fit:cover;
object-position:center center;
display:block;
}

.article-category{
display:inline-block;
padding:10px 18px;
background:#0d6efd;
border-radius:999px;
font-weight:700;
margin-bottom:20px;
}

.article-title{
font-size:52px;
line-height:1.1;
font-weight:800;
margin:25px 0;
color:#fff;
}

.article-content{
font-size:21px;
line-height:1.9;
color:#d7dbe7;
margin-top:30px;
}

/* =====================================
TABELAS
===================================== */

.page-header{
padding:50px 20px;
text-align:center;
}

.page-header h1{
font-size:48px;
font-weight:900;
margin-bottom:10px;
}

.page-header p{
color:#9db0c7;
font-size:16px;
}

.comp-tabs{
width:95%;
max-width:1400px;
margin:0 auto 25px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.comp-tab{
padding:14px 24px;
background:#07182d;
border-radius:14px;
cursor:pointer;
font-weight:700;
transition:0.3s;
}

.comp-tab.active{
background:#0d6efd;
}

.tables-container{
width:95%;
max-width:1400px;
margin:0 auto 50px;
overflow-x:auto;
-webkit-overflow-scrolling:touch;
}

.comp-panel{
display:none;
}

.comp-panel.active{
display:block;
}

.full-table-wrapper{
background:#07182d;
border-radius:24px;
border:1px solid rgba(255,255,255,0.06);
overflow-x:auto;
-webkit-overflow-scrolling:touch;
}

.full-table-header{
padding:24px;
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.full-table-header h2{
font-size:24px;
}

.full-standings{
width:100%;
min-width:750px;
border-collapse:collapse;
}

.full-standings th,
.full-standings td{
padding:18px;
text-align:left;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.team-cell{
display:flex;
align-items:center;
gap:12px;
}

.team-logo-small{
width:28px;
height:28px;
object-fit:contain;
}

.team-pos{
width:26px;
height:26px;
background:#0d6efd;
border-radius:8px;
display:flex;
align-items:center;
justify-content:center;
font-size:12px;
font-weight:800;
}

.row-cruzeiro{
background:rgba(13,110,253,0.12);
}

@media(max-width:900px){

.full-standings{
font-size:13px;
}

.full-standings th,
.full-standings td{
padding:12px 8px;
}

.page-header h1{
font-size:34px;
}

}

@media (max-width: 768px){

    .menu{
        display:flex;
        overflow-x:auto;
        gap:15px;
        padding:10px;
    }

    .menu a{
        font-size:14px;
        white-space:nowrap;
    }

}

@media (max-width: 768px){

    .comp-tabs{
        display:flex;
        overflow-x:auto;
        gap:10px;
        padding:10px;
    }

    .comp-tab{
        min-width:max-content;
        padding:10px 16px;
        font-size:14px;
    }

}

@media (max-width:768px){

  .full-table-wrapper{
    border-radius:12px;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
}

.full-standings{
    min-width:900px;
}
    }

    .comp-panel{
        padding:10px;
    }

}

@media (max-width:768px){

    header{
        padding:12px;
    }

    .logo img{
        max-height:45px;
    }

}

body{
    overflow-x:hidden;
}

@media (max-width:768px){

/* HEADER MOBILE */

header{
    padding:15px 10px;
    min-height:auto;
}

.top-bar{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:15px;
}

/* LOGO */

.logo img{
    width:120px;
    height:auto;
}

/* MENU MOBILE */

.menu-toggle{
    width:55px;
    height:55px;
    border-radius:16px;
    font-size:26px;
}

/* INSTAGRAM */

.instagram-btn{
    width:55px;
    height:55px;
    border-radius:16px;
}

/* REMOVE ESPAÇOS */

.hero,
.banner,
.top-space{
    margin:0;
    padding:0;
}

/* POSTS */

.news-card{
    border-radius:22px;
    overflow:hidden;
}

.news-card img{
    height:auto;
}

/* TEXTO */

.news-title{
    font-size:32px;
    line-height:1.1;
}

.news-resume{
    font-size:18px;
    line-height:1.5;
}

/* REMOVE SCROLL LATERAL */

body{
    overflow-x:hidden;
}

}

/* =====================================
MOBILE HEADER REAL CENTRAL CELESTE
===================================== */

@media(max-width:900px){

/* HEADER */

.top-header{
padding:14px 16px;
flex-direction:row;
justify-content:space-between;
align-items:center;
min-height:70px;
}

/* LOGO */

.logo-area{
gap:10px;
}

.logo-img{
width:95px;
}

/* BOTÃO MENU */

.mobile-btn{
width:48px;
height:48px;
border-radius:14px;
font-size:22px;
flex-shrink:0;
}

/* INSTAGRAM */

.instagram-btn{
width:48px;
height:48px;
border-radius:14px;
font-size:20px;
}

/* HERO */

.hero-section{
margin-top:18px;
width:94%;
}

/* CARD PRINCIPAL */

.hero-slider{
border-radius:24px;
overflow:hidden;
}

/* IMAGEM */

.hero-slide img{
height:420px;
object-fit:cover;
}

/* TEXO DA CAPA */

.hero-overlay{
padding:22px;
}

.hero-overlay h2{
font-size:18px;
line-height:1.15;
margin-bottom:14px;
font-weight:900;
}

.hero-overlay p{
font-size:14px;
line-height:1.5;
margin-bottom:18px;
}

/* BOTÃO */

.hero-btn{
padding:14px 18px;
font-size:14px;
border-radius:14px;
}

/* REMOVE ESPAÇO GIGANTE */

body{
overflow-x:hidden;
}

}

.side-read-more{
display:inline-block;
margin-top:12px;
color:#0d6efd;
font-weight:700;
text-decoration:none;
transition:0.2s;
}

.side-read-more:hover{
color:#fff;
}

/* ===== TABELAS ===== */

.tables-wrapper{
width:100%;
overflow-x:auto;
}

.standings-table{
width:100%;
min-width:700px;
}

.table-header{
display:grid;
grid-template-columns:
50px
70px
1fr
60px
60px
60px;
align-items:center;
padding:16px 20px;
background:#07182d;
border-bottom:1px solid rgba(255,255,255,0.08);
font-weight:800;
color:#9db0c7;
}

.table-row{
display:grid;
grid-template-columns:
50px
70px
1fr
60px
60px
60px;
align-items:center;
padding:16px 20px;
border-bottom:1px solid rgba(255,255,255,0.06);
gap:12px;
}

.table-row img{
width:34px;
height:34px;
object-fit:contain;
}

.table-row span,
.table-row div{
color:#fff;
font-size:14px;
}

@media(max-width:800px){

.standings-table{
min-width:700px;
}

.tables-wrapper{
overflow-x:auto;
}

}

.mini-tabela{
background:#07182d;
padding:25px;
border-radius:24px;
margin:30px auto;
max-width:1400px;
overflow:hidden;
}

.mini-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
flex-wrap:wrap;
gap:15px;
}

.mini-header h2{
color:#fff;
font-size:28px;
font-weight:800;
}

.mini-header a{
color:#69a7ff;
text-decoration:none;
font-weight:700;
}

.tabela-frame{
width:100%;
height:420px;
border:none;
border-radius:16px;
background:#fff;
}

@media(max-width:768px){

.tabela-frame{
height:500px;
}

.mini-header h2{
font-size:22px;
}

}

