/* ===== VÍDEOS ===== */
.videos-header {
    padding-top: 300px;
    padding-bottom: 100px;
}

.videos-page {
    padding: 100px 0;
    background: #f8f9fb;
}

.video-category {
    margin-bottom: 90px;
}

.video-category h2 {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 35px;
    position: relative;
}

.video-category h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #1e88e5;
    display: block;
    margin-top: 12px;
    border-radius: 20px;
}

/* GRID DOS VÍDEOS */
.videos-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
}

.video-card:hover {
    transform: translateY(-8px);
}

/* IFRAME */
.video-card iframe {
    width: 100%;
    height: 260px;
    border: none;
    display: block;
}

/* CONTEÚDO */
.video-info {
    padding: 22px;
}

.video-info h3 {
    font-size: 22px;
    color: #0d1b2a;
    margin-bottom: 12px;
}

.video-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* BOTÃO */
.video-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 22px;
    background: #1e88e5;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.video-btn:hover {
    background: #1565c0;
}

.videos-header .lead{
    margin: auto;
    color: rgba(255,255,255,.9);
}

.videos-header h1{
    font-size: 55px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* RESPONSIVO */
@media(max-width:768px) {
    .videos-header {
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .videos-page {
        padding: 70px 0;
    }

    .video-category h2 {
        font-size: 28px;
    }

    .video-card iframe {
        height: 220px;
    }

    .video-info h3 {
        font-size: 20px;
    }

    .videos-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}