body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
}

.videos {
    background: url('background.png') no-repeat center center; /* Imagem de fundo */
    background-size: cover; /* Faz a imagem cobrir toda a área */
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Outros estilos já existentes */
.video-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

header {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
    height: 50px;
    margin-right: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: color 0.3s, border-bottom 0.3s;
}

nav ul li a.active, nav ul li a:hover {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 40px 20px;
    background-color: #fff;
    margin-bottom: 20px;
    position: relative;
    background-image: url('bk.png'); /* Caminho para a imagem de fundo */
    background-size: cover; /* Ajusta a imagem para cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    border-radius: 10px; /* Opcional: bordas arredondadas na seção */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Opcional: sombra para destaque */
}

.welcome .text {
    flex: 1;
    margin-right: 20px;
}

.welcome .image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.welcome .image img {
    max-width: 80%;
    height: auto;
    border-radius: 50%;
}

.videos {
    padding: 20px;
    background-color: #fff;
}

.videos h2 {
    text-align: center;
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    background-color: #e3f6fc;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}


.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background-color: #008959; /* Verde claro */
    color: white; /* Texto branco no hover */
}

.card:hover .status-circle {
    background-color: white; /* Bolinha branca no hover */
}

.card h3 {
    margin-top: 0;
    color: #008959;
}

.card h3.card:hover {
    margin-top: 0;
    color: #ffffff;
}


.card .play-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card .play-button:hover {
    background-color: #0056b3;
}

.card .status-circle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background-color: #008959; /* Verde */
    border-radius: 50%;
    transition: background-color 0.3s;
}

.mini-player {
    display: none;
    margin-top: 10px;
}

.footer-content, .footer-bottom {
    text-align: center;
    padding: 10px 20px;
    background-color: #272727;
    color: white;
}

.footer-bottom {
    font-size: 0.8em;
}

