/* ===================================
   PROCESSO SECTION
=================================== */

.processo-section {
    position: relative;

    padding: 100px 5%;

    background:
        radial-gradient(circle at top left,
            rgba(0, 191, 255, 0.05),
            transparent 25%),

        radial-gradient(circle at bottom right,
            rgba(255, 140, 0, 0.04),
            transparent 25%),

        #020817;

    overflow: hidden;
}

/* ===================================
   HEADER
=================================== */

.processo-header {
    text-align: center;

    max-width: 760px;

    margin: auto;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;

    margin-bottom: 18px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.15);

    color: #00bfff;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 1px;
}

.processo-header h2 {
    color: #fff;

    font-size: 2.8rem;

    line-height: 1.2;

    margin-bottom: 20px;
}

.processo-header p {
    color: #94a3b8;

    line-height: 1.8;

    font-size: 1rem;
}

.orange-primary {
    color: #ff8c00;
}

.blue-primary {
    color: #00bfff;
}

/* ===================================
   TIMELINE
=================================== */

.timeline {
    position: relative;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 24px;
}

/* ===================================
   LINHA
=================================== */

.timeline-line {
    position: absolute;

    top: 38px;
    left: 10%;

    width: 80%;
    height: 2px;

    background: linear-gradient(90deg,
            rgba(0, 191, 255, 0.4),
            rgba(255, 140, 0, 0.4));

    z-index: 0;
}

/* ===================================
   ITEM
=================================== */

.timeline-item {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===================================
   NUMBER
=================================== */

.timeline-number {
    width: 74px;
    height: 74px;

    margin-bottom: 24px;

    border-radius: 50%;

    background:
        linear-gradient(145deg,
            rgba(0, 191, 255, 0.18),
            rgba(255, 140, 0, 0.12));

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 1.4rem;
    font-weight: 700;

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 25px rgba(0, 191, 255, 0.08);
}

/* ===================================
   CARD
=================================== */

.timeline-card {
    width: 100%;

    padding: 28px 22px;

    border-radius: 22px;

    background: rgba(7, 21, 41, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.06);

    text-align: center;

    transition: 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 191, 255, 0.25);

    box-shadow:
        0 0 25px rgba(0, 191, 255, 0.08);
}

/* ===================================
   ICON
=================================== */

.timeline-icon {
    width: 58px;
    height: 58px;

    margin: auto;
    margin-bottom: 18px;

    border-radius: 16px;

    background: rgba(0, 191, 255, 0.08);

    border: 1px solid rgba(0, 191, 255, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.4rem;
}

/* ===================================
   TEXTOS
=================================== */

.timeline-card h3 {
    color: #fff;

    font-size: 1.2rem;

    margin-bottom: 14px;
}

.timeline-card p {
    color: #94a3b8;

    line-height: 1.7;

    font-size: 0.92rem;
}

/* ===================================
   RESPONSIVO
=================================== */

@media (max-width: 1200px) {

    .timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-line {
        display: none;
    }

}

@media (max-width: 900px) {

    .timeline {
        grid-template-columns: 1fr;

        gap: 26px;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;

        gap: 18px;
    }

    .timeline-number {
        width: 58px;
        height: 58px;

        min-width: 58px;

        font-size: 1.1rem;

        margin-bottom: 0;
    }

    .timeline-card {
        text-align: left;
    }

    .timeline-icon {
        margin-left: 0;
    }

}

@media (max-width: 600px) {

    .processo-header h2 {
        font-size: 2rem;
    }

    .timeline-card {
        padding: 24px 18px;
    }

}