/* Variáveis de Cores */
:root {
    --primary: #6B3410;
    --primary-dark: #6B3410;
    --primary-light: #A67B5B;
    --white: #FFFFFF;
    --text-dark: #2C1810;
    --text-light: #8A7A75;
    --background: #FBF7F4;
    --border: #E8DCD4;
    --header-color: #f7c6a6;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.main-header {
    background: var(--header-color);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
    padding: 0.5rem 0;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.logo-image-mobile {
    display: none;
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    color: #e03a1f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.85)), 
                url('/assets/images/hero-bg.jpg') center/cover;
    padding: 6rem 0;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Metas Section */
.metas {
    padding: 5rem 0;
    background: var(--background);
}

.metas h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.metas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.meta-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.meta-card:hover {
    transform: translateY(-5px);
}

.meta-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    padding: 0.5rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-icon svg {
    width: 24px;
    height: 24px;
}

.meta-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.meta-card p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: var(--white);
}

.blog h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Números Section */
.numeros {
    padding: 4rem 0;
    background: var(--primary);
    color: var(--white);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.numero {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Participe Section */
.participe {
    padding: 5rem 0;
    text-align: center;
    background: var(--white);
}

.participe h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.participe p {
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Botões */
.hero-buttons,
.participe-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-primary,
.btn-secondary,
.btn-saiba-mais {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    text-align: center;
}

/* Botões do Hero */
.hero .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.hero .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

/* Botões da seção Participe */
.participe .btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.participe .btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-saiba-mais {
    color: var(--primary);
    padding: 0;
    font-weight: 600;
    box-shadow: none;
}

/* Hover states dos botões */
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.participe .btn-primary:hover {
    background: var(--primary-dark);
}

.participe .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-saiba-mais:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer Styles */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
    opacity: 0.9;
}

.footer-col a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-col ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
}

.footer-col ul li:last-child {
    border-bottom: none;
}

/* Footer Logos Section */
.footer-logos {
    background: var(--white);
    margin: 2rem -1.5rem;
    padding: 2rem;
    text-align: center;
}

.partner-logos {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo-image {
        display: none;
    }

    .logo-image-mobile {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-color);
        padding: 1rem;
        flex-direction: column;
        gap: 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .metas {
        padding: 3rem 0;
    }

    .meta-card {
        padding: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons,
    .participe-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .footer-col a:hover {
        transform: none;
    }

    .footer-logos {
        margin: 2rem -1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .numeros-grid {
        grid-template-columns: 1fr 1fr;
    }

    .numero {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .post-image img {
        height: 180px;
    }

    .footer-logos {
        padding: 1rem;
    }
    
    .partner-logos {
        width: 100%;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meta-card,
.post-card,
.numero-item {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Estados Ativos */
.nav-links a.active {
    border-bottom: 2px solid var(--white);
}

.meta-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Utilidades */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
/* Estilos para a página de contato */
.contato-header {
    text-align: center;
    padding: 4rem 0;
    background: var(--background);
}

.contato-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contato-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
}

.contato-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contato-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.form-contato label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-contato input:focus,
.form-contato textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-contato textarea {
    resize: vertical;
    min-height: 120px;
}

.form-contato button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-info {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contato-header {
        padding: 2rem 0;
    }
    
    .contato-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .form-contato {
        padding: 1.5rem;
    }
}
/* Estilos para a página Sobre */
.hero-about {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.85)), 
                url('/assets/images/hero-about.jpg') center/cover;
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
}

.hero-about h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.sobre-intro {
    padding: 5rem 0;
    background: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-texto h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.sobre-texto p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.valores {
    padding: 5rem 0;
    background: var(--background);
}

.valores h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.valor-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
}

.valor-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.valor-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.objetivos {
    padding: 5rem 0;
    background: var(--white);
}

.objetivos h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.objetivos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.objetivo-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.objetivo-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.equipe {
    padding: 5rem 0;
    background: var(--background);
}

.equipe h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.membro-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.membro-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.membro-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--primary);
}

.membro-card .cargo {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.parceiros {
    padding: 5rem 0;
    background: var(--white);
}

.parceiros h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.parceiros-grid img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.parceiros-grid img:hover {
    filter: grayscale(0%);
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 2.5rem;
    }

    .valores-grid,
    .objetivos-grid {
        grid-template-columns: 1fr;
    }

    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .equipe-grid,
    .parceiros-grid {
        grid-template-columns: 1fr;
    }

    .hero-about {
        padding: 4rem 0;
    }

    .hero-about h1 {
        font-size: 2rem;
    }
}
/* Estilos para a página de mobilização */
.hero-mobilizacao {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.85)),
                url('/assets/images/hero-mobilizacao.jpg') center/cover;
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
}

.hero-mobilizacao h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Redes Culturais */
.redes-culturais {
    padding: 5rem 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.redes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rede-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.rede-card:hover {
    transform: translateY(-5px);
}

.rede-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rede-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Como Participar */
.como-participar {
    padding: 5rem 0;
    background: var(--background);
}

.participacao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.participacao-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.numero-redondo {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Agenda Cultural */
.agenda-cultural {
    padding: 5rem 0;
    background: var(--white);
}

.agenda-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.evento-card {
    display: flex;
    background: var(--background);
    border-radius: 8px;
    overflow: hidden;
}

.evento-data {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dia {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.mes {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.evento-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.evento-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.local {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Mapa Cultural */
.mapa-cultural {
    padding: 5rem 0;
    background: var(--background);
}

.mapa-wrapper {
    height: 500px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.mapa-legenda {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ponto {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.ponto-cultura { background: #E74C3C; }
.ponto-mestre { background: #3498DB; }
.ponto-coletivo { background: #2ECC71; }

/* CTA Mobilização */
.cta-mobilizacao {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-mobilizacao h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-mobilizacao p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

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

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

    .participacao-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-mobilizacao h1 {
        font-size: 2.5rem;
    }

    .redes-grid {
        grid-template-columns: 1fr;
    }

    .evento-card {
        flex-direction: column;
    }

    .evento-data {
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .mapa-wrapper {
        height: 300px;
    }

    .mapa-legenda {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .participacao-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-mobilizacao {
        padding: 4rem 0;
    }

    .hero-mobilizacao h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .evento-info {
        padding: 1rem;
    }

    .participacao-card {
        padding: 1.5rem;
    }

    .section-intro {
        font-size: 1.1rem;
    }
}

/* Animações */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rede-card,
.participacao-card,
.evento-card {
    animation: slideIn 0.6s ease-out forwards;
}

/* Acessibilidade */
.btn-inscricao:focus,
.btn-saiba-mais:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Interatividade */
.rede-card:hover .rede-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.btn-inscricao {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-inscricao:hover {
    background: var(--primary-dark);
}

.btn-saiba-mais {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.btn-saiba-mais:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
/* Estilos para a página de mapeamento */
.hero-mapeamento {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.85)),
                url('/assets/images/hero-mapeamento.jpg') center/cover;
    padding: 4rem 0;
    color: var(--white);
    text-align: center;
}

.hero-mapeamento h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Filtros */
.filtros-mapa {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.filtros-form {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filtro-grupo {
    flex: 1;
    min-width: 200px;
}

.filtro-grupo label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.filtro-grupo select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
}

/* Mapa Interativo */
.mapa-interativo {
    padding: 3rem 0;
    background: var(--background);
}

.mapa-container {
    height: 600px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mapa-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.mapa-legenda {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.mapa-legenda h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.mapa-legenda ul {
    list-style: none;
}

.mapa-legenda li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.legenda-ponto {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.ponto-cultura { background: #E74C3C; }
.ponto-mestre { background: #3498DB; }
.ponto-espaco { background: #2ECC71; }

/* Estatísticas */
.mapa-estatisticas {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.estatisticas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.estatistica-card {
    text-align: center;
    padding: 1rem;
}

.estatistica-card .numero {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.estatistica-card .label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Tabs */
.tabs-container {
    margin-top: 3rem;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Lista Cultural */
.lista-cultural {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.item-cultural {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.item-cultural h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.item-cultural p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Seção Contribua */
.contribua {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.contribua h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contribua p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.botoes-contribua {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 992px) {
    .mapa-info {
        grid-template-columns: 1fr;
    }
    
    .mapa-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-mapeamento h1 {
        font-size: 2.5rem;
    }
    
    .filtros-form {
        flex-direction: column;
    }
    
    .filtro-grupo {
        width: 100%;
    }
    
    .estatisticas-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .mapa-container {
        height: 300px;
    }
    
    .contribua h2 {
        font-size: 2rem;
    }
}
/* Estilos para a página de formação */
.hero-formacao {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.85)),
                url('/assets/images/hero-formacao.jpg') center/cover;
    padding: 6rem 0;
    color: var(--white);
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.curso-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.curso-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.curso-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-matricula {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-matricula:hover {
    background: var(--primary-dark);
}

/* Formação Presencial */
.formacao-presencial {
    padding: 5rem 0;
    background: var(--white);
}

.calendario-formacao {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.evento-formacao {
    display: flex;
    background: var(--background);
    border-radius: 8px;
    overflow: hidden;
}

.evento-data {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    min-width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evento-data .dia {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.evento-data .mes {
    text-transform: uppercase;
    font-size: 1rem;
}

.evento-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.evento-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.evento-info .local,
.evento-info .vagas {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Recursos Educacionais */
.recursos-educacionais {
    padding: 5rem 0;
    background: var(--background);
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.recurso-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-5px);
}

.recurso-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.recurso-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.recurso-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-download {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* CTA Formação */
.cta-formacao {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-formacao h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-formacao p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .hero-formacao h1 {
        font-size: 2.5rem;
    }

    .cursos-header {
        flex-direction: column;
        align-items: stretch;
    }

    .cursos-filtros {
        flex-direction: column;
    }

    .cursos-filtros select,
    .cursos-filtros input {
        width: 100%;
    }

    .evento-formacao {
        flex-direction: column;
    }

    .evento-data {
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .trilhas-grid,
    .recursos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-formacao {
        padding: 4rem 0;
    }

    .hero-formacao h1 {
        font-size: 2rem;
    }

    .cta-formacao h2 {
        font-size: 2rem;
    }

    .curso-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
});
    text-align: center;
}

.hero-formacao h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Trilhas de Aprendizagem */
.trilhas-aprendizagem {
    padding: 5rem 0;
    background: var(--white);
}

.trilhas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trilha-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.trilha-card:hover {
    transform: translateY(-5px);
}

.trilha-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trilha-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.trilha-topicos {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.trilha-topicos li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.trilha-topicos li:last-child {
    border-bottom: none;
}

/* Cursos */
.cursos-disponiveis {
    padding: 5rem 0;
    background: var(--background);
}

.cursos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cursos-filtros {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cursos-filtros select,
.cursos-filtros input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    min-width: 200px;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.curso-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.curso-imagem {
    height: 200px;
    overflow: hidden;
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curso-info {
    padding: 1.5rem;
}

.curso-nivel {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--white