.secao-galeria-lando {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 60%);
    margin: 0;
}

.trilha-fotos {
    display: flex;
    gap: 8vw;
    padding: 0 15vw;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
}

.timeline-item {
    width: 420px;
    flex: 0 0 420px;
    position: relative;
}

.thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    background-color: rgba(255,255,255,0.05);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ano {
    font-size: 90px;
    font-weight: 500;
    color: #D92D20;
    line-height: 1;
    margin-bottom: 20px;
}

.conteudo {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.conteudo ul {
    padding-left: 20px;
}

.conteudo li {
    margin-bottom: 8px;
    opacity: .9;
}

@media(max-width:768px){
    .timeline-item { 
        width: 280px; 
        flex: 0 0 280px; 
    }
    .thumb { 
        height: 160px; 
    }
    .ano { 
        font-size: 50px; 
    }
    .conteudo { 
        font-size: 14px; 
    }
}