@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
        
:root {
    --verde: #1d853c;
    --laranja: #ed6c1a;
    --preto: #000;
    --branco: #fff;
    --cinza-claro: #f8f9fa;
    --marrom: #8b4513;
    --primary-color: #2c5e1a;
    --secondary-color: #a67c52;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}



.timeline-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7a24 100%);
    color: white;
    padding: 2.5rem 0;
    margin-bottom: 2.5rem;
    text-align: center;
}

.timeline-title {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.timeline-subtitle {
    font-size: 1rem;
    background-color: rgba(255,255,255,0.15);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 400;
}

.timeline-container {
    position: relative;
    max-width: 90%  ;
    margin: 0 auto;
    padding: 0 15px 3rem;
}

.timeline-line {
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(44, 94, 26, 0.3));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 46%;
    margin-bottom: 1.8rem;
    z-index: 2;
}

.timeline-item.left {
    margin-right: auto;
}

.timeline-item.right {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #f48220;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 20px;
    z-index: 3;
}

.timeline-item.left .timeline-dot {
    right: -28px;
}

.timeline-item.right .timeline-dot {
    left: -28px;
}

.timeline-card {
    padding: 1.2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 3px solid #f48220;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-item:hover .timeline-card {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-year {
    font-weight: bold;
    color: #f48220;
    font-size: 16px;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
}

.timeline-year::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 8px;
}

.timeline-event-title {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 20px;
}

.timeline-content {
    font-size: 16px;
    color: #000;
}

.timeline-content small {
    color: #000;
    font-weight: bold;
}

.timeline-img {
    margin: 0.8rem 0;
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
}

.timeline-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.5s;
    border: 1px solid #e9ecef;
}

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

.gallery-section {
    padding: 2rem 0;
    margin-top: 2rem;
}

.gallery-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.gallery-img {
    margin-bottom: 1.2rem;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: translateY(-5px);
}

.gallery-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* Seção de Valores */
.valores-section {
    padding: 3rem 0;
    background-color: var(--branco);
}

.section-title {
    color: var(--verde);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.card-valores {
    border: none;
    border-radius: 8px;
    background-color: var(--branco);
    height: 100%;
    margin-bottom: 1.5rem;
}

.card-valores .card-header {
    background-color: var(--branco);
    border-bottom: 2px solid var(--verde);
    padding: 1rem 1.5rem;
}

.card-missao .card-header {
    border-bottom-color: var(--verde);
}

.card-visao .card-header {
    border-bottom-color: var(--laranja);
}

.card-valores .card-body {
    padding: 1.5rem;
}

.card-body p {
    font-size: 15px;
}

.valores-lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.valor-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.1);
}

.valor-icon {
    margin-right: 10px;
    font-size: 1.1rem;
}

.verde {
    color: var(--verde);
}

.laranja {
    color: var(--laranja);
}

.valor-text {
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
    }
    
    .timeline-item.left, 
    .timeline-item.right {
        margin-left: 0;
        margin-right: 0;
    }
    
    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 21px;
        right: auto;
    }
    
    .timeline-year {
        font-size: 0.9rem;
    }
    
    .timeline-event-title {
        font-size: 1rem;
    }
    
    .timeline-content {
        font-size: 0.85rem;
    }

    .valores-lista {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}