section.agenda {
    padding: 120px 0;
}

section.agenda h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px #dedede solid;
}

section.agenda .timeline {
    position: relative;
    padding-top: 30px;
    padding-left: 200px;    
}

section.agenda .timeline:after {
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 100px;
    background: #dedede;
}

section.agenda .timeline .item {
    position: relative;
    margin-bottom: 70px;
}

section.agenda .timeline .pin {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    left: -160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 120px;
    height: 120px;
    color: #fff;
    border-radius: 50%;
    background: var(--azul);
    font-size: 12px;
    line-height: 1.1;
}

section.agenda .timeline .pin .dia {
    font-size: 36px;
    font-weight: bold;
}

section.agenda .timeline .content .data {
    font-weight: bold;
    color: #6e6e6e;
    display: flex;
    align-items: center;
    gap: 10px;
}

section.agenda .timeline .content h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

section.agenda .timeline .content p {
    line-height: 1.7;
}