/* História Hero Section */
.history-hero {
   background: linear-gradient(rgb(0 0 0), rgb(0 0 0 / 88%)), url(../images/history.png);
   background-size: cover;
   background-position: center;
   height: 60vh;
   display: flex
;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: var(--color-white);
}

.history-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.history-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.history-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* História Intro */
.history-intro {
    padding: 0;
    background: var(--color-white);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-dark);
}

.intro-text h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* História Timeline */
.history-timeline {
    padding: 5rem 0;
    background: var(--color-white);
}

/* Container com padding lateral */
.history-timeline .container {
    padding: 0 5rem;
    max-width: 1400px; /* Aumentado para acomodar melhor o padding */
    margin: 0 auto;
}

.history-block {
    display: flex;
    align-items: center;
    gap: 6rem; /* Aumentado para maior espaçamento entre imagem e texto */
    margin-bottom: 8rem;
    color: var(--color-dark);
    padding: 2rem 0;
}

.history-block.reverse {
    flex-direction: row-reverse;
}

.history-image {
    flex: 0 0 50%; /* Aumentado para dar mais destaque às imagens */
    max-width: 650px;
    position: relative;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.history-image:hover img {
    transform: scale(1.02);
}

.history-content {
    flex: 0 0 40%;
    padding: 2rem 0;
}

.history-content h3 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.history-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

.history-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--color-dark);
}

/* História Future */
.history-future {
    background: var(--color-white);
    color: var(--color-dark);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.future-content h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.future-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1400px) {
    .history-timeline .container {
        padding: 0 4rem;
    }
}

@media (max-width: 1200px) {
    .history-timeline .container {
        padding: 0 3rem;
    }
    
    .history-block {
        gap: 4rem;
    }

    .history-image {
        flex: 0 0 45%;
    }
    
    .history-content {
        flex: 0 0 45%;
    }
}

@media (max-width: 992px) {
    .history-timeline .container {
        padding: 0 2rem;
    }
    
    .history-block {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .history-timeline .container {
        padding: 0 1.5rem;
    }
    
    .history-block {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .history-block.reverse {
        flex-direction: column;
    }

    .history-image, 
    .history-content {
        flex: 0 0 100%;
    }

    .history-content {
        padding: 1rem 0;
    }

    .history-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .history-timeline .container {
        padding: 0 1rem;
    }
    
    .history-content h3 {
        font-size: 1.6rem;
    }
    
    .history-content p {
        font-size: 1rem;
    }
} 