/* PÁGINA ANÁLISES */

.pagina-analises{
    padding-top:180px;
    padding-bottom:100px;
    background:#0b0b0b;
    min-height:100vh;
}

/* TOPO */

.topo-analises{
    margin-bottom:60px;
    text-align:center;
}

.topo-analises h1{
    color:#fff;
    font-size:56px;
    margin-bottom:20px;
}

.topo-analises p{
    color:#bdbdbd;
    font-size:20px;
}

/* GRID */

.grid-analises{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.analise-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.analise-card{
    background:#151515;
    padding:20px;
    border-radius:12px;
    border:1px solid #222;
    transition:.3s;
}

.analise-card iframe{
    width:100%;
    height:320px;
    border:none;
    border-radius:10px;
    margin-bottom:20px;
}

.analise-card:hover{
    transform:translateY(-5px);
    border-color:#b30000;
}

.analise-card h3{
    font-size:24px;
    line-height:1.5;
}

/* Ajuste da imagem dentro do card de análise */
.analise-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
}

.analise-card P{
margin-bottom: 30px;
font-size: 16px;
color: #d1d1d1;
display:-webkit-box;
-webkit-line-clamp:3;
-webkit-box-orient:vertical;
line-height: 1.6;
overflow:hidden;
font-family: 'Inter', sans-serif;
}

.analise-card .video-link {
    margin-top: 40px !important;
    text-align: center;
}

/* Ajuste para botão nas análises */
.video-link {
    margin-top: 45px; /* distância entre o texto e o botão */
    text-align: center; /* opcional: centraliza o botão */
}

.btn-video {
    display: inline-block;
    padding: 12px 24px;
    background: #b30000;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: .3s;
}

.btn-video:hover {
    background: #d10000;
}

/* ANÁLISES HOME */

.analises{
    background:#0b0b0b;
}

.analise-card{
    transition:.3s;
}

.analise-card:hover{
    transform:translateY(-5px);
    border-color:#b30000;
}

.analise-card h3{
    font-size:24px;
    line-height:1.5;
}

/* CONTEÚDO */

.conteudo-analise{
    padding:30px;
}

.tag-analise{
    display:inline-block;
    margin-bottom:18px;
    background:#101010;
    border:1px solid #222;
    padding:8px 14px;
    border-radius:8px;
    color:#ccc;
    font-size:13px;
}

.conteudo-analise h2{
    color:#fff;
    font-size:34px;
    line-height:1.3;
    margin-bottom:20px;
}

.conteudo-analise p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:25px;
}

/* THUMB */

.thumb-analise{
    height:300px;
    background:#111;
}

.thumb-analise img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* VÍDEO */

.video-embed iframe{
    width:100%;
    height:320px;
    border:none;
    border-radius:14px;
}

/* BOTÃO */

.btn-video{
    display:inline-block;
    background:#b30000;
    color:#fff;
    padding:14px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-video:hover{
    background:#d10000;
}

@media screen and (max-width: 900px) {

.grid-analises{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:30px;
}

.analise-grid {
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:30px;
}
}