body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ededed;
   
}
header {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    
}

 h1 a{
            color: #fff;
            text-decoration: none;
        }
        a{
            color: rgb(0, 82, 150);
            text-decoration: none;
        }
nav {
    display: flex;
    justify-content: center;
    background: #444;
    padding: 0.5rem;
}
nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}
.content {
    padding: 2rem;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}
section {
    text-align: center;
}
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.image-gallery img {
    width: 300px;
    height: auto;
    border: 1px solid #000;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.image-gallery img:hover {
    transform: scale(1.1);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal img {
    max-width: 50%;
    max-height: 100%;
    width: auto; /* Mantém a proporção da imagem */
    height: auto; /* Mantém a proporção da imagem */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Adiciona um sombreamento para melhorar a visibilidade */
    border-radius: 5px; /* Bordas arredondadas para melhorar a estética */
}
.modal-close {
    position: absolute;
    top: 20%;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Estilos para a galeria de vídeos */
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
}

.video {
    flex: 1 1 300px; /* Responsivo: largura mínima de 300px */
    max-width: 600px;
    text-align: center;
}

.video h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.video iframe {
    width: 100%; /* Responsivo: ocupa toda a largura disponível */
    aspect-ratio: 16 / 9; /* Mantém a proporção de 16:9 */
    border: 1px solid #000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.tabela-excel table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 1rem;
    text-align: center;
    background-color: #f9f9f9;
}

.tabela-excel th, 
.tabela-excel td {
    border: 1px solid #0e0e0e;
    padding: 8px 12px;
}

.tabela-excel th {
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
}

.tabela-excel tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tabela-excel tr:hover {
    background-color: #d0ebff;
    transition: background-color 0.2s ease-in-out;
}
