*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;color:#fff}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.site-shell{
    width:min(1240px,calc(100% - 24px));
    margin:18px auto
}

.glass{
    backdrop-filter:blur(14px);
    background:rgba(15,23,42,.72);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    box-shadow:0 18px 40px rgba(0,0,0,.24)
}

.topbar,.hero,.content-section,.footer{
    margin-bottom:18px
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    gap:14px;
    flex-wrap:wrap
}

.topbar-left,.social-icons{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap
}

.dot{
    opacity:.6
}

.social-icon{
    width:38px;
    height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:15px;
    transition:.25s ease
}

.social-icon:hover{
    transform:translateY(-2px) scale(1.03)
}

.facebook{background:#1877f2}
.instagram{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4)}
.youtube{background:#f00}
.tiktok{background:#111827}
.whatsapp{background:#25d366}
.android{background:#34a853}
.iphone{background:#0ea5e9}

.hero{
    padding:22px;
    display:grid;
    gap:16px;
    grid-template-columns:1.3fr 1fr;
    align-items:center
}

.brand{
    display:flex;
    gap:18px;
    align-items:center;
    min-width:0
}

.brand-logo,.footer-logo{
    width:96px;
    height:96px;
    object-fit:contain;
    border-radius:20px;
    background:rgba(255,255,255,.06);
    padding:8px
}

.brand-placeholder{
    width:96px;
    height:96px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    font-size:34px
}

.brand h1{
    margin:0;
    font-size:clamp(28px,5vw,42px)
}

.brand p{
    margin:6px 0 0;
    color:rgba(255,255,255,.82)
}

.player-card{
    background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    padding:18px
}

.player-top,.player-controls{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px
}

.live-pill{
    background:rgba(34,197,94,.18);
    color:#d1fae5;
    border:1px solid rgba(34,197,94,.4);
    border-radius:999px;
    padding:8px 14px;
    font-weight:bold;
    letter-spacing:.05em
}

.equalizer{
    display:flex;
    gap:5px;
    align-items:end;
    height:28px
}

.equalizer span{
    width:4px;
    border-radius:999px;
    background:var(--primary);
    animation:eq 1s infinite ease-in-out
}

.equalizer span:nth-child(1){height:10px;animation-delay:.1s}
.equalizer span:nth-child(2){height:22px;animation-delay:.2s}
.equalizer span:nth-child(3){height:14px;animation-delay:.3s}
.equalizer span:nth-child(4){height:26px;animation-delay:.4s}

@keyframes eq{
    0%,100%{transform:scaleY(.55)}
    50%{transform:scaleY(1)}
}

.player-controls{
    margin-top:16px
}

.player-btn{
    width:50px;
    height:50px;
    border:0;
    border-radius:50%;
    cursor:pointer;
    background:var(--primary);
    color:#082f1c;
    font-size:20px;
    font-weight:bold
}

.hidden{
    display:none!important
}

input[type=range]{
    width:100%;
    accent-color:var(--primary)
}

.content-section{
    padding:20px
}

.section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:16px
}

.section-head h2{
    margin:0;
    font-size:26px
}

.news-grid-top{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px
}

.news-list{
    display:grid;
    gap:16px
}

.news-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    display:grid;
    grid-template-columns:280px 1fr;
    min-height:220px
}

.feature-card{
    grid-template-columns:1fr
}

.feature-card .news-thumb-wrap{
    height:280px
}

.news-thumb-wrap{
    overflow:hidden;
    background:rgba(255,255,255,.05)
}

.news-thumb,.placeholder-thumb{
    width:100%;
    height:100%;
    object-fit:cover
}

.placeholder-thumb{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:220px;
    font-size:34px;
    color:rgba(255,255,255,.5)
}

.news-content{
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:12px
}

.news-content h3{
    margin:0;
    font-size:23px;
    line-height:1.2
}

.news-content p{
    margin:0;
    color:rgba(255,255,255,.86)
}

.news-date{
    font-size:13px;
    color:rgba(255,255,255,.72)
}

.btn-primary{
    display:inline-flex;
    width:fit-content;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    background:var(--primary);
    color:#072d19;
    font-weight:700;
    border-radius:999px;
    margin-top:auto
}

.empty-state{
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.05);
    color:rgba(255,255,255,.82)
}

.carousel{
    position:relative
}

.carousel-track{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(260px,1fr);
    overflow-x:auto;
    scroll-behavior:smooth;
    gap:16px;
    padding:4px 0;
    scrollbar-width:none
}

.carousel-track::-webkit-scrollbar{
    display:none
}

.carousel-slide{
    border-radius:18px;
    overflow:hidden;
    background:rgba(255,255,255,.05);
    min-height:190px;
    border:1px solid rgba(255,255,255,.1)
}

.carousel-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    aspect-ratio:16/6
}

.carousel-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:2;
    border:0;
    width:42px;
    height:42px;
    border-radius:50%;
    cursor:pointer;
    background:rgba(15,23,42,.82);
    color:#fff
}

.carousel-nav.prev{
    left:-10px
}

.carousel-nav.next{
    right:-10px
}

.video-track{
    grid-auto-columns:minmax(320px,1fr)
}

.video-slide{
    padding:14px;
    display:grid;
    gap:10px
}

.video-slide iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
    border-radius:16px
}

.footer{
    padding:20px
}

.footer-brand{
    display:flex;
    gap:16px;
    align-items:center
}

.footer-bottom{
    margin-top:16px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.1);
    color:rgba(255,255,255,.72)
}

.article-view{
    padding:24px
}

.article-card{
    max-width:860px;
    margin:0 auto
}

.article-card h2{
    font-size:clamp(30px,5vw,42px);
    margin:10px 0 18px
}

.article-image{
    border-radius:22px;
    margin-bottom:20px
}

.article-content{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:20px;
    line-height:1.7
}

.article-content p,.article-content li{
    color:rgba(255,255,255,.92)
}

.share-row{
    display:flex;
    gap:10px;
    align-items:center;
    margin-bottom:16px;
    flex-wrap:wrap
}

.share-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff
}

.share-btn.facebook{background:#1877f2}
.share-btn.whatsapp{background:#25d366}
.share-btn.telegram{background:#229ED9}

@media (max-width:940px){
    .hero{grid-template-columns:1fr}
    .news-grid-top{grid-template-columns:1fr}
    .news-card{grid-template-columns:1fr}
    .news-thumb-wrap{min-height:220px}
}

@media (max-width:640px){
    .site-shell{width:min(100% - 14px,1240px)}
    .topbar{padding:12px}
    .hero,.content-section,.footer{padding:16px;border-radius:20px}
    .brand-logo,.footer-logo,.brand-placeholder{width:72px;height:72px}
    .section-head h2{font-size:22px}
    .news-content h3{font-size:20px}
}

/* ===== AJUSTE DOS CARDS DE ESPORTE ===== */
.news-grid-top{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:16px !important;
    align-items:stretch !important;
}

.news-grid-top .news-card{
    display:flex !important;
    flex-direction:column !important;
    min-height:640px !important;
    height:100% !important;
    border-radius:22px !important;
    overflow:hidden !important;
}

.news-grid-top .feature-card{
    display:flex !important;
    flex-direction:column !important;
}

.news-grid-top .news-thumb-wrap{
    width:100% !important;
    height:280px !important;
    min-height:280px !important;
    max-height:280px !important;
    overflow:hidden !important;
    flex:0 0 280px !important;
    background:rgba(255,255,255,.05) !important;
}

.news-grid-top .news-thumb{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

.news-grid-top .placeholder-thumb{
    width:100% !important;
    height:100% !important;
    min-height:280px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.news-grid-top .news-content{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
    padding:18px !important;
    gap:12px !important;
    min-height:0 !important;
}

.news-grid-top .news-date{
    font-size:13px !important;
    line-height:1.3 !important;
}

.news-grid-top .news-content h3{
    font-size:20px !important;
    line-height:1.25 !important;
    margin:0 !important;
    display:-webkit-box !important;
    -webkit-line-clamp:3 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
}

.news-grid-top .news-content p{
    font-size:16px !important;
    line-height:1.4 !important;
    margin:0 !important;
    display:-webkit-box !important;
    -webkit-line-clamp:5 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
}

.news-grid-top .btn-primary{
    margin-top:auto !important;
    align-self:flex-start !important;
}

@media (max-width: 940px){
    .news-grid-top{
        grid-template-columns:1fr !important;
    }

    .news-grid-top .news-card{
        min-height:auto !important;
    }

    .news-grid-top .news-thumb-wrap{
        height:240px !important;
        min-height:240px !important;
        max-height:240px !important;
        flex:0 0 240px !important;
    }

    .news-grid-top .placeholder-thumb{
        min-height:240px !important;
    }
}