/* ===== VARIÁVEIS ===== */
:root {
    --dark-green: #0a2e1a;
    --medium-green: #1a472a;
    --light-green: #2d7d46;
    --gold: #d4af37;
    --light-gold: #f1e5ac;
    --black: #151515;
    --dark-black: #0e0e0e;
    --parchment: #f5e6c8;
    --burgundy: #6d0303;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--black);
    color: var(--parchment);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--dark-black);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    height: 80px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    height: 100%;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-background {
    height: 100%;
    width: auto;
    max-height: 60px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    transition: var(--transition);
}

.logo:hover .logo-background {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo-subtitle {
    color: var(--light-gold);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: 2px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--light-gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsividade para a Navbar */
@media (max-width: 992px) {
    .logo-title {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-img {
        height: 50px;
        width: 50px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
        width: 45px;
    }
}



/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh; /* ou a altura que preferir */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ajuste aqui para subir a imagem (quanto maior o %, mais para cima) */
    object-position: center 30%; /* 30% é um valor de exemplo - ajuste conforme necessário */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay escuro para melhor contraste */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
    position: relative;
}

.hero-lema {
    font-family: 'Old English Text MT', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--light-gold);
    font-family: 'Old English Text MT', serif;
    display: block;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    font-family: 'Cinzel', serif;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark-green);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--dark-green);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Para desktop */
@media (min-width: 1024px) {
    .video-background video {
        object-position: center 25%;
    }
}

/* Para tablets */
@media (max-width: 1023px) and (min-width: 768px) {
    .video-background video {
        object-position: center 30%;
    }
}

/* Para mobile */
@media (max-width: 767px) {
    .video-background video {
        object-position: center 35%;
    }
}

/* ===== SEÇÕES ===== */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-dark {
    background: linear-gradient(to bottom, 
        var(--dark-green) 0%,
        rgba(21, 21, 21, 0.9) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section-light {
    background-color: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--light-gold);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--gold);
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 3rem;
}

.divider-line {
    width: 80px;
    height: 2px;
    background-color: var(--gold);
}

.divider-icon {
    margin: 0 1.5rem;
}

.divider-icon img {
    width: 40px;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

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

/* ===== SEÇÃO HISTÓRIA COM TIMELINE COMPLETA E CORRIGIDA ===== */
/* ===== HEADER DA TIMELINE ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    color: var(--light-gold);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    position: relative;
}

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        var(--gold), 
        transparent);
    position: relative;
}

.divider-icon {
    margin: 0 20px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.divider-icon img {
    width: 50px;
    height: auto;
    filter: 
        drop-shadow(0 0 5px rgba(212, 175, 55, 0.7))
        sepia(30%) 
        brightness(110%);
    transition: var(--transition);
}

.divider:hover .divider-icon img {
    transform: rotate(5deg) scale(1.1);
    filter: 
        drop-shadow(0 0 8px rgba(212, 175, 55, 0.9))
        sepia(50%) 
        brightness(120%);
}

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

.section-subtitle {
    font-style: italic;
    color: var(--light-gold);
    font-size: 1.3rem;
    margin-top: 30px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '"';
    color: var(--gold);
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section-subtitle::before {
    left: 0;
}

.section-subtitle::after {
    right: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .divider-line {
        width: 60px;
    }
    
    .divider-icon img {
        width: 40px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .divider-line {
        width: 40px;
    }
    
    .divider-icon {
        margin: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
}
.section-history {
    background: linear-gradient(to bottom, 
        var(--dark-green) 0%,
        var(--black) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.section-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/parchment-pattern.png');
    opacity: 0.03;
    z-index: 0;
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.history-timeline {
    position: relative;
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Linha central - agora corretamente posicionada ATRÁS do conteúdo */
.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        var(--gold) 15%,
        var(--gold) 85%,
        transparent 100%);
    z-index: 1; /* Ajustado para ficar atrás dos cards mas acima do fundo */
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

/* Ano - posicionado acima de tudo */
.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--burgundy);
    color: var(--light-gold);
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    z-index: 4; /* Fica acima de todos os elementos */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid var(--gold);
    font-family: 'Cinzel', serif;
}

/* Container do conteúdo */
.timeline-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 2; /* Fica acima da linha */
}

/* Itens ímpares (direita) */
.timeline-item:nth-child(odd) .timeline-content {
    flex-direction: row-reverse;
}

/* Imagem */
.timeline-image {
    width: 42%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--gold);
    transition: var(--transition);
    position: relative;
    z-index: 3; /* Fica acima do fundo e da linha */
    background-color: var(--dark-black); /* Garante cobertura da linha */
}

.timeline-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 46, 26, 0.3);
    z-index: 1;
    transition: var(--transition);
}

.timeline-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.timeline-image:hover::before {
    background: rgba(10, 46, 26, 0.1);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.timeline-image:hover img {
    transform: scale(1.05);
}

/* Texto */
.timeline-text {
    width: 53%;
    padding: 25px;
    background: rgba(10, 20, 15, 0.8);
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(3px);
    transition: var(--transition);
    z-index: 3; /* Fica acima do fundo e da linha */
}

.timeline-item:nth-child(odd) .timeline-text {
    margin-right: 3%;
}

.timeline-item:nth-child(even) .timeline-text {
    margin-left: 3%;
}

.timeline-text:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.timeline-text h3 {
    color: var(--gold);
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.timeline-text p {
    color: var(--light-gold);
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .timeline-text h3 {
        font-size: 1.5rem;
    }
    
    .timeline-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .history-timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        flex-direction: column !important;
        margin-top: 60px;
    }
    
    .timeline-image, 
    .timeline-text {
        width: 100%;
    }
    
    .timeline-text {
        margin: 25px 0 0 0 !important;
    }
}

@media (max-width: 576px) {
    .timeline-text {
        padding: 20px;
    }
    
    .timeline-text h3 {
        font-size: 1.4rem;
    }
    
    .timeline-year {
        padding: 5px 15px;
        font-size: 0.9rem;
    }
}

/* ===== DIVISÃO ENTRE SEÇÕES ===== */
.section-divider {
    background: linear-gradient(45deg, 
        var(--dark-green) 0%, 
        var(--burgundy) 50%,
        var(--dark-green) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/texture-divider.jpg');
    opacity: 0.2;
    z-index: 0;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.divider-line {
    width: 30%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        var(--gold), 
        transparent);
}

.divider-icon {
    margin: 0 30px;
    color: var(--gold);
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ===== GALERIA DE ATIVIDADES ===== */
.activity-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    background: rgba(21, 21, 21, 0.7);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(21, 21, 21, 0.9);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--light-gold);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.activity-info {
    padding: 20px;
}

.activity-info h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.activity-info p {
    color: var(--light-gold);
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-more {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.btn-more:hover {
    color: var(--light-gold);
}

.btn-more i {
    transition: transform 0.3s ease;
}

.btn-more:hover i {
    transform: translateX(3px);
}
.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-view-more:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    color: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(3px);
}
/* ===== SEÇÃO MATERIAIS ===== */
.materials-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.material-card {
    background: rgba(21, 21, 21, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
    background: rgba(21, 21, 21, 0.8);
}

.material-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--gold);
}

.material-card h3 {
    color: var(--light-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.material-card p {
    color: var(--light-gold);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* ===== SEÇÃO DOCUMENTOS ===== */
.section-documents {
    background: linear-gradient(to bottom, 
        var(--dark-green) 0%,
        var(--black) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

.section-documents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/parchment-pattern.png');
    opacity: 0.03;
    z-index: 0;
}

.documents-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    position: relative;
    z-index: 1;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.document-card {
    background: rgba(26, 71, 42, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
    background: rgba(26, 71, 42, 0.5);
}

.document-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.document-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.document-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.document-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== SEÇÃO MEMBROS ===== */
.section-members {
    background: linear-gradient(to bottom, 
        var(--black) 0%,
        var(--dark-green) 100%),
        url('../img/texture-members.jpg');
    background-size: cover;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.member-card {
    background-color: rgba(21, 21, 21, 0.8);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(3px);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
    background-color: rgba(21, 21, 21, 0.9);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.member-title {
    color: var(--light-gold);
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.leadership-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gold);
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ===== SEÇÃO CONTATO ===== */
.section-contact {
    background: linear-gradient(to bottom, 
        var(--dark-green) 0%,
        var(--black) 100%),
        url('../img/texture-contact.jpg');
    background-size: cover;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(21, 21, 21, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--light-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    backdrop-filter: blur(3px);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* ===== RODAPÉ ===== */
.footer {
    background: linear-gradient(to bottom, 
        var(--black) 0%,
        #000 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

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

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--light-gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--light-gold);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: var(--light-gold);
    font-size: 0.9rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-lema {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .history-timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        left: 20px;
        transform: none;
    }
    
    .timeline-content {
        flex-direction: column;
    }
    
    .timeline-image, 
    .timeline-text {
        width: 100%;
    }
    
    .divider-content {
        flex-direction: column;
    }
    
    .divider-line {
        width: 80%;
        height: 1px;
        margin: 15px 0;
    }
    
    .divider-icon {
        margin: 15px 0;
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-text h3 {
        font-size: 1.4rem;
    }
    
    .timeline-text {
        padding: 15px;
    }
    
    .timeline-text p {
        font-size: 0.95rem;
    }
    
    .material-card,
    .document-card {
        padding: 1.5rem;
    }
}