body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px;
    color: white;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.icon {
    width: 30px; /* Tamanho dos ícones */
    height: 30px;
    cursor: pointer;
}

.right-section .icon {
    cursor: pointer;
}

.titulo {
    margin-left: 10px;
    margin: 3;
    text-transform: uppercase; /* Tudo em maiúsculas */
    letter-spacing: 2px; /* Espaçamento entre letras */
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden; /* Garante que o vídeo fique contido no container */
}
.video-container video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ajusta o vídeo ao tamanho do container */
    pointer-events: auto; /* Permite interação com o vídeo */
}

/* Conteúdo principal */
.content {
    margin: 20px 0;
}

.news-article {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.news-article h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000;
}

.news-article h3 {
    text-transform: uppercase;
}

.article-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.news-article figure {
    margin-bottom: 20px;
}

.news-article img {
    width: 100%;
    border-radius: 8px;
}

.news-article figcaption {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    text-align: center;
}

.news-article p {
    font-size: 16px;
    line-height: 1.8;
}

button {
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
    width: 100%;
}
.blue-btn {
    background-color: #2196f3;
    color: white;
}
.blue-btn:hover {
    transform: scale(1.05);
}

/*COR DO BOTÃO DA PRESSEL É AQUI*/
.pulsante {
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    background-color: #000000;
    color: white;
    animation: pulse 1.5s infinite;
    transition: transform 0.3s;
}