/* ================= TV PLAYER ================= */

.tv-section{
padding:40px 0;
display:flex;
justify-content:center;
}

.container{
width:100%;
max-width:1200px;
margin:auto;
padding:0 16px;
}

/* ================= GRID DESKTOP ================= */

.tv-grid-desktop{
display:flex;
gap:24px;
align-items:flex-start;
}

/* PLAYER CARD */

.tv-player-card{
flex:1;
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
border:1px solid #e5e7eb;
}

/* PLAYER */

.tv-player-wrapper{
position:relative;
width:100%;
padding-bottom: 60.25%; /* 16:9 */
height:0;
overflow:hidden;
}

.tv-player-iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

/* ================= BANNERS LATERAIS ================= */

.tv-side-banners{
display:flex;
flex-direction:column;
gap:20px;
width:320px;
}

/* ================= BANNERS ABAIXO ================= */

.tv-bottom-banners{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:20px;
}

/* ================= AD BOX ================= */

.tv-ad-box{
height:120px;
background:#fff;
border-radius:10px;
box-shadow:0 6px 15px rgba(0,0,0,0.1);
display:flex;
align-items:center;
justify-content:center;
transition:.3s;
overflow:hidden;
}

.tv-ad-box:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.tv-ad-box img{
width:100%;
height:100%;
object-fit:contain;
display:block;
}

/* ================= MOBILE LAYOUT ================= */

.tv-mobile{
display:none;
}

/* ================= RESPONSIVO ================= */

@media(max-width:900px){

/* ESCONDE COMPLETAMENTE O LAYOUT DESKTOP */

.tv-grid-desktop{
display:none !important;
}

.tv-side-banners{
display:none !important;
}

.tv-bottom-banners{
display:none !important;
}

/* MOSTRA LAYOUT MOBILE */

.tv-mobile{
display:block;
width:100%;
max-width:100%;
margin:auto;
}

/* PLAYER FULL WIDTH */

.tv-mobile .tv-player-card{
width:100%;
}

/* GRID BANNERS MOBILE */

.tv-mobile-banners{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
margin-top:20px;
}

/* BANNERS */

.tv-ad-box{
height:110px;
}

}

/* ================= MOBILE PEQUENO ================= */

@media(max-width:500px){

.tv-mobile-banners{
grid-template-columns:1fr;
gap:12px;
}

.tv-ad-box{
height:100px;
}

}

/* ================= MOBILE MUITO PEQUENO ================= */

@media(max-width:360px){

.tv-ad-box{
height:90px;
}

}