body {
    background-color: #ffffff;
    color: #333333;
}

.text-body-large {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 300;
}

.hero-header {
    position: relative;
    padding: 6rem 0 3rem 0;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.flow-nav {
    position: sticky;
    top: 120px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    padding-left: 1.5rem;
}

.flow-link {
    display: block;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    padding: 0.8rem 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.flow-link:hover,
.flow-link.active {
    color: var(--laef-gold);
}

.flow-link.active::before {
    content: '';
    position: absolute;
    left: -1.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background-color: var(--laef-gold);
    border-radius: 0 4px 4px 0;
}

.content-block {
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.value-card {
    transition: all 0.4s ease;
}

.objective-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    border-radius: 20px;
}

.objective-number {
    position: absolute;
    right: 5px;
    bottom: -20px;
    font-size: 8rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: rgba(239, 203, 108, 0.15);
    line-height: 1;
    z-index: 0;
    transition: all 0.4s ease;
}

.objective-card:hover .objective-number {
    color: rgba(239, 203, 108, 0.3);
    transform: scale(1.05) translateY(-10px);
}

.objective-content {
    position: relative;
    z-index: 1;
}

.timeline-item {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: calc(100% + 1rem);
    width: 2px;
    background: linear-gradient(to bottom, var(--laef-gold), rgba(239, 203, 108, 0.1));
}

@media (max-width: 576px) {
    .content-block {
        margin-bottom: 3rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-item::after {
        width: 10px;
        height: 10px;
        left: -4px;
    }
}

.timeline-item:last-child::before {
    background: linear-gradient(to bottom, var(--laef-gold), transparent);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--laef-gold);
    box-shadow: 0 0 10px rgba(239, 203, 108, 0.6);
}

.badge-valor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
