/* -------------------- Seção Split Destacada -------------------- */
.highlight-section.split-highlight {
    width: 100vw;
    min-height: 510px;
    background: #3c42c6; /* ou sua var(--primary-purple) */
    color: #fff;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
}

.highlight-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 0 40px;
    min-height: 410px;
    box-sizing: border-box;
    gap: 30px;
}

.highlight-left {
    flex: 1.3 1 0%;
    display: flex;
    align-items: flex-start;
}

.highlight-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.08;
    margin: 0;
    text-align: left;
    letter-spacing: -1px;
}

.highlight-bold {
    font-weight: 700;
    color: #fff;
    background: none;
    letter-spacing: 0;
}

.highlight-right {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 600px;
    padding-top: 15px;
    padding-left: 30px;
}

.highlight-description {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
    color: #fff;
}

.highlight-strong {
    font-weight: 700;
    color: #fff;
    background: none;
    font-size: 1.1em;
}

.highlight-btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 30px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1.07rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    margin-top: 10px;
    cursor: pointer;
}
.highlight-btn:hover {
    background: #fff;
    color: #3c42c6;
    box-shadow: 0 2px 16px 0 rgba(20,20,90,0.06);
}

/* -------------------- Timeline Minimalista -------------------- */
.timeline-horizontal {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 72px;
    pointer-events: none;
    z-index: 1;
}
.timeline-horizontal > .timeline-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.23);
    z-index: 1;
    border-radius: 2px;
}
.timeline-steps {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1100px;
    justify-content: space-between;
    z-index: 2;
    margin: 0 auto;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 60px;
}
.timeline-circle {
    width: 17px;
    height: 17px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    margin-bottom: 8px;
    box-sizing: border-box;
}
.timeline-label {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.44;
    user-select: none;
    font-family: inherit;
    letter-spacing: 0.01em;
}

/* -------------------- Responsivo -------------------- */
@media (max-width: 1050px) {
    .highlight-title { font-size: 2.4rem; }
    .highlight-description { font-size: 1.1rem; }
    .highlight-content { padding: 45px 20px 0 20px; }
}

@media (max-width: 820px) {
    .highlight-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 38px 5vw 0 5vw;
    }
    .highlight-left, .highlight-right {
        padding: 0;
        max-width: 100vw;
    }
    .highlight-title {
        font-size: 2rem;
        text-align: left;
    }
    .highlight-description {
        font-size: 1rem;
    }
    .highlight-btn {
        font-size: 1rem;
    }
    .timeline-horizontal { height: 52px; }
    .timeline-label { font-size: 0.74rem; }
    .timeline-step { min-width: 45px; }
    .timeline-circle { width: 12px; height: 12px; }
}

@media (max-width: 500px) {
    .highlight-section.split-highlight { min-height: 320px; }
    .highlight-content { padding: 28px 2vw 0 2vw; }
    .highlight-title { font-size: 1.2rem; }
    .highlight-btn { font-size: 0.93rem; padding: 11px 16px; }
    .timeline-label { font-size: 0.62rem; }
}

