/* Estilo do modal */
.modal {
    display: none; /* Modal inicialmente oculto */
    position: fixed;
    z-index: 1; /* Fica acima de outros conteúdos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Permite rolar se necessário */
    background-color: rgba(0, 0, 0, 0.5); /* Fundo transparente */
}

/* Conteúdo do modal */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Pode ajustar o tamanho conforme necessário */
    text-align: center;
}

.close-btn {
    background-color: #f44336; /* Cor do botão de fechar */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.close-btn:hover {
    background-color: #d32f2f;
}


        /* Estilo do contador */
        .counter {
            font-weight: bold;
            color: #007bff;
        }
          body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f0eb;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        header {
            background-color: #8b8b6c;
            color: white;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        header img {
            width: 250px;
            height: auto;
        }
         body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }

       /* Reset básico */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}


        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 15px;
            padding: 10px 15px;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            border-radius: 5px;
        }

        nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        nav a:active {
            background-color: rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
            }

            nav a {
                margin: 10px 0;
            }
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            display: block;
            text-align: center;
        }
        nav a:hover {
            background-color: #71932f;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            flex-grow: 1;
        }
        .profile {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 2rem;
        }
        .profile img {
            border-radius: 10px;
            margin-right: 2rem;
            width: 200px;
            height: 200px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .profile-description {
            max-width: 800px;
        }
        .section {
            margin-bottom: 2rem;
        }
        .section h2 {
            color: #8b8b6c;
            border-bottom: 2px solid #8b8b6c;
            padding-bottom: 0.5rem;
        }
        .section p {
            background-color: white;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
        }
        .video {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .video iframe {
            flex: 1 1 300px;
            height: 450px;
            border: none;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        /* Configuração básica do HTML e do body */
html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Garante que o corpo ocupe toda a altura da tela */
    display: flex;
    flex-direction: column; /* Coloca o conteúdo e rodapé em uma coluna */
}

/* Seção principal de conteúdo */
.content {
    flex: 1; /* Faz o conteúdo ocupar o espaço disponível */
    padding: 1rem; /* Espaçamento interno */
    background-color: #f5f5f5; /* Fundo claro para contraste */
}

/* Estilo do rodapé */
footer {
    background-color: #262605; /* Fundo escuro */
    color: white; /* Texto branco */
    text-align: center; /* Centraliza o texto */
    padding: 1rem; /* Espaçamento interno */
    width: 100%; /* Garante que ocupe 100% da largura */
    box-sizing: border-box; /* Inclui o padding no cálculo do tamanho */
}

/* Estilo dos links no rodapé */
footer a {
    color: #4ca1af; /* Cor do link */
    text-decoration: none; /* Remove o sublinhado */
    font-weight: bold; /* Negrito no link */
}

footer a:hover {
    text-decoration: underline; /* Sublinha o link ao passar o mouse */
}

/* Responsividade */
@media (max-width: 768px) {
    footer {
        font-size: 0.9rem; /* Ajusta o tamanho da fonte em telas menores */
        padding: 0.8rem; /* Reduz o espaçamento */
    }
}

        .form-container {
            background-color: white;
            padding: 2rem;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }
        .form-container form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-container label {
            font-weight: bold;
        }
        .form-container input, .form-container textarea, .form-container select {
            width: 100%;
            padding: 0.5rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .form-container button {
            background-color: #8b8b6c;
            color: white;
            border: none;
            padding: 0.75rem;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-container button:hover {
            background-color: #71932f;
        }
        .requisition-list {
            background-color: white;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .requisition {
            border-bottom: 1px solid #ccc;
            padding: 0.5rem 0;
        }
        .requisition:last-child {
            border-bottom: none;
        }

     /* Estilo geral */
body {
    font-family: Arial, sans-serif;
}

.section {
    padding: 20px;
}

h2 {
    text-align: center;
}

/* Estilo para os vídeos */
.video {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-item h3 {
    margin: 0;
    font-size: 1.2rem;
}

.video-item p {
    font-size: 0.9rem;
    margin: 5px 0;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border: none;
    margin: 10px 0;
    border-radius: 8px;
}

.video-item .ler-mais {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.video-item .ler-mais:hover {
    background-color: #45a049;
}

/* Responsividade */
@media (min-width: 768px) {
    .video {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .video-item {
        width: 48%;
    }
}

@media (max-width: 767px) {
    .video-item iframe {
        height: 510px
    }

    .video-item .ler-mais {
        font-size: 0.8rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .video-item iframe {
        height: 526px;
    }

    .video-item h3 {
        font-size: 1rem;
    }

    .video-item p {
        font-size: 0.85rem;
    }
}

            nav a {
                padding: 0.75rem;
                font-size: 0.9rem;
            }
            .profile {
                flex-direction: column;
                align-items: center;
            }
            .profile img {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            .section h2 {
                font-size: 1.5rem;
            }
            .video iframe {
                flex: 1 1 100%;
            }
            .form-container form {
                gap: 0.75rem;
            }
        }
        
        /* Ajuste do botão */
        .button {
            display: inline-block;
            background-color: #8b8b6c;
            color: white;
            padding: 0.75rem 2rem;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1rem;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-top: 1rem;
        }
        .button:hover {
            background-color: #71932f;
            transform: translateY(-2px);
        }
        .button:active {
            background-color: #5d7f26;
            transform: translateY(1px);
        }
        .botao-requisicao {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50; /* Cor de fundo verde */
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.botao-requisicao:hover {
    background-color: #45a049; /* Cor mais escura quando passar o mouse */
    transform: translateY(-3px); /* Efeito de elevação ao passar o mouse */
}

.botao-requisicao:active {
    background-color: #3e8e41; /* Cor mais escura ao clicar */
    transform: translateY(1px); /* Efeito de pressionamento */
}

.botao-requisicao:focus {
    outline: none;
    box-shadow: 0 0 0 2px #8b8b6c; /* Destacar o botão quando focado */
}
  .vote-button {
        display: inline-block;
        padding: 0px 28px;
        font-size: 12px;
        font-weight: bold;
        color: white;
        background-color: #4CAF50;
        text-decoration: none;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .vote-button:hover {
        background-color: #45a049;
        transform: scale(1.05);
    }
    .vote-button:active {
        background-color: #3e8e41;
    }
    .video-item p.resumo {
    max-height: 100px;
    overflow: hidden;
}

.video-item p.completo {
    max-height: none;
}
 .credit {
        font-size: 1rem;
        font-weight: 500;
        color: #e0d4d4;
        text-align: center;
        padding: 2rem 0;
    }
    .credit a {
        color: #acac00;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    .credit a:hover {
        color: #0056b3;
    }

    /* Ajustes responsivos */
    @media (max-width: 768px) {
        .credit {
            font-size: 0.875rem;
            padding: 1.5rem 0;
        }
    }
    @media (max-width: 480px) {
        .credit {
            font-size: 0.75rem;
            padding: 1rem 0;
        }
    }
     .button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
  }

  .button:active {
    background-color: #004085;
    transform: translateY(2px);
  }