* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Container principal - APENAS para conteúdo e rodapé */
.container {
    display: grid;
    grid-template-areas: 
        "content"
        "endpag";
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    min-height: 100vh;
    
    padding: 5px;
    padding-top: 80px; /* Espaço para o cabeçalho fixo */
}

/* Cabeçalho fixo - FORA do container */
.head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

/* Logotipo */
.logotipo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logotipo img {
    height: auto;
    width: 60px;
    transition: width 0.3s ease;
}

.logotipo a div p {
    margin: 0;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #009f43;
    transition: font-size 0.3s ease;
}

/* Menu Desktop */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.menu li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    color: #009f43;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.menu li a:hover {
    text-decoration: underline;
    background-color: rgba(0, 159, 67, 0.1);
    border-radius: 4px;
}

/* Menu Mobile - Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003; /* Mais alto que tudo */
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #009f43;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Menu Mobile - Ativo */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay para mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001; /* Abaixo do menu mas acima do conteúdo */
}

.menu-overlay.active {
    display: block;
}

/* RESPONSIVIDADE DO HEADER */
@media (max-width: 1024px) {
    .menu {
        gap: 15px;
    }
    
    .menu li a {
        font-size: 14px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .head {
        padding: 10px 15px;
        flex-wrap: wrap;
    }
    
    .logotipo img {
        width: 45px;
    }
    
    .logotipo a div p {
        font-size: 14px;
    }
    
    /* Esconde menu desktop, mostra hamburger */
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        z-index: 1002; /* Maior que o overlay */
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .menu li:last-child {
        border-bottom: none;
    }
    
    .menu li a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
        border-radius: 0;
        color: #009f43 !important; /* Força a cor */
        font-weight: 500;
        position: relative;
        z-index: 1003; /* Garante que fique acima de tudo */
    }
    
    .menu li a:hover {
        background-color: #f8f9fa;
        color: #007b35 !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Ajusta o container para o header mobile */
    .container {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .head {
        padding: 8px 12px;
    }
    
    .logotipo img {
        width: 40px;
    }
    
    .logotipo a div p {
        font-size: 13px;
    }
    
    .menu {
        width: 100%;
        right: -100%;
    }
    
    .menu.active {
        right: 0;
    }
    
    .container {
        padding-top: 65px;
    }
}

/* Conteúdo principal */
.content {
    grid-area: content;
    text-align: center;
    padding: 30px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    overflow-y: auto;
}

.content h1 {
    color: #009f43;
    font-size: 28px;
    margin-bottom: 15px;
}

.content h2 {
    color: #007b35;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content h3 {
    color: #007b35;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.content ul, .content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
    list-style: none;
}

.content a {
    color: #009f43;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.content .galeria {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.galeria figure {
    display: inline-block;
    text-align: center;
    margin: 10px;
}

.content .galeria img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.galeria figcaption {
    font-size: 12px;
    color: #555;
    margin-top: 4px;
    text-align: center;
}

/* Participantes */
.participantes {
    text-align: center;
    margin-top: 40px;
}

/* Container principal para cada membro */
.membro-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #009f43;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membro-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Foto dos membros */
.membro-info .foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #009f43;
    flex-shrink: 0;
}

/* Detalhes dos membros */
.detalhes-membro {
    flex: 1;
}

.detalhes-membro h3 {
    color: #007b35;
    margin-bottom: 5px;
    font-size: 20px;
}

.funcao {
    color: #009f43;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.descricao {
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* Estilos específicos para professora */
.professora .membro-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border-left-color: #007b35;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.professora .foto {
    border-color: #007b35;
    width: 120px;
    height: 120px;
}

/* Estilos para alunos */
.alunos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.aluno .membro-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f8f0 100%);
    height: 100%;
    margin-bottom: 0;
}

/* JOGO - CSS RESPONSIVO */
.jogo-container {
    background: linear-gradient(135deg, #228B22, #32CD32);
    padding: 15px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

#game-container {
    border: 3px solid #006400;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin: 0 auto;
    background-color: #228B22;
    position: relative;
    
    /* Tamanho padrão para desktop */
    width: 800px;
    height: 600px;
}

#game-container canvas {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carregando-jogo {
    text-align: center;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 18px;
}

.instrucoes-jogo {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.instrucoes-jogo h3 {
    color: #006400;
    margin-bottom: 15px;
    text-align: center;
}

.instrucoes-jogo ul {
    list-style-type: none;
    padding: 0;
}

.instrucoes-jogo li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.instrucoes-jogo li:last-child {
    border-bottom: none;
}

.controles-jogo {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.controle-item {
    text-align: center;
    padding: 12px 15px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    font-size: 14px;
    min-width: 140px;
}

/* RESPONSIVIDADE PARA TABLET */
@media (max-width: 1024px) {
    .jogo-container {
        padding: 15px;
    }
    
    #game-container {
        width: 90%;
        max-width: 700px;
        height: 500px;
    }
    
    .carregando-jogo {
        font-size: 16px;
        padding: 15px;
    }
}

/* RESPONSIVIDADE PARA CELULAR */
@media (max-width: 768px) {
    .jogo-container {
        padding: 10px;
        margin: 15px 0;
        border-radius: 10px;
    }
    
    #game-container {
        width: 95%;
        max-width: 100%;
        height: 400px;
        border-width: 2px;
    }
    
    .instrucoes-jogo {
        padding: 15px;
        margin-top: 15px;
    }
    
    .controles-jogo {
        gap: 10px;
        margin-top: 12px;
    }
    
    .controle-item {
        padding: 10px 12px;
        min-width: 120px;
        font-size: 13px;
    }
    
    .carregando-jogo {
        font-size: 16px;
        padding: 15px;
    }
}

/* RESPONSIVIDADE PARA CELULAR PEQUENO */
@media (max-width: 480px) {
    .jogo-container {
        padding: 8px;
        margin: 10px 0;
    }
    
    #game-container {
        width: 100%;
        height: 350px;
        border-radius: 8px;
    }
    
    .instrucoes-jogo {
        padding: 12px;
    }
    
    .instrucoes-jogo h3 {
        font-size: 18px;
    }
    
    .instrucoes-jogo li {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .controles-jogo {
        flex-direction: column;
        align-items: center;
    }
    
    .controle-item {
        width: 90%;
        max-width: 200px;
        padding: 8px 10px;
    }
    
    .carregando-jogo {
        font-size: 14px;
        padding: 10px;
    }
}

/* RESPONSIVIDADE EXTREMA PARA CELULAR MUITO PEQUENO */
@media (max-width: 360px) {
    #game-container {
        height: 300px;
    }
    
    .instrucoes-jogo {
        padding: 10px;
    }
    
    .instrucoes-jogo h3 {
        font-size: 16px;
    }
    
    .instrucoes-jogo li {
        font-size: 13px;
    }
    
    .controle-item {
        font-size: 12px;
        padding: 6px 8px;
    }
}

/* SEÇÃO PODCAST */
.podcast {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 15px;
}

.podcast h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.podcast > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2em;
    opacity: 0.9;
}

/* Grid de Episódios */
.episodios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.episodio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episodio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.episodio-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.episodio-numero {
    background: #009f43;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.episodio-data {
    opacity: 0.8;
    font-size: 0.9em;
}

.episodio-card h3 {
    margin-bottom: 10px;
    color: white;
    font-size: 1.3em;
}

.episodio-card p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* PLAYER DO SPOTIFY */
.spotify-player {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.spotify-player iframe {
    border-radius: 12px;
}

/* Botão do Spotify */
.btn-spotify {
    display: inline-block;
    background: #1DB954;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-spotify:hover {
    background: white;
    color: #1DB954;
    border-color: #1DB954;
    transform: translateY(-2px);
}

.episodio-links {
    text-align: center;
    margin-top: 15px;
}

/* Episódio em breve */
.coming-soon {
    opacity: 0.7;
}

.coming-soon-placeholder {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 20px 0;
}

.coming-soon-placeholder span {
    font-size: 1.2em;
    opacity: 0.8;
}

/* Plataformas */
.plataformas-podcast {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.plataformas-podcast h3 {
    margin-bottom: 20px;
    color: #1DB954;
}

.plataformas-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.plataformas-links a {
    color: #1DB954;
}

.plataforma-link {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.plataforma-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ESTILOS DO FORMULÁRIO */
.sugestoes {
    background: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
    border-radius: 15px;
    border-left: 5px solid #009f43;
}

.form-sugestoes {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #007b35;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #009f43;
}

.btn-enviar {
    background: linear-gradient(135deg, #009f43, #007b35);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 159, 67, 0.3);
}

.obs-form {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.mensagem-sucesso {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

/* Melhorar a experiência do formulário */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #009f43;
    box-shadow: 0 0 0 3px rgba(0, 159, 67, 0.1);
}

/* Estilo para campos válidos/inválidos */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
}

/* Loading state para o botão */
.btn-enviar.carregando {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-enviar.carregando::after {
    content: " ⏳";
}

/* ESTILOS DO QUIZ */
.quiz {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    margin: 40px 0;
    border-radius: 15px;
}

.quiz h2{
    color: #fff;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.quiz-pergunta {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.quiz-opcoes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.quiz-opcao {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 2px solid transparent;
}

.quiz-opcao:hover {
    background: rgba(255, 255, 255, 0.3);
}

.quiz-opcao.selecionada {
    background: rgba(255, 255, 255, 0.4);
    border-color: #009f43;
}

.quiz-controles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn-quiz {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quiz:hover:not(:disabled) {
    background: white;
    color: #667eea;
}

.btn-quiz:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quiz-progresso {
    font-weight: 600;
}

.quiz-resultado {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-top: 20px;
}

/* ESTILOS ADICIONAIS PARA O QUIZ CORRIGIDO */
.btn-reiniciar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.btn-reiniciar:hover {
    transform: scale(1.05);
}

.resultado-content {
    text-align: center;
}

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

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

/* Melhorar visibilidade das opções selecionadas */
.quiz-opcao.selecionada {
    background: rgba(0, 159, 67, 0.3) !important;
    border-color: #009f43 !important;
    color: white;
    font-weight: 600;
}

/* ESTILOS DOS MATERIAIS */
.materiais {
    padding: 40px 20px;
    background: #f0f8f0;
    margin: 40px 0;
    border-radius: 15px;
}

.cartilhas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cartilha-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.cartilha-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #009f43;
}

.cartilha-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.cartilha-item h3 {
    color: #007b35;
    margin-bottom: 10px;
    font-size: 18px;
}

.cartilha-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-download {
    display: inline-block;
    background: #009f43;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-download:hover {
    background: #007b35;
}

.aviso-download {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #e8f5e8;
    border-radius: 8px;
    border-left: 4px solid #009f43;
}

/* Rodapé */
.endpag {
    grid-area: endpag;
    background-color: #007b35;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.endpag a {
    color: #fff;
    text-decoration: underline;
}

.endpag a:hover {
    color: #c5e1a5;
}

.endpag .links-rodape {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.endpag .links-rodape li {
    display: inline;
}

/* ESTILOS PARA GRÁFICOS */
.graficos {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #009f43;
}

.grafico-container {
    margin: 30px 0;
    text-align: center;
}

.grafico-container h3 {
    color: #007b35;
    margin-bottom: 15px;
    font-size: 18px;
}

.grafico-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.grafico-img:hover {
    transform: scale(1.02);
}

.grafico-duplo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.legenda-grafico {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

/* Ajuste para âncoras com cabeçalho fixo */
section[id] {
    scroll-margin-top: 80px;
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 768px) {
    .sugestoes, .quiz, .materiais {
        padding: 25px 15px;
        margin: 25px 0;
    }
    
    .cartilhas-grid {
        grid-template-columns: 1fr;
    }
    
    .quiz-controles {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }
    
    .grafico-duplo {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .graficos {
        padding: 20px;
        margin: 20px 0;
    }
    
    .participantes .membro-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .alunos {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .professora .membro-info {
        max-width: 100%;
    }
    
    .membro-info .foto {
        width: 80px;
        height: 80px;
    }
    
    .professora .foto {
        width: 100px;
        height: 100px;
    }
    
    .episodios-grid {
        grid-template-columns: 1fr;
    }
    
    .plataformas-links {
        flex-direction: column;
        align-items: center;
    }
    
    .plataforma-link {
        width: 200px;
        text-align: center;
    }
    
    .podcast {
        padding: 30px 15px;
    }
    
    /* Ajuste para âncoras em mobile */
    section[id] {
        scroll-margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .alunos {
        grid-template-columns: 1fr;
    }
    
    .membro-info {
        padding: 15px;
    }
    
    .detalhes-membro h3 {
        font-size: 18px;
    }
    
    .funcao {
        font-size: 14px;
    }
    
    .descricao {
        font-size: 13px;
    }
}

