/* Variáveis Globais */
:root {
    --bg-color: #f3f4f6;
    --form-bg: #ffffff;
    --text-color: #333333;
    --subtext-color: #666666;
    --border-color: #cccccc;
    --focus-color: #B9FF66;
    --primary-color: #191A23;
    --primary-hover: #A8D84E;
    --font-family: Arial, sans-serif;
    --heading-font: 'Space Grotesk', sans-serif;
}

/* Estilo geral */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #000000;
}

h2 {
    font-family: "Space Grotesk", Nunito, sans-serif;
}

/* Estilizando o Header */
header {
    border-bottom: 3px solid #B9FF66; /* Cor de fundo */
    padding: 0px 20px;
    display: flex;
    justify-content: space-between; /* Alinha o título e o menu em lados opostos */
    align-items: center; /* Centraliza verticalmente os itens */
    height: 100px; /* Altura fixa para o header */
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 200px; /* Ajuste a largura conforme necessário */
    height: auto; /* Mantém a proporção da imagem */
    margin-left: 20%;
}

.site-name h1 {
    margin: 0;
    font-size: 24px;
    color: #000000; /* Cor do texto do nome do site */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; /* Alinha todos os itens verticalmente */
    gap: 20px; /* Espaçamento entre os itens do menu */
}


nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    padding: 7px 15px; /* Espaçamento interno */
    border: 1px solid transparent; /* Borda transparente */
    transition: border 0.3s ease, color 0.3s ease; /* Transição suave */
}

nav ul li a:hover {
    color: #B9FF66; /* Cor dos links ao passar o mouse */
    border: 1px solid black; /* Borda preta */
}


/* Seção de Apresentação */
.presentation {
    display: flex;
    justify-content: space-between;
    align-items: center;  /* Alinha verticalmente */
    padding: 30px 100px;
    background-color: #F5F5F5;
}

.presentation-text {
    width: 50%;
    margin-bottom: 30px;
}

.presentation-text h2 {
    font-size: 36px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.presentation-text p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: justify;
}

.btn-sobre {
    padding: 10px 20px;
    background-color: #B9FF66;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn-sobre:hover,
.btn-comprar:hover {
    background-color: #A8D84E; /* Um tom um pouco mais escuro */
    color: #000000;
}


.presentation-image {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    width: 50%;
}

.presentation-image img {
    max-width: 70%;
    height: auto;
}

/* Painel de Ferramentas */

.tools-header {
    display: flex;
    align-items: center;
    gap: 25px; 
    margin-bottom: 80px; 
    width: 70%; /* Define que ocupará 70% da tela */
}


.section-title {
    font-size: 2em;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin: 0;
}

.section-subtitle {
    font-size: 0.8em;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    color: #666; /* Cor de texto mais suave para o subtítulo */
    margin: 0;
}

.tools-panel {
    padding: 50px;
    background-color: #FFFFFF;
}

.tools-panel h2 {
    font-size: 28px;
    background-color: #B9FF66;
    padding: 10px;
    border-radius: 7px;
    font-family: 'Space Grotesk', sans-serif;
    display: inline;
}

/* Container de Cards */
.tools-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px; 
    margin-top: 40px;
}

/* Remover decoração de links nos títulos dos cartões */
.tools-container a {
    text-decoration: none; /* Remove o sublinhado */
    color: inherit; /* Herda a cor do elemento pai */
}

/* Garantir que o título não muda de cor ao ser clicado ou focado */
.tools-container a:focus, 
.tools-containere a:hover {
    color: inherit; /* Mantém a cor do texto do link */
    outline: none; /* Remove o contorno de foco padrão */
}

/* Card da Ferramenta */
.tool-card {
    width: 28%; /* Aumenta a largura dos cards */
    padding: 25px; /* Aumenta o padding dentro do card */
    background: #F3F3F3; /* Cor padrão */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center; /* Alinha verticalmente no centro */
    justify-content: space-between; /* Espaço entre texto e imagem */
    gap: 15px; /* Espaçamento entre o texto e a imagem */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave para efeito de hover */
}

/* Efeito de hover para os cartões */
.tool-card:hover {
    transform: scale(1.05) rotate(2deg); /* Aumenta ligeiramente o tamanho e aplica rotação */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Intensifica a sombra */
}

/* Aplicar cores alternadas */
.tool-card:nth-child(1) { background: #F3F3F3; }
.tool-card:nth-child(2) { background: #B9FF66; }
.tool-card:nth-child(3) { 
    background: #191A23;
    color: #F3F3F3; 
}
.tool-card:nth-child(4) { background: #B9FF66; }
.tool-card:nth-child(5) { 
    background: #191A23; 
    color: #F3F3F3;
}
.tool-card:nth-child(6) { background: #F3F3F3; }

/* Informações da Ferramenta */
.tool-info {
    text-align: left; /* Alinha o texto à esquerda */
    margin-bottom: 15px;
    flex: 1; /* Permite que o texto use o espaço disponível */
}

/* Título da Ferramenta */
.tool-title {
    margin-bottom: 10px;
}

.title-badge {
    padding: 8px; /* Aumenta o padding da badge */
    background: #B9FF66;
    border-radius: 5px;
    color: black;
    font-size: 20px; /* Aumenta o tamanho da fonte */
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

/* Para alternar a cor do texto nas badges */
.tool-card:nth-child(1) .title-badge { background: #B9FF66; color: black; }
.tool-card:nth-child(2) .title-badge { background: #191A23; color: #F3F3F3; }
.tool-card:nth-child(3) .title-badge { background: #F3F3F3; color: black; }
.tool-card:nth-child(4) .title-badge { background: #191A23; color: #F3F3F3; }
.tool-card:nth-child(5) .title-badge { background: #F3F3F3; color: black; }
.tool-card:nth-child(6) .title-badge { background: #B9FF66; color: black; }

/* Link da Ferramenta */
.tool-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-icon {
    position: relative;
    width: 35px; /* Tamanho do ícone */
    height: 35px;
}

.icon-circle {
    width: 35px; /* Tamanho do círculo */
    height: 35px;
    background-color: #191A23; /* Cor do círculo */
    border-radius: 50%;
    position: relative;
}

.tool-card:nth-child(3) .icon-circle {
    background-color: #F3F3F3; /* Cores alternadas */
}
.tool-card:nth-child(5) .icon-circle {
    background-color: #F3F3F3;
}

/* Seta usando SVG como background */
.icon-arrow {
    width: 20px;
    height: 20px;
    background-image: url('/medias/images/arrow.svg'); /* Caminho para o SVG */
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;  /* Centraliza verticalmente */
    left: 50%; /* Centraliza horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta a posição ao centro */
}

.tool-card:nth-child(3) .icon-arrow {
    background-image: url('/medias/images/arrow2.svg'); /* Outro SVG para o 3º card */
}
.tool-card:nth-child(5) .icon-arrow {
    background-image: url('/medias/images/arrow2.svg'); /* Outro SVG para o 5º card */
}

/* Texto do Link */
.link-text {
    color: black;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    line-height: 24px;
}

.tool-card:nth-child(3) .link-text {
    color: #F3F3F3;
}
.tool-card:nth-child(5) .link-text {
    color: #F3F3F3;
}


/* Ilustração da Ferramenta */
.tool-illustration {
    flex-shrink: 0; /* Impede que a imagem seja reduzida */
}

.tool-illustration img {
    width: 150px; /* Ajusta o tamanho da imagem */
    height: auto;
    border-radius: 10px;
}

/* Reviews dos Usuários */
.reviews {
    padding: 10px 50px;
    color: #FFFFFF;
    margin: 0;
}

.reviews h2 {
    font-size: 28px;
    padding: 20px 0 15px 0;
    margin: unset;
}

.reviews-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.review {
    background-color: #2C2F39;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
    box-sizing: border-box;
    text-align: center;
}

.review img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.review p {
    margin: 10px 0;
    font-size: 16px;
}

.review span {
    font-size: 14px;
    color: #B9FF66; /* Destaque para o nome do usuário */
}

/* Planos de Acesso */
.plans {
    padding: 50px;
    background-color: #FFFFFF;
}

.plans h2 {
    font-size: 28px;
    background-color: #B9FF66;
    padding: 10px;
}

.plans-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.plan {
    width: 30%;
    padding: 20px;
    border: 1px solid #B9FF66;
    border-radius: 5px;
    text-align: center;
}

.plan h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.plan p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-comprar {
    padding: 10px 20px;
    background-color: #B9FF66;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Estilização do Formulário de contato */

/* Seção de Contato */
.contact-page {
    padding: 30px 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: #F5F5F5; /* Cor de fundo leve para contraste com o resto do site */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-page h2 {
    font-family: 'Space Grotesk', Nunito, sans-serif;
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
}

.contact-form-group {
    margin-bottom: 15px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
    color: #333;
    font-weight: bold;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
    border-color: #B9FF66; /* Cor do foco */
    outline: none; /* Remove o contorno padrão do navegador */
}

.contact-form-group input[type="tel"] {
    font-size: 16px;
}

.contact-form-group textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
}

.btn-submit {
    background-color: #B9FF66;
    color: #000000;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit:hover {
    background-color: #A8D84E; /* Tom um pouco mais escuro no hover */
    color: #000000;
}

/* Página sobre*/

.sobre-container {
    background-color: #F3F3F3;
    padding: 40px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sobre-container h1 {
    font-size: 2.5rem;
    color: #191A23;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.sobre-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #191A23;
    font-family: 'Space Grotesk', sans-serif;
}

.sobre-container section {
    background-color: #B9FF66;
    padding: 40px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sobre-container section h2 {
    font-size: 2rem;
    color: #191A23;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.sobre-container section p, 
.sobre-container section li {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #191A23;
    font-family: 'Space Grotesk', sans-serif;
}

.sobre-container section ul {
    list-style-type: none;
    padding-left: 0;
}

.sobre-container section li {
    margin-bottom: 10px;
}

.sobre-container strong {
    font-weight: bold;
    color: #191A23;
}

/* Rodapé */

footer {
    background-color: #000000;
    color: #F3F3F3;
    text-align: center;
    padding-top: 30px;
}

.footer-content {
    display: flex; /* Usa flexbox para criar layout de colunas */
    justify-content: space-between; /* Espaço entre as colunas */
    align-items: flex-start; /* Alinha itens à esquerda */
    padding: 20px 0; /* Adiciona padding vertical ao conteúdo do rodapé */
}

.footer-section {
    flex: 1; /* Permite que cada seção ocupe uma parte igual do espaço */
    padding: 0 20px; /* Espaçamento interno */
    margin: 0 10px; /* Aumente a margem para adicionar mais espaço entre as seções */
    text-align: left; /* Alinha o texto à esquerda */
}

.footer-section h3 {
    margin-top: 0; /* Remove a margem superior do título da seção */
    color: #B9FF66;
}

.footer-section ul {
    list-style: none; /* Remove os bullets */
    padding: 0; /* Remove o padding padrão */
    margin: 0; /* Remove a margem padrão */
}

.footer-section ul li a {
    color: inherit;
    text-decoration: none; /* Remove sublinhado */
}

.footer-section ul li a:hover {
    text-decoration: underline; /* Sublinha ao passar o mouse */
    color:white;
}

.footer-section.links ul li {
    border-bottom: 1px solid #F3F3F3; /* Adiciona uma linha na parte inferior de cada item da lista */
    padding-bottom: 5px; /* Adiciona um pouco de espaço entre o texto e a linha */
    margin-bottom: 5px; /* Adiciona um pouco de espaço após cada item da lista */
}

.footer-section.links ul li:last-child {
    border-bottom: none; /* Remove a linha do último item para evitar uma linha dupla */
}

.pencil-icon {
    background: url('/medias/images/link.png') no-repeat; /* Caminho para o ícone de lápis na pasta images */
    background-size: 13px 13px; /* Define o tamanho do ícone */
    padding-left: 20px; /* Espaço à esquerda do texto para acomodar o ícone */
    margin-right: 10px; /* Espaço entre o ícone e o texto */
}

.footer-section a {
    color: inherit;
    text-decoration: none;
}
.footer-section a:hover {
    color: darkgray; /* Cor do texto cinza claro */
}


/* Estilos para a parte de baixo do rodapé com direitos autorais */
.footer-bottom {
    background-color: #B9FF66; /* Cor de fundo cinza azulado */
    color: #2C2F39; /* Cor do texto cinza claro */
    text-align: left; /* Alinha o texto à esquerda */
    padding: 30px; /* Adiciona padding horizontal */
    font-size: 1em; /* Tamanho da fonte menor */
}

.footer-bottom a {
    color:rgb(92, 92, 92);
    text-decoration: none; /* Remove sublinhado */
}

.footer-bottom a:hover {
    text-decoration: underline; /* Sublinha ao passar o mouse */
    color:white;
}

footer {
    clear: both; /* Clear floats */
}

.footer-section.about button {
    background-color: #000000; /* Fundo do botão */
    color: #d6e6e8; /* Cor do texto do botão */
    border: 1px solid #d6e6e8; /* Borda do botão */
    padding: 10px 20px; /* Espaçamento interno do botão */
    border-radius: 5px; /* Bordas arredondadas */
    cursor: pointer; /* Cursor do mouse como ponteiro */
    margin-top: 10px; /* Espaço acima do botão */
    text-align: center; /* Texto centralizado */
}

.footer-section.about button:hover {
    background-color: #d6e6e8; /* Fundo do botão no hover */
    color: #000000; /* Cor do texto no hover */
    border: 1px solid #000000; /* Borda no hover */
}

.footer-section.contact img {
    width: 35px; /* Ou o tamanho que preferir */
    height: auto;
    margin: 5px;
}

/* INÍCIO DOS FORMULÁRIOS DE LOGIN, CADASTRO E FORGOT */

/* Container Principal */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px;
    background-color: var(--bg-color);
    font-family: var(--font-family);
}

/* Seção do Formulário */
.form-section {
    flex: 1 1 100%;
    max-width: 600px;
    padding: 30px;
    background-color: var(--form-bg);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Título */
.form-section h2 {
    font-family: var(--font-family);
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Subtítulo */
.form-section p {
    font-size: 16px;
    color: var(--subtext-color);
    margin-bottom: 30px;
    margin-top:0;
}

/* Formulário */
.form {
    display: flex;
    flex-direction: column;
    gap: 12px; 
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 5px;
}

/* Garante que o box-sizing seja aplicado corretamente */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Campos do formulário */
.form-group input {
    display: block;
    width: 100%; 
    padding: 10px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: #fff;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Ajuste no foco do input */
.form-group input:focus {
    outline: none;
    border-color: var(--focus-color);
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

/* Botão */
.btn, #addSchoolButton {
    display: block; 
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover, #addSchoolButton:hover {
    background-color: var(--primary-hover);
    color: var(--primary-color);
}

/* Rodapé do Formulário */
.form-footer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--subtext-color);
    text-align: center;
}

.form-footer .link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.form-footer .link:hover {
    color: var(--primary-hover);
}

/* Ilustrações (Opcional) */
.form-illustration {
    display: none;
    max-width: 400px;
    text-align: center;
}

.form-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Ocultar as páginas não ativas */
.form-page {
    display: none;
}

.form-page:not(.hidden) {
    display: block;
}

/* Botões de Navegação */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 10px 20px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-prev:hover, .btn-next:hover, .btn-submit:hover {
    background-color: var(--primary-hover);
}

.hidden {
    display: none;
}

/* Dropdown (select) estilizado */
form select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #fff;
    color: var(--text-color);
    appearance: none; /* Remove a seta padrão do navegador */
    background-image: url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjNjY2IiB2aWV3Qm94PSIwIDAgMTIgMTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuMjkxIDMuMjE5YS43NS43NSAwIDAgMSAxLjQxMiAwbDMuNzUgMy43NWEuNzUuNzUgMCAwIDEtMS40MTIgMS40MTJMMTYuNzUgM3oiIC8+PC9zdmc+');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 16px;
}

form select:focus {
    outline: none;
    border-color: var(--focus-color);
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.password-group {
    position: relative;
}

.password-group input {
    width: 100%;
    padding-right: 40px; /* Espaço para o botão de visualização */
}

.password-group label {
    display: block;
    margin-bottom: 8px; /* Espaçamento entre o título e o campo */
    text-align: left; /* Garante alinhamento à esquerda */
}

.password-group {
    position: relative; /* Adiciona posição relativa ao grupo de senha */
}

.toggle-password {
    background: none;
    border: none;
    color: #000; /* Cor preta ou qualquer cor de texto que combine com seu design */
    cursor: pointer;
    font-size: 14px;
    position: absolute; /* Faz o botão ficar posicionado dentro do campo */
    right: 10px; /* Distância do lado direito */
    top: 50%; /* Centraliza verticalmente */
    transform: translateY(20%); /* Ajusta para centralizar exatamente no meio */
    padding: 0;
    text-decoration: none; /* Remove o sublinhado */
}

.toggle-password:hover {
    color: #333; /* Cor mais escura ao passar o mouse */
}


/* FIM DO ESTILO PARA AS PÁGINAS DE LOGIN, REGISTER E FORGOT */

/* INÍCIO DO ESTILO DO BLOG */
/* Container principal */
.blog-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

/* Conteúdo principal */
.blog-content {
    flex: 3;
}

.blog-post {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.blog-post header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

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

.blog-meta .tag-link {
    color: #247e49;
    text-decoration: none;
}

.blog-meta .tag-link:hover {
    text-decoration: underline;
}

.post-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

/* Navegação de postagens */
.banner-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 48%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.banner.previous-post {
    background-image: url('/medias/images/previous-post.jpg');
}

.banner.next-post {
    background-image: url('/medias/images/next-post.jpg');
}

.banner-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    width: 100%;
}

.banner-content span {
    font-size: 12px;
    color: #ddd;
}

.banner-content h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

/* Barra lateral */
.blog-sidebar {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-sidebar h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.related-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: 10px;
}

.related-posts a {
    color: #247e49;
    text-decoration: none;
}

.related-posts a:hover {
    text-decoration: underline;
}
/* FIM DO ESTILO PARA AS PÁGINAS DO BLOG */
/* INÍCIO DO ESTILO PARA AS PÁGINAS DA ÁREA ADMINISTRATIVA */
/* Ocultar o menu principal */
header .menu-principal {
    display: none !important;
}

/* Estilo para o container principal */
.admin-master-container {
    display: flex;
    min-height: 100vh;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

/* Menu Lateral */
.admin-master-sidebar {
    width: 250px;
    background-color: var(--primary-color);
    padding: 20px;
    color: #ffffff;
}

.admin-master-sidebar .sidebar-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.admin-master-sidebar .sidebar-menu {
    list-style: none;
    padding: 0;
}

.admin-master-sidebar .sidebar-menu li {
    margin-bottom: 15px;
}

.admin-master-sidebar .sidebar-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.admin-master-sidebar .sidebar-menu li a:hover {
    color: #B9FF66;
}

/* Conteúdo Principal */
.admin-master-content {
    flex: 1;
    padding: 20px;
}

.admin-master-header h1 {
    
    font-size: 28px;
    margin-top:0;
    margin: 10px 0;
    color: var(--primary-color);
}

.admin-master-header p {
    color: #475569;
    font-size: 16px;
}

/* Cards */
.admin-master-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.admin-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.admin-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

.admin-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
}

.admin-card .admin-card-btn {
    display: inline-block;
    padding: 10px 15px;
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.admin-card .admin-card-btn:hover {
    background-color: #B9FF66;
    color: #1e293b;
}

/* FIM DO ESTILO PARA AS PÁGINAS DA ÁREA ADMINISTRATIVA */

/* INÍCIO DO LAYOUT DO POPUP */
#generic-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#generic-popup .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 80%;
    max-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

#generic-popup .popup-message {
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: calc(80vh - 100px); 
    padding-right: 10px;
}

#generic-popup .popup-ok-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-end;
    margin-top: 10px;
}


#generic-popup .popup-ok-button:hover {
    background-color: var(--primary-hover);
}

#generic-popup.hidden {
    display: none;
}

/* Classe para esconder o popup */
.hidden {
display: none;
}

/* Estilo do ícone de menu (hamburguer) */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.menu-bar {
    display: block;
    width: 25px;
    height: 4px;
    margin: 5px auto;
    background-color: #000;
    border-radius: 5px;
}

#login-button {
    border: 1px solid #000000; /* Borda preta bem fina */
    padding: 8px 16px; /* Ajuste de espaçamento */
}

#logout-btn {
    background-color: #FF4C4C;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer; /* Adiciona o cursor pointer */
    padding: 8px 16px; /* Adiciona padding para melhor aparência */
    transition: background-color 0.3s ease; /* Suaviza a transição do hover */
}

#logout-btn:hover {
    background-color: #FF1F1F;  /* Tom mais escuro no hover */
}


#logout-btn:focus {
    outline: none;  /* Remove o contorno de foco */
}
/* FIM DO LAYOUT DO POPUP */
/* INÍCIO DO ESTILO USUÁRIOS */
/* Layout principal */
.admin-master-content {
    flex: 1;
    padding: 20px;
    background-color: var(--bg-color);
}

/* Cabeçalho */
.admin-master-header {
    margin-bottom: 20px;
}

.admin-master-header h1 {
    font-size: 24px;
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Cards informativos */
.admin-master-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.admin-card {
    background: var(--form-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
}

.admin-card h3 {
    font-size: 18px;
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-bottom: 10px;
}

.admin-card-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.admin-card-btn:hover {
    background-color: var(--primary-hover);
}
/* INÍCIO DA ESTILIZAÇÃO apenas dentro da lista de escolas associadas */
/* Estilizando os títulos dentro da div associada */
#associatedSchools h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

#associatedSchools h4 {
    font-size: 18px;
    font-weight: bold;
    color: #34495e;
    margin-top: 10px;
}

/* Estilizando a lista de escolas */
#associatedSchools ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

/* Cada item da escola */
#associatedSchools ul li {
    background: #ecf0f1;
    padding: 8px 12px;
    margin-bottom: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

#associatedSchools ul li:hover {
    background: #d5dbdb;
}

/* Nome da escola */
#associatedSchools .school-name {
    font-weight: bold;
    color: #2c3e50;
    flex-grow: 1;
}

/* Input de edição */
#associatedSchools .edit-input {
    width: 60%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: none;
}

/* Estilizando os botões */
#associatedSchools button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 8px;
    padding: 5px;
    transition: transform 0.2s;
}

/* Animação nos botões */
#associatedSchools button:active {
    transform: scale(0.9);
}

/* Botão de editar */
#associatedSchools .edit-icon {
    color: #f1c40f;
}

/* Botão de confirmar edição */
#associatedSchools .confirm-edit {
    color: #2ecc71;
    display: none;
}

/* Botão de cancelar edição */
#associatedSchools .cancel-edit {
    color: #e74c3c;
    display: none;
}

/* Botão de excluir */
#associatedSchools .delete-icon {
    color: #e74c3c;
}

/* INÍCIO DA PÁGINA REPORTS */

/* Estilos para o Cabeçalho do Relatório (Ajustado) */
.report-body {
    display: flex;
    flex-direction: column; /* Alinha os filhos (header e formulário) verticalmente */
    width: 100%; /* Ocupa a largura disponível dentro do .admin-master-container */
    /* Outros estilos que você queira aplicar ao corpo do relatório */
}

#report-header {
    text-align: center;
    margin-bottom: 10px; /* Adiciona espaço abaixo do cabeçalho */
    margin-top: 20px; /* Adiciona margem no topo do cabeçalho */
}

#report-header-tittle {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 2em; /* Tamanho maior para o título principal */
    margin: 0;
}

#report-header-description {
    color: var(--subtext-color);
    font-size: 0.8em;
    margin: 0;
}

main.report-form-main {
    background-color: var(--form-bg);
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80%; /* Define a largura para 80% em telas maiores */
    max-width: 900px; /* Mantém uma largura máxima */
    margin: 5px auto; /* Centraliza o main horizontalmente e adiciona margem vertical */
}


.report-form-section-title {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.report-form-group {
    margin-bottom: 20px;
}

.report-form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--subtext-color);
    font-weight: bold;
}

.report-form-input,
.report-form-textarea,
.report-form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    color: var(--text-color);
    box-sizing: border-box;
    margin-bottom: 5px;
}

/* Estilos para o Botão de Envio */
.report-form-button {
    background-color: var(--primary-color);
    color: var(--form-bg);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    display: block;
    margin-top: 30px;
}

.report-form-button:hover {
    background-color: var(--primary-hover);
}

/* Estilos Refinados para o Switch (Ativar IA) - Cor ao Ativar Corrigida */
.report-form-switch-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: auto;
    height: 28px;
    cursor: pointer;
}

.report-form-switch-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.report-form-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 14px;
    width: 55px; /* Largura fixa do slider */
}

.report-form-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.report-form-switch-input:checked + .report-form-slider {
    background-color: var(--primary-color); /* Cor quando ativado */
}

.report-form-switch-input:checked + .report-form-slider:before {
    transform: translateX(31px); /* Ajuste do deslocamento */
}

.report-form-switch-text {
    margin-left: 65px;
    color: var(--text-color);
    font-weight: bold;
    font-size: 1em;
}

.report-form-ia-description {
    color: var(--subtext-color);
    font-size: 0.85em;
    margin-top: 3px;
}

/* Estilos para Campos Ocultos */
.report-form-hidden {
    display: none;
}

#report-form-autocomplete-results {
    list-style-type: none; /* Tirar os bullets */
    padding: 0;
    margin: 0;
    border: 1px solid #ccc; /* Adicionar uma borda para delimitar a área */
    position: relative; /* Posicionar abaixo do input */
    background-color: white;
    z-index: 10; /* Garantir que fique acima de outros elementos */
    max-height: 200px; /* Altura máxima para scroll */
    overflow-y: auto; /* Adicionar barra de rolagem se necessário */
    min-width: calc(100% - 2px); /* Largura mínima igual ao input (ajuste conforme necessário) */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adicionar uma leve sombra */
}

#report-form-autocomplete-results li {
    padding: 8px 12px;
    cursor: pointer; /* Indica que é clicável */
}

#report-form-autocomplete-results li:hover {
    background-color: #f0f0f0; /* Efeito de hover */
    color: #333; /* Mudar a cor do texto no hover (opcional) */
}

#report-form-autocomplete-results li.autocomplete-item-inactive {
    color: #999;
    font-style: italic; 
    cursor: not-allowed; 
}

#report-form-autocomplete-results li.autocomplete-item-inactive:hover {
    background-color: #eee;
    color: #999;
}

/* Estilos para a tabela de alunos selecionados (AJUSTADO) */
#report-form-selected-students {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse; 
    font-size: 0.9em; 
}

/* Estilos para o cabeçalho da tabela (AJUSTADO) */
.report-form-table-head {
    background-color: #f2f2f2; /* Cor de fundo levemente cinza */
    font-weight: bold; /* Texto do cabeçalho em negrito */
    color: #333; /* Cor do texto do cabeçalho */
}

.report-form-table-header {
    padding: 8px 15px; /* DIMINUÍDO: Espaçamento interno das células do cabeçalho */
    text-align: left; /* Alinhamento do texto à esquerda por padrão */
    border-bottom: 1px solid #ddd; /* Borda inferior para separação */
}

/* Estilos para o corpo da tabela (AJUSTADO) */
.report-form-table-body tr {
    border-bottom: 1px solid #eee; /* Adiciona uma linha sutil entre as linhas */
    /* REMOVIDO: Espaçamento vertical adicional da linha (se houver) */
}

.report-form-table-body tr:nth-child(even) {
    background-color: #f9f9f9; /* Cor de fundo levemente diferente para linhas pares */
}

.report-form-table-body tr:last-child {
    border-bottom: 1px solid #ddd; /* Borda inferior para a última linha */
}

.report-form-table-body td {
    padding: 6px 15px; /* DIMINUÍDO: Espaçamento interno das células do corpo */
    text-align: left; /* Alinhamento do texto à esquerda */
}

/* Estilos para a coluna de ações (botão de remover) (SEM ALTERAÇÕES) */
.report-form-table-body .actions-cell {
    text-align: center; /* Centraliza o conteúdo da célula de ações */
}

.remove-student {
    background-color: #f44336; /* Cor de fundo vermelha para o botão de remover */
    color: white; /* Texto branco */
    border: none; /* Remove a borda padrão do botão */
    padding: 6px 10px; /* DIMINUÍDO: Espaçamento interno do botão */
    text-align: center; /* Centraliza o texto dentro do botão */
    text-decoration: none; /* Remove sublinhado (se houver) */
    display: inline-block; /* Permite definir largura e altura */
    font-size: 0.8em; /* DIMINUÍDO: Tamanho da fonte do botão */
    border-radius: 5px; /* Bordas arredondadas */
    cursor: pointer; /* Muda o cursor ao passar por cima */
    transition: background-color 0.3s ease; /* Transição suave para a cor de fundo */
}

.remove-student:hover {
    background-color: #d32f2f; /* Cor de fundo mais escura ao passar o mouse */
}

/* Oculta a tabela por padrão (como definido no seu style inline) (SEM ALTERAÇÕES) */
.report-form-selected-students {
    display: none;
}

/* Estilos para a tabela de relatórios do dia */
.reports-table-title {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.5em;
    margin: 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    width: 80%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.reports-table-selected {
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: var(--form-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.reports-table-head {
    background-color: #f2f2f2;
}

.reports-table-header {
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
}

.report-table-body tr {
    border-bottom: 1px solid var(--border-color);
}

.report-table-body tr:nth-child(even) {
    background-color: #f9f9f9;
}

.report-table-body tr:last-child {
    border-bottom: none;
}

.report-table-body td {
    padding: 10px 15px;
    color: var(--text-color);
}

/* Botões de ação na tabela */
.view-report-btn,
.delete-report-btn {
    padding: 6px 12px;
    margin: 2px 4px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 80px; /* Define uma largura mínima igual para ambos */
    width: 100px; /* Largura fixa para ambos os botões */
    text-align: center; /* Centraliza o texto */
    display: inline-block; /* Garante que os botões respeitem a largura */
    box-sizing: border-box; /* Inclui padding e borda na largura total */
}

.view-report-btn {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.view-report-btn:hover {
    background-color: white;
    color: var(--primary-color);
}

.delete-report-btn {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.delete-report-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/*INÍCIO DO ESTILO DA PÁGINA SETTINGS*/
.features-body {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-color);
}

.features-header {
    margin-bottom: 30px;
}

.features-header-title {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 8px;
}

.features-header-description {
    color: var(--subtext-color);
    font-size: 16px;
}

.features-main {
    background-color: var(--form-bg);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.features-section {
    margin-bottom: 30px;
}

.features-section-title {
    font-family: var(--heading-font);
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

/* Estilo do campo de busca de usuários */
.features-form-group {
    position: relative;
    margin-bottom: 20px;
}

.features-form-label {
    display: block;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.features-form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-color);
    background-color: var(--form-bg);
    transition: all 0.3s ease;
}

.features-form-input:focus {
    outline: none;
    border-color: var(--focus-color);
    box-shadow: 0 0 0 2px rgba(185, 255, 102, 0.2);
}

/* Lista de resultados da busca */
.features-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--form-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-top: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.features-search-results::-webkit-scrollbar {
    width: 8px;
}

.features-search-results::-webkit-scrollbar-track {
    background: var(--bg-color);
}

.features-search-results::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 4px;
}

.features-search-results li {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.features-search-results li:last-child {
    border-bottom: none;
}

.features-search-results li:hover {
    background-color: var(--bg-color);
}

/* Mostrar resultados quando houver itens */
.features-search-results:not(:empty) {
    display: block;
}

.features-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.features-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
}

.features-table th {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--heading-font);
    font-weight: bold;
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--border-color);
}

.features-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    vertical-align: middle;
}

.features-table tr:hover {
    background-color: rgba(185, 255, 102, 0.1);
}

.feature-status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-active {
    background-color: var(--focus-color);
    color: var(--primary-color);
}

.status-inactive {
    background-color: var(--border-color);
    color: var(--subtext-color);
}

.btn-action {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 8px;
}

.btn-edit {
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-edit:hover {
    background-color: var(--border-color);
}

.btn-toggle {
    background-color: var(--primary-color);
    color: white;
}

.btn-toggle:hover {
    background-color: var(--primary-hover);
}

/* Feature Modal Form Styles */
#featureForm textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--text-color);
    background-color: var(--form-bg);
    resize: vertical;
    min-height: 100px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#featureForm textarea:focus {
    outline: none;
    border-color: var(--focus-color);
    box-shadow: 0 0 0 2px rgba(185, 255, 102, 0.2);
}

#featureForm textarea::placeholder {
    color: var(--subtext-color);
}

/* Estilo da tabela de features */
.feature-form-selected-users {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 15px;
    background-color: var(--form-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Cabeçalho da tabela */
.feature-form-table-head {
    background-color: var(--primary-color);
}

.feature-form-table-header {
    padding: 15px 20px;
    text-align: left;
    color: var(--form-bg);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
}

/* Corpo da tabela */
.feature-form-table-body tr {
    transition: all 0.2s ease;
}

.feature-form-table-body tr:nth-child(even) {
    background-color: var(--bg-color);
}

.feature-form-table-body tr:hover {
    background-color: rgba(185, 255, 102, 0.1);
}

.feature-form-table-body td {
    padding: 8px 12px; /* Padding reduzido */
    vertical-align: middle;
}

/* Coluna de ferramentas */
.feature-tag {
    padding: 2px 6px;
    margin: 2px;
    font-size: 12px;
    background-color: var(--focus-color);
    border-radius: 3px;
}

.remove-feature {
    background: none;
    border: none;
    color: var(--primary-color);
    margin-left: 5px;
    cursor: pointer;
    padding: 0 3px;
    font-size: 12px;
}

/* Botão de remover usuário */
.remove-user {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.remove-user:hover {
    background-color: var(--primary-color);
    color: var(--form-bg);
}

/* Último td sem borda inferior */
.feature-form-table-body tr:last-child td {
    border-bottom: none;
}

/* Status da feature */
.feature-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-active {
    background-color: var(--focus-color);
    color: var(--primary-color);
}

.status-inactive {
    background-color: var(--border-color);
    color: var(--subtext-color);
}

/* Estilo do dropdown de features e botão adicionar */
.feature-select {
    width: 170px;
    padding: 4px 8px;
    margin-right: 4px;
    height: 30px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--form-bg);
}

.feature-select:focus {
    outline: none;
    border-color: var(--focus-color);
    box-shadow: 0 0 0 2px rgba(185, 255, 102, 0.2);
}

.btn-add-feature {
    width: 30px; /* Largura fixa */
    height: 30px; /* Altura igual ao select */
    padding: 0;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.btn-add-feature:hover {
    background-color: var(--primary-hover);
    color: var(--primary-color);
}

/* Container para o select e botão */
.feature-controls {
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

/* Container das features */
.user-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    max-width: 300px; /* Limita largura do container de features */
}

/* Inactive feature styles */
.feature-inactive {
    background-color: #f8f9fa;
    color: var(--subtext-color);
}

.feature-inactive td {
    opacity: 0.7;
}

.feature-inactive .status-badge.inactive {
    background-color: #e9ecef;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.feature-inactive .btn {
    opacity: 0.8;
}

/* New hover style for inactive features */
.feature-inactive:hover {
    background-color: #ffe6e6 !important; /* Light red on hover */
    transition: background-color 0.3s ease;
}

.feature-inactive:hover td {
    opacity: 1; /* Full opacity on hover */
}

/* INÍCIO DO ESTILO DO DASHBOARD DAS FEATURES */

.features-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .features-dashboard-header {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .features-category {
    margin-bottom: 2rem;
  }
  
  .category-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .feature-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .feature-card-content {
    padding: 1.5rem;
    flex-grow: 1;
  }
  
  .feature-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .feature-description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .feature-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
  }
  
  .feature-access {
    color: var(--primary-color);
    font-weight: 500;
  }


/* INÍCIO DO ESTILO DO CENTER DOS RELATÓRIOS */

.reports-center-container {
    padding: 2rem;
    background-color: var(--bg-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--form-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.filters-container {
    background: var(--form-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group input,
.filter-group select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-width: 200px;
}

.reports-grid {
    display: grid;
    gap: 1rem;
}

.report-card {
    background: var(--form-bg);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.report-card.pending { border-left: 4px solid #ffc107; }
.report-card.delivered { border-left: 4px solid #28a745; }
.report-card.archived { border-left: 4px solid #6c757d; }

.report-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.report-date {
    color: var(--subtext-color);
    font-size: 0.9rem;
}

.report-body {
    padding: 1rem;
}

.report-body p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.report-actions {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.btn-view,
.btn-print,
.btn-delivery {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-view {
    background-color: var(--primary-color);
    color: white;
}

.btn-print {
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-delivery {
    background-color: #28a745;
    color: white;
}

.btn-view:hover,
.btn-print:hover,
.btn-delivery:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--form-bg);
    color: var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-btn:hover:not(.active) {
    background: var(--bg-color);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: var(--form-bg);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.modal-body {
    padding: 20px 0;
}

.report-info h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.report-info p {
    margin: 8px 0;
    line-height: 1.4;
}
/* FIM DO ESTILO DO CENTER DOS RELATÓRIOS */

/*INÍCIO DO ESTILO DO REPORT ADMIN */

.header-config-container {
padding: 2rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-upload-container {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}

.logo-upload-container img {
width: 100px;
height: 100px;
object-fit: contain;
border: 1px solid #ddd;
border-radius: 4px;
}

.logo-input {
display: none;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-actions {
display: flex;
gap: 1rem;
margin-top: 2rem;
}
/* FIM DO ESTILO DO REPORT ADMIN */
/* INÍCIO DO ESTILO DO SIDEBAR PARA DISPOSITIVOS MÓVEIS */

/* Container do dropdown */
.mobile-nav-dropdown {
    display: none;
    width: 100%;
    margin: 15px 0;
    font-family: var(--font-family);
    position: relative;
}

/* Botão de toggle */
.dropdown-toggle {
    background-color: var(--form-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    padding: 12px 18px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Efeito hover no botão */
.dropdown-toggle:hover {
    background-color: var(--bg-color);
    border-color: var(--focus-color);
}

/* Ícone do dropdown */
.dropdown-toggle i.dropdown-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 14px;
}

/* Ícone de navegação */
.dropdown-toggle i.nav-icon {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

/* Rotação do ícone quando ativo */
.dropdown-toggle.active {
    border-color: var(--primary-color);
    border-radius: 6px 6px 0 0;
}

.dropdown-toggle.active i.dropdown-icon {
    transform: rotate(180deg);
}

/* Conteúdo do dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--form-bg);
    width: 100%;
    max-height: 350px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0 0 6px 6px;
    border: 1px solid var(--border-color);
    border-top: none;
    z-index: 998;
}

/* Estilização da barra de rolagem */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: var(--bg-color);
}

.dropdown-content::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 6px;
}

/* Quando o dropdown está mostrando */
.dropdown-content.show {
    display: block;
    animation: fadeInDown 0.3s ease forwards;
}

/* Links dentro do dropdown */
.dropdown-content a {
    color: var(--text-color);
    padding: 14px 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--bg-color);
    transition: all 0.2s ease;
}

/* Ícones dentro dos links */
.dropdown-content a i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Efeito hover nos links */
.dropdown-content a:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
    padding-left: 22px; /* Move ligeiramente para a direita ao passar o mouse */
}

/* Último link sem borda */
.dropdown-content a:last-child {
    border-bottom: none;
}

/* Animação para o dropdown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mostrar dropdown apenas em dispositivos móveis */
@media (max-width: 768px) {
    .mobile-nav-dropdown {
        display: block;
    }
    
    /* Ocultar a sidebar normal em mobile */
    .admin-master-sidebar {
        display: none;
    }
    
    /* Adicionar padding ao conteúdo principal em mobile */
    .admin-master-content {
        padding: 15px;
        max-width: 100%;
    }

    .header-container {
        flex-direction: column;
        justify-content: center;
    }

    .site-name {
        text-align: center;
        margin: 15px 0;
        width: 100%;
    }

    header img {
        margin-left: 0; 
        margin: 0 auto; 
    }
}

/* Ajuste adicional para telas muito pequenas */
@media (max-width: 480px) {
    .site-name h1 {
        font-size: 20px; /* Reduz o tamanho da fonte para melhor ajuste */
    }
    
    header img {
        width: 160px; /* Reduz ligeiramente o tamanho da imagem em telas muito pequenas */
    }
}

/* Adicionar grupo de navegação para organizar melhor */
.nav-group {
    border-top: 1px solid var(--bg-color);
    margin-top: 5px;
    padding-top: 5px;
}

.nav-group-title {
    padding: 8px 18px;
    font-size: 12px;
    color: var(--subtext-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--bg-color);
    font-weight: 600;
}

/* FIM DO ESTILO DO SIDEBAR PARA DISPOSITIVOS MÓVEIS */

/* INÍCIO DO ESTILO RESPONSIVO */
/* 1. RESPONSIVIDADE - FORMULÁRIOS */
@media (min-width: 768px) {
    .form-container {
        flex-direction: row;
        gap: 40px;
    }

    .form-illustration {
        display: block;
        flex-shrink: 0;
    }
}

/* 2. RESPONSIVIDADE - HEADER E NAVEGAÇÃO */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 10px;
        margin: 0;
        list-style: none;
        z-index: 9999;
    }

    .menu.active {
        display: flex;
    }
}

/* 3. RESPONSIVIDADE - CONTEÚDO PRINCIPAL */
@media (max-width: 768px) {
    .presentation {
        flex-direction: column;
        padding: 20px;
    }
    
    .presentation-text, 
    .presentation-image {
        width: 100%;
    }
    
    .tools-container, 
    .reviews-container, 
    .plans-container {
        flex-direction: column;
    }
    
    .tool-card {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .tools-panel {
        padding: 10px;
    }
}

/* 4. RESPONSIVIDADE - DASHBOARD */
@media (max-width: 768px) {
    .admin-master-cards {
        flex-direction: column;
    }

    .topPageElements {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .user-filter {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
}

/* 5. RESPONSIVIDADE - RELATÓRIOS */
@media (max-width: 768px) {
    main.report-form-main {
        width: 95%;
        margin: 15px;
        padding: 20px;
    }

    .report-form-section-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .reports-table-title,
    .reports-table-selected {
        width: 95%;
    }
}

/* 6. RESPONSIVIDADE - DISPOSITIVOS PEQUENOS (480px) */
@media (max-width: 480px) {
    .admin-master-container {
        padding: 5px;
    }

    .admin-master-sidebar {
        display: none;
    }

    .report-form-main {
        width: 100%;
        margin: 5px;
        border-radius: 0;
    }
}

/* 7. RESPONSIVIDADE - RODAPÉ */
@media (max-width: 768px) {
    .footer-container {
        padding: 20px;
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 15px;
    }

    .footer-section h3 {
        font-size: 18px;
    }
}

/* 8. RESPONSIVIDADE - PÁGINA DE CONFIGURAÇÕES */
@media (max-width: 768px) {
    .feature-body {
        padding: 10px;
    }

    .feature-header-title {
        font-size: 20px;
    }

    .feature-header-description {
        font-size: 12px;
    }

    .feature-table-container {
        padding: 10px;
        overflow-x: auto; /* Permite rolagem horizontal em telas pequenas */
    }

    .feature-table {
        min-width: 600px; /* Garante largura mínima para visualização */
    }

    .feature-table th,
    .feature-table td {
        padding: 8px;
        font-size: 14px;
    }

    .feature-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .feature-body {
        padding: 5px;
    }

    .feature-header-title {
        font-size: 18px;
    }

    .feature-btn-new {
        width: 100%; /* Botão ocupa largura total em telas muito pequenas */
        margin-bottom: 10px;
    }

    .feature-table td .feature-btn {
        display: block;
        width: 100%;
        margin: 2px 0;
    }
}

/* 9. RESPONSIVIDADE - DASHBOARD DE FEATURES */

@media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .features-dashboard-container {
      padding: 1rem;
    }
}

/* Media queries para responsividade */
@media (min-width: 768px) {
    .form-container {
        padding: 40px;
    }
    
    .form-section {
        padding: 30px;
    }
    
    .form-section h2 {
        font-size: 28px;
    }
    
    /* Mostrar ilustração em telas maiores */
    .form-illustration {
        display: block;
    }
    
    /* Layout de duas colunas em telas maiores */
    .form-container {
        flex-direction: row;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 10px;
        min-height: auto; /* Remove a altura mínima fixa */
        height: auto; /* Deixa a altura se ajustar ao conteúdo */
        margin: 20px 0; /* Adiciona apenas uma margem vertical moderada */
    }
    
    .form-section {
        padding: 15px; /* Reduz o padding interno */
        margin: 0; /* Remove margens extras */
        border-radius: 8px;
    }
    
    .form-section h2 {
        font-size: 22px;
        margin-top: 5px; /* Reduz o espaço acima do título */
    }
    
    .form-section p {
        font-size: 14px;
        margin-bottom: 15px; /* Reduz o espaço abaixo do subtítulo */
    }
    
    .form-group {
        margin-bottom: 12px; /* Reduz o espaço entre os grupos de formulários */
    }
    
    .form-footer {
        margin-top: 15px; /* Reduz o espaço acima do rodapé do formulário */
    }
    
    .btn, 
    #addSchoolButton,
    .btn-prev, 
    .btn-next, 
    .btn-submit {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-prev, 
    .btn-next, 
    .btn-submit {
        width: 100%;
    }
    
    .password-group input {
        padding-right: 60px;
    }
}

/* Adicionar um breakpoint específico para telas muito pequenas */
@media (max-width: 360px) {
    .form-container {
        padding: 5px;
        margin: 10px 0;
    }
    
    .form-section {
        padding: 12px;
    }
    
    .form-section h2 {
        font-size: 20px;
    }
    
    .form-section p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* FIM DO ESTILO RESPONSIVO */
