.container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;

}

.texto p {
    width: 80%;
    text-indent: 60px;
    text-align: justify;
    line-height: 1.6;

}

.imagem {
    width: 50%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    object-position: left;

}

h1 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    color: #b66700;
}

.timeline-section {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.timeline-box {
    background-color: #FFF7F7;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
}

.timeline {
    position: relative;
    margin-left: 20px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #FE9A00;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    left: 2px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #FE9A00;
    border-radius: 50px;
}

.timeline-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.timeline-content p {
    margin: 5px 0 0;
    color: #555;
}