/* ============================================
   ESTILOS GERAIS E RESET
   ============================================ */

/* Reset de margens, paddings e box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Definição das fontes e cores base */
:root {
    --primary-dark: #0a3d2a; /* Verde escuro */
    --primary-medium: #1e7e5c; /* Verde médio */
    --primary-light: #2ecc71; /* Verde claro */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-color: #333333;
    --text-light: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Estilos gerais do corpo */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container central para conteúdo */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos para parágrafos e links */
p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-medium);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Estilos para títulos */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

/* Estilos para seções */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--light-gray);
}

/* Cabeçalho das seções */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-medium);
    margin: 0 auto 20px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   CABEÇALHO E MENU DE NAVEGAÇÃO
   ============================================ */

/* Cabeçalho fixo no topo */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

/* Container do cabeçalho */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Estilos da logo */
/* ============================================
   LOGO COM IMAGEM
   ============================================ */

/* Container da logo */
.logo a {
    display: flex;
    align-items: center;
    color: green
    text-decoration: none;
}

/* Estilo para a imagem da logo */
.logo-image {
    height: 60px; /* Altura fixa */
    width: auto; /* Largura automática para manter proporção */
    max-width: 200px; /* Largura máxima para não ficar muito grande */
    object-fit: contain; /* Mantém a proporção da imagem */
    transition: var(--transition);
}

/* Efeito hover na logo */
.logo-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Remover os estilos antigos da logo em texto */
.logo-text, .logo-subtitle {
    display: inline-block;
    font-size: 80%;
}

/* Menu de navegação para desktop */
.nav-desktop ul {
    display: flex;
    list-style: none;
}

.nav-desktop li {
    margin-left: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-medium);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-medium);
}

.nav-link:hover::after {
    width: 100%;
}

/* Botão do menu mobile (oculto em desktop) */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Menu mobile (oculto por padrão) */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.nav-mobile.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

.nav-mobile ul {
    list-style: none;
    padding: 20px;
}

.nav-mobile li {
    margin-bottom: 20px;
}

.nav-mobile .nav-link {
    display: block;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--medium-gray);
}

/* ============================================
   HERO SECTION COM IMAGEM DE FUNDO E OVERLAY
   ============================================ */

/* Seção hero com imagem de fundo */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 70px; /* Compensa a altura do cabeçalho fixo */
    color: var(--white);
    overflow: hidden;
}

/* Container da imagem de fundo */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/g16.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    animation: zoomEffect 20s ease-in-out infinite alternate;
}

/* Efeito de zoom suave na imagem de fundo */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Overlay (máscara) sobre a imagem de fundo */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente personalizado com as cores da associação */
    background: linear-gradient(
        135deg,
        rgba(65, 66, 66, 0.85) 0%,      /* Verde escuro com 85% de opacidade */
        rgba(30, 126, 92, 0.75) 50%,    /* Verde médio com 75% de opacidade */
        rgba(10, 61, 42, 0.9) 100%      /* Verde escuro com 90% de opacidade */
    );
    z-index: -1;
}

/* Conteúdo do hero (texto e estatísticas) */
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* Animação de entrada do conteúdo */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--white);
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Botão do hero com efeito especial */
.btn-hero {
    display: inline-block;
    background-color: var(--primary-medium);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Efeito de brilho no botão */
.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-hero:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover::before {
    left: 100%;
}

/* Estatísticas do hero */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.stat-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 10px;
    min-width: 180px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho nas bordas dos cards de estatística */
.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-medium), var(--white), var(--primary-medium));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 12px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.95;
    margin: 10px 0 5px;
    font-weight: 500;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 400;
}

/* ============================================
   RESPONSIVIDADE PARA HERO SECTION
   ============================================ */

/* Tablets (768px a 1024px) */
@media (max-width: 1024px) {
    .hero {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }
}

/* Telefones (até 768px) */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 200px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Reduzir animação de zoom em mobile */
    .hero-background {
        animation: none;
    }
}

/* Telefones pequenos (até 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .stat-item {
        min-width: 180px;
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    margin: 5px 0;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 0;
}

/* ============================================
   SEÇÃO SOBRE
   ============================================ */

/* Layout do conteúdo sobre */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}






/* Placeholder para imagem */
.image-placeholder {
   background-image: url(img/lo.jpg);
    background-color: var(--medium-gray);
    border-radius: 8px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--primary-medium);
    margin-bottom: 20px;
}

/* Destaques da seção sobre */
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-medium);
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ============================================
   SEÇÃO MISSÃO, VISÃO E VALORES
   ============================================ */

/* Cartões de missão, visão e valores */
.mission-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.mission-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-medium);
    margin-bottom: 20px;
}

.mission-title {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.mission-text {
    color: var(--text-color);
    margin-bottom: 0;
}

.mission-list {
    list-style: none;
    text-align: left;
}

.mission-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.mission-list i {
    color: var(--primary-medium);
    margin-right: 10px;
}

/* ============================================
   SEÇÃO ATIVIDADES
   ============================================ */

/* Grid de atividades */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.activity-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tiktok-embed{
    padding: 30px;
    height: 100%;
    margin: auto;

}

.activity-icon {
    font-size: 2.5rem;
    color: var(--primary-medium);
    margin-bottom: 20px;
}

.activity-title {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.activity-text {
    color: var(--text-color);
    margin-bottom: 20px;
}

.activity-list {
    list-style: none;
    padding-left: 0;
}

.activity-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.activity-list li::before {
    content: '✓';
    color: var(--primary-medium);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Lista de atividades extras */
.activities-extra {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.activities-extra h3 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 30px;
}

.extra-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.extra-item {
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 15px 20px;
    border-radius: 4px;
    min-width: 250px;
}

.extra-item i {
    color: var(--primary-medium);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* ============================================
   SEÇÃO GALERIA
   ============================================ */

/* Grid da galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    background-color: var(--medium-gray);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
}

.gallery-image i {
    font-size: 4rem;
    color: var(--primary-medium);
    margin-bottom: 20px;
}

/* Nota da galeria */
.gallery-note {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-medium);
    padding: 15px 20px;
    border-radius: 4px;
}

.gallery-note p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.gallery-note i {
    margin-right: 10px;
    color: var(--primary-medium);
}

/* ============================================
   NOVA GALERIA POR CATEGORIA
   ============================================ */

/* Filtro de categorias */
.gallery-categories {
    margin-bottom: 40px;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 2px solid var(--primary-medium);
    color: var(--primary-dark);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-medium);
    color: var(--white);
    transform: translateY(-2px);
}

/* Grid da galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Item da galeria */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    transition: var(--transition);
    position: relative;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay com informações */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 61, 42, 0.9), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(0);
    transition: var(--transition);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.photo-count {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Efeitos hover */
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(10, 61, 42, 0.95), transparent);
}

/* ============================================
   SEÇÃO CONTACTOS ATUALIZADA
   ============================================ */

/* Layout dos contactos */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.contact-title {
    color: var(--primary-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-medium);
}

/* Descrição do formulário */
.form-description {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Itens de contacto */
.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-medium);
    margin-right: 20px;
    min-width: 40px;
}

.contact-text h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

/* Ícones sociais */
.contact-social {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-medium);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Formulário de contacto */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(30, 126, 92, 0.1);
}

/* Botão de envio do formulário */
.btn-submit {
    background-color: #25D366; /* Verde do WhatsApp */
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: #128C7E; /* Verde mais escuro do WhatsApp */
    transform: translateY(-2px);
}

/* Botão WhatsApp direto */
.whatsapp-direct {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.btn-whatsapp-direct {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp-direct:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .btn-submit, .btn-whatsapp-direct {
        padding: 12px 20px;
        font-size: 1rem;
    }
}
.btn-submit:hover {
    background-color: var(--primary-dark);
}

/* ============================================
   RODAPÉ
   ============================================ */

/* Rodapé */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-legal {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-links h4, .footer-legal h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-medium);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablets (768px a 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .mission-card, .activity-card {
        min-width: 100%;
    }
}

/* Telefones (até 768px) */
@media (max-width: 768px) {
    /* Menu mobile */
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Ajustes do hero */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 200px;
    }
    
    /* Ajustes das seções */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Ajustes do conteúdo */
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .mission-cards, .activities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ajustes do rodapé */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .image-placeholder {
        height: 280px;
    }
}


/* Telefones pequenos (até 480px) */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ESTILOS PARA PÁGINAS DE GALERIA INDIVIDUAIS
   ============================================ */

/* Banner da galeria */
.gallery-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: var(--white);
    padding: 100px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

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

.breadcrumb span {
    color: var(--primary-light);
}

/* Descrição da galeria */
.gallery-description {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-description h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.gallery-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    min-width: 150px;
}

.gallery-stats .stat i {
    font-size: 2rem;
    color: var(--primary-medium);
    margin-bottom: 10px;
}

/* Galeria completa */
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.full-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    transition: var(--transition);
}

.full-gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.full-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 61, 42, 0.9), transparent);
    color: var(--white);
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.image-info h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.image-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.full-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.full-gallery-item:hover .full-gallery-image img {
    transform: scale(1.1);
}

.full-gallery-item:hover .image-info {
    opacity: 1;
}

/* Links para outras galerias */
.other-galleries {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--medium-gray);
}

.other-galleries h3 {
    color: var(--primary-dark);
    margin-bottom: 30px;
}

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

.other-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    min-width: 150px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.other-link:hover {
    background-color: var(--primary-medium);
    color: var(--white);
    transform: translateY(-5px);
}

.other-link i {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* Responsividade */
@media (max-width: 768px) {
    .gallery-banner {
        padding: 80px 0 40px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .full-gallery-item {
        height: 250px;
    }
    
    .other-link {
        min-width: 130px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .full-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-stats,
    .other-gallery-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilo específico para o TikTok */
.social-icon .fa-tiktok {
    font-size: 1.1rem; /* TikTok precisa ser um pouco menor para caber bem */
}

/* Efeito de brilho no hover para TikTok */
.social-icon:hover .fa-tiktok {
    animation: tiktokGlow 0.5s ease;
}

@keyframes tiktokGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 0, 80, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 0, 80, 0.8), 
                     0 0 20px rgba(0, 242, 234, 0.6);
    }
}

/* Para o ícone de WhatsApp no botão */
.btn-submit .fa-whatsapp {
    font-size: 1.2rem;
}

.btn-whatsapp-direct .fa-whatsapp {
    font-size: 1.2rem;
    
}
.marco-historico {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.marco-historico .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.marco-historico h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.marco-historico .descricao {
  font-size: 16px;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.marco-historico .galeria {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.marco-historico .imagem {
  flex: 1 1 450px;
}

.marco-historico .imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
