/* === CONFIGURAÇÕES GERAIS === */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --focus-outline: #ffcc00;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px; 
    line-height: 1.6; 
}

/* Destaque visual forte para navegação por teclado (Acessibilidade) */
a:focus, button:focus, input:focus, textarea:focus, .share-icon:focus, .settings-icon:focus, .menu-icon:focus {
    outline: 3px solid #ffcc00 !important;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Efeito tátil: faz os botões "afundarem" ao serem clicados */
.btn:active, .btn-submit:active, .pag-btn:active {
    transform: translateY(4px) !important;
    box-shadow: none !important;
}

h1, h2, h3, .menu, .time-title, .diretrizes-title, .about-title, #social-media-title, .doacoes-title, .contato-title {
    font-family: 'Bank Gothic', Arial, sans-serif;
}

/* === ALTO CONTRASTE GERAL === */
body.high-contrast {
    background-color: #000000 !important;
    color: #ffffff !important;
}

body.high-contrast .menu {
    background-color: #000000 !important;
    border-bottom: 2px solid #ffff00;
}

body.high-contrast section, 
body.high-contrast .footer,
body.high-contrast .social-media,
body.high-contrast .about-item,
body.high-contrast .projeto-card,
body.high-contrast #contato,
body.high-contrast .contato-container,
body.high-contrast .doacao-card,
body.high-contrast .pix-info,
body.high-contrast .team-card {
    background-color: #000000 !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
    box-shadow: none !important;
}

body.high-contrast .contato-container::before {
    color: #ffff00 !important;
    text-shadow: none !important;
}

/* Deixa os novos textos em Braille visíveis no modo de Alto Contraste */
body.high-contrast .logo-braille,
body.high-contrast .home-braille,
body.high-contrast .about-braille {
    color: #ffff00 !important;
    text-shadow: none !important;
}

body.high-contrast .contato-container::after {
    display: none !important; 
}

body.high-contrast .puncao {
    display: none !important; 
}

body.high-contrast a, 
body.high-contrast h1, 
body.high-contrast h2, 
body.high-contrast h3, 
body.high-contrast h4, 
body.high-contrast p, 
body.high-contrast li {
    color: #ffff00 !important;
}

body.high-contrast .contato-form input,
body.high-contrast .contato-form textarea {
    background-color: #000;
    color: #ffff00;
    border: 2px solid #ffff00;
}

/* === ACESSIBILIDADE === */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: #000;
    color: white;
    padding: 10px;
    z-index: 9999;
    transition: top 0.2s;
    font-weight: bold;
}
.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 3px solid var(--focus-outline);
    outline-offset: 2px;
}

.content {
    margin-top: 100px;
}

/* === MENU DE NAVEGAÇÃO === */
.menu {
    z-index: 1000;
    top: 0;
    position: fixed;
    font-stretch: condensed;
    font-size: 24px;
    color: #fcf7d6da;
    background-color: #071531;
    display: flex;
    align-items: center;
    height: 100px;
    width: 100%;
}

.logo {
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    position: relative; 
    left: auto;
    transform: none;
}

.logo-link {
    display: flex; 
    align-items: center; 
    gap: 15px; 
    text-decoration: none;
}

.logo img {
    height: 80px;
}

.logo-fallback {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fcf7d6da;
}

/* Formatação do Logo em Braille */
.logo-braille {
    font-size: 26px;
    color: #fcf7d6da;
    letter-spacing: 3px;
    opacity: 0.9;
    text-shadow: none; /* Relevo removido para o fundo escuro */
}

.menu-icon, .share-icon {
    display: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon { margin-left: auto; }
.share-icon { margin-right: auto; }

.menu-icon span {
    display: block;
    height: 4px;
    background-color: white;
    width: 30px;
}

.mobile-right-icons {
    display: none; 
}

.settings-icon {
    display: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    display: flex;
    margin-left: auto;
}

.menu-list > li {
    display: inline-block;
    position: relative;
    border-right: 1px solid #252424;
    border-left: 1px solid #464343;
}

.menu-list a {
    box-sizing: border-box;
    display: block;
    padding: 38px 20px;
    color: white;
    text-decoration: none;
    height: 100px;
    font-size: 18px;
}

.menu-list a:hover {
    background-color: #10244d;
}

.a11y-controls {
    display: flex;
    gap: 8px;
    margin-right: 20px;
    margin-left: 15px;
}

.a11y-controls button {
    background: transparent;
    color: #fcf7d6da;
    border: 2px solid #fcf7d6da;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    font-family: inherit;
}

.a11y-controls button:hover, .a11y-controls button:focus {
    background: #fcf7d6da;
    color: #071531;
}

/* === ESTRUTURA GERAL DAS SEÇÕES === */
section {
    min-height: calc(100vh - 100px);
    scroll-margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    padding: 60px 20px; 
}

.section-inner-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* === COMPARTILHAMENTO === */
.social-media {
    padding: 12px 0px; /* Bem mais fina e elegante */
    top: 100px;
    position: absolute;
    background-color: #1E1E1E;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px; /* Aumentei um tiquinho o gap para eles respirarem melhor */
    z-index: 900;
}

#social-media-title {
    display: none; /* Caso você decida manter o HTML, isso esconde o texto */
}

.social-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.social-icon svg {
    width: 30px; /* Ícones mais delicados */
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icon svg:hover {
    transform: scale(1.15); /* Efeito de zoom no hover */
}

/* === 1. INÍCIO (HOME) - PADRÃO ESCURO === */
#home {
    background-color: #252424;
    background-image: radial-gradient(circle, #333333 2px, transparent 3px);
    background-size: 24px 24px;
    color: rgba(252, 247, 214, 0.855);
    justify-content: center;
}

.home-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.home-text {
    margin: 40px;
    width: 65%;
    font-size: 1.25em;
    line-height: 1.6;
}

.home-text h1 {
    font-size: 3em;
    margin-bottom: 0.1em; 
}

.home-braille {
    font-size: 32px;
    color: rgba(252, 247, 214, 0.4); /* Voltamos para a transparência suave original */
    letter-spacing: 5px;
    margin-bottom: 25px;
    display: inline-block; 
    background-color: #252424; /* Fundo protetor */
    padding: 5px 15px; 
    border-radius: 8px;
    box-shadow: 0 0 15px 10px #252424; /* Sombra mágica para esfumaçar com o fundo */
    text-shadow: none; /* Relevo removido para o fundo escuro */
}

.home-text p {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.home-image {
    display: flex;
    justify-content: center;
    width: 35%;
    margin: 40px;
}

.home-hero-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3));
    stroke: rgba(252, 247, 214, 0.855) !important;
}

.home-hero-svg circle {
    fill: rgba(252, 247, 214, 0.855) !important;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    background-color: #0c2352;
    color: rgba(252, 247, 214, 0.855);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #294886;
}

/* === 2. DIRETRIZES - PADRÃO ESCURO === */
#diretrizes {
    background-color: #252424;
    color: #fcf7d6da;
}

.diretrizes-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1.5em;
}

.diretrizes-container {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 30px;
}

.diretrizes-text {
    width: 65%;
    font-size: 1.25em;
    line-height: 1.6;
}

.diretrizes-image {
    width: 35%;
}

.diretrizes-image svg {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 0 auto;
}

/* === 3. SOBRE NÓS - PADRÃO CLARO === */
#about {
    background-color: #b8b8b8;
    gap: 40px;
    color: #222;
}

.about-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 0.2em; 
}

.about-braille {
    text-align: center;
    font-size: 30px;
    
    /* 👇 Cor quase idêntica ao papel para simular apenas a fibra esticada 👇 */
    color: #b0b0b0; 
    
    letter-spacing: 4px;
    margin-top: -30px;
    margin-bottom: 40px;
    
    /* 👇 EFEITO PUNÇÃO: Bordas duras (0px) para simular o papel perfurado 👇 */
    text-shadow: 
        -1px -1px 0px rgba(255, 255, 255, 0.7), /* LUZ DURA: O vinco brilhante e afiado onde o papel esticou */
         1px  1px 0px rgba(0, 0, 0, 0.4),       /* SOMBRA DURA: A base afiada do ponto cortando a luz */
         2px  2px 3px rgba(0, 0, 0, 0.15);      /* FUMAÇA: Apenas para simular a curvatura do papel ao redor */
}

.about-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-content-1, .about-content-2, .about-content-3 {
    flex: 2;
    max-width: 900px;
    line-height: 1.5;
}

.about-content-1 { order: 2; }
.about-content-2 { order: 1; }
.about-content-3 { order: 2; }

.about-image-1, .about-image-2, .about-image-3 {
    order: 1;
    flex: 1;
    text-align: center;
}
.about-image-2 { order: 2; }

.about-image svg {
    max-width: 100px;
    height: auto;
    border-radius: 10px;
}

.about-content-1 h2, .about-content-2 h2, .about-content-3 h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.about-content-1 p, .about-content-2 p, .about-content-3 p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* === 4. PROJETOS - PADRÃO ESCURO === */
#projetos {
    background-color: #252424;
    color: #fcf7d6da;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.projeto-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projeto-icon {
    text-align: center;
    color: #fcf7d6da;
}

.projeto-card h3 {
    font-size: 1.4em;
    color: #fcf7d6da;
    border-bottom: 2px solid #0c2352;
    padding-bottom: 10px;
}

.projeto-card ul {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 1.6;
    font-size: 1.05em;
}

/* === 5. GALERIA - PADRÃO CLARO === */
#galeria {
    background-color: #b8b8b8;
    color: #222;
}

body.high-contrast #galeria {
    background-color: #000000 !important;
}

.galeria-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 0.2em;
    font-family: 'Bank Gothic', Arial, sans-serif;
}

.galeria-subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #eaeaea;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item img:hover {
    transform: scale(1.08);
}

.galeria-paginacao {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pag-btn {
    background-color: #ffffff;
    color: #333;
    border: 2px solid #ccc;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pag-btn.active, .pag-btn:hover {
    background-color: #0c2352;
    color: #fcf7d6da;
    border-color: #0c2352;
}

/* === LIGHTBOX DA GALERIA === */
.lightbox-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-prev:focus,
.lightbox-next:focus {
    background-color: rgba(0, 0, 0, 0.8);
    color: #f7da72;
    outline: none;
}

/* === 6. COMO AJUDAR / DOAÇÕES - PADRÃO ESCURO === */
#doacoes {
    background-color: #252424;
    color: #fcf7d6da;
}

.doacoes-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 0.2em;
    font-family: 'Bank Gothic', Arial, sans-serif;
}

.doacoes-subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.doacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.doacao-card {
    background-color: #1e1e1e; 
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.doacao-card h3 {
    font-size: 1.5em;
    color: #fcf7d6da;
    border-bottom: 2px solid #0c2352;
    padding-bottom: 10px;
    width: 100%;
}

.doacao-card p {
    font-size: 1.1em;
    line-height: 1.5;
}

.pix-info {
    background-color: #111;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
}

.pix-key {
    font-size: 1.2em;
    letter-spacing: 1px;
    color: #fff;
}

.btn-copiar {
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* === 7. FALE CONOSCO / CONTATO - PADRÃO CLARO === */
#contato {
    background-color: #b8b8b8;
    color: #222;
}

.contato-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1.2em;
    font-family: 'Bank Gothic', Arial, sans-serif;
    color: #222;
}

.contato-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    
    background-color: #f2f2f2; /* Mudamos de branco puro para um tom de papel real */
    border: 18px solid #8b5a2b;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
    padding: 100px 40px 40px; 
    position: relative; 
}

.contato-container::after {
    content: "";
    position: absolute;
    top: -18px; 
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 38px;
    
    background: linear-gradient(to bottom, #f5f5f5 0%, #a0a0a0 100%);
    border: 1px solid #555;
    border-radius: 4px 4px 8px 8px; 
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.4), 
        inset 0 2px 2px rgba(255,255,255,0.8);
    
    z-index: 10;
}

.contato-container::before {
    content: "⠋⠁⠇⠑ \00A0 ⠉⠕⠝⠕⠎⠉⠕"; 
    position: absolute;
    top: 40px; 
    left: 50%;
    transform: translateX(-50%); 
    font-size: 32px;
    
    /* 👇 1. A COR: Mais clara que silver, mas um tiquinho mais escura que o fundo (#f2f2f2) 
       Isso dá "massa" à bolinha sem parecer que foi impressa com tinta cinza. */
    color: #ebebeb; /* Cor da fibra do papel branco */
    
    /* EFEITO PUNÇÃO NO PAPEL CLARO */
    text-shadow: 
        -1px -1px 0px rgba(255, 255, 255, 1), 
         1px  1px 0px rgba(0, 0, 0, 0.25),     
         2px  2px 3px rgba(0, 0, 0, 0.1);
}

.contato-info, .contato-form {
    flex: 1;
    min-width: 300px;
}

.contato-info h3 {
    font-size: 1.8em;
    color: #0c2352;
    margin-bottom: 15px;
}

.contato-info p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contato-info ul {
    list-style: none;
}

.contato-info ul li {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.contato-info ul li a {
    color: #0c2352;
    font-weight: bold;
    text-decoration: none;
}

.contato-info ul li a:hover {
    text-decoration: underline;
}

.contato-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contato-form label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.contato-form input, .contato-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    background-color: #fff;
}

.contato-form input:focus, .contato-form textarea:focus {
    outline: none;
    border-color: #0c2352;
    box-shadow: 0 0 5px rgba(12, 35, 82, 0.5);
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    background-color: #0c2352;
    color: #fcf7d6da;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #294886;
}

/* === A PUNÇÃO (FORMATO IDÊNTICO À FOTO, COR VERMELHA) === */
.puncao {
    position: absolute;
    bottom: 35px;
    right: 5px;
    width: 85px; 
    height: 32px;
    display: flex;
    align-items: center;
    transform: rotate(-25deg);
    pointer-events: none; 
    filter: drop-shadow(3px 5px 3px rgba(0,0,0,0.5)); 
    z-index: 10;
    
    background: linear-gradient(to bottom, #d0d0d0 0%, #777777 100%) no-repeat right center / 35px 2px;
}

.puncao::before {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 10px 10px, #ff5252 0%, #990000 70%);
    z-index: 2;
}

.puncao::after {
    content: "";
    width: 40px;
    height: 11px;
    background: linear-gradient(to bottom, #d32f2f 0%, #7f0000 100%);
    margin-left: -12px; 
    border-radius: 0 4px 4px 0; 
    z-index: 1;
}

/* === 8. NOSSO TIME - PADRÃO ESCURO === */
#time {
    background-color: #252424; 
    color: #fcf7d6da;
}

.tab-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.time-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1.5em;
}

.column-title {
    text-align: center;
    margin-bottom: 20px;
    color: #fcf7d6da; 
    font-family: 'Bank Gothic', Arial, sans-serif;
    font-size: 1.3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #b8b8b8;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-top: 5px solid #0c2352; 
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.team-card .team-photo-wrapper {
    width: 150px;
    height: 150px;
    min-width: 150px;
    margin-bottom: 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #0c2352;
    background-color: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c2352;
}

.team-avatar-fallback svg {
    width: 36px;
    height: 36px;
}

.team-card .details h4 {
    margin: 0;
    font-size: 1.4rem;
    color: #222; 
}

.team-card .details p {
    margin: 8px 0 0;
    font-size: 1.05rem;
    color: #333; 
}

body.high-contrast .team-card {
    background-color: #000000 !important;
    border-color: #ffff00 !important;
    box-shadow: none;
}

/* === RODAPÉ === */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 2px solid #0c2352;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #faf4cdda;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f7da72;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9em;
    text-align: center;
}

/* === RESPONSIVIDADE === */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .menu {
        top: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
        position: fixed;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding-left: 0;
        display: flex;
        justify-content: center;
    }

    .mobile-right-icons {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-right: 20px;
    }

    .settings-icon, .menu-icon {
        display: flex;
        margin: 0; 
    }

    .menu-icon {
        display: flex;
        margin-right: 20px;
    }

    .share-icon {
        display: flex;
        margin-left: 20px;
    }

    .a11y-controls {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100vw;
        background-color: #071531;
        padding: 15px 0;
        margin: 0;
        justify-content: center;
        border-bottom: 1px solid #252424;
        border-top: 1px solid #464343;
        z-index: 900;
    }
    
    .a11y-controls.show {
        display: flex;
    }

    .menu-list {
        display: none;
        flex-direction: column;
        width: 100vw;
        background-color: #071531;
        position: absolute;
        top: 100px;
        right: 0;
        left: 0;
        margin: 0;
        max-height: calc(100vh - 100px); 
        overflow-y: auto; 
    }

    .menu-list > li {
        display: block;
        border-bottom: 1px solid #252424;
        border-top: 1px solid #464343;
    }

    .menu-list.show {
        display: flex;
    }

    .social-media {
        display: none;
        position: fixed;
        background-color: #1E1E1E;
        width: 100%;
        justify-content: center;
        gap: 15px;
        padding: 20px 0;
    }

    .social-media.show {
        display: flex;
    }

    section {
        min-height: auto;
        padding: 40px 10px;
    }

    .home-container, .diretrizes-container, .about-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-text, .diretrizes-text, .about-content-1, .about-content-2, .about-content-3 {
        width: 100%;
        margin: 0;
    }

    .home-text h1 {
        font-size: 2em; 
    }

    .home-text p {
        font-size: 1.1em; 
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap; 
    }

    .home-image, .diretrizes-image, .about-image-1, .about-image-2, .about-image-3 {
        width: 100%;
        margin: 20px 0;
    }
    
    /* 👇 AJUSTES DA PRANCHETA (FALE CONOSCO) NO CELULAR 👇 */
    .contato-container {
        padding: 80px 15px 25px; /* Margens internas menores */
        border-width: 10px;      /* Borda mais fina no celular */
        gap: 25px;
    }
    
    .contato-container::before {
        font-size: 22px;         /* Texto Braille um pouco menor */
        top: 30px;
    }
    
    .contato-container::after {
        width: 100px;            /* Prendedor de papel menorzinho */
        height: 28px;
        top: -12px;
    }

    .contato-info, .contato-form {
        min-width: 100%;         /* Permite que o texto e os inputs encolham livremente */
    }
    
    .puncao {
        bottom: 15px;
        right: 0px;
        transform: scale(0.8) rotate(-25deg); /* Furador ligeiramente menor no mobile */
    }
    /* 👆 FIM DOS AJUSTES DA PRANCHETA 👆 */

    .footer .container {
        flex-direction: column; 
        text-align: center;     
        gap: 30px;              
    }

    .footer-section {
        margin-bottom: 0;       
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr; 
    }
    .lightbox-prev,
    .lightbox-next {
        font-size: 25px;
        padding: 10px;
    }
    .logo-braille {
        display: none; 
    }
}