/* ==========================================================
   FIRST STEP CTA — CSS ANTIGO SEPARADO
   Baseado no home2(8).css
   ========================================================== */

.ef-first-step {
    padding: 80px 20px;
    background: white;
}

.ef-first-step .ef-home-shell {
    margin: 0 auto;
    background: linear-gradient(#151515, #151515) padding-box, var(--gold-gradient) border-box;
    border-radius: 22px;
    padding: 60px 40px;
    border: 2px solid #E1AD42;
    box-shadow:
        0 0 0 1px rgba(225, 173, 66, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 80px rgba(225, 173, 66, 0.05);

    text-align: center;
    position: relative;
    overflow: hidden;
}

.ef-first-step .ef-home-shell::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at 50% -20%, rgba(225, 173, 66, 0.25), transparent 60%);
    opacity: 0.5;

    animation: ef-glow 6s ease-in-out infinite alternate;
    pointer-events: none;
}

.ef-first-step span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #E1AD42;
    opacity: 0.9;
}

.rule {
    position: relative;
    height: 2px;
    max-width: 760px;
    margin: 14px auto;
}

.rule::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(225, 173, 66, .6), transparent);
    border-radius: 999px;
}

.rule::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    width: 64%;
    height: 12px;
    transform: translateX(-50%);
    background: radial-gradient(120px 12px at 50% 50%, rgba(225, 173, 66, .18), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}

.ef-first-step span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E1AD42;
    box-shadow: 0 0 10px rgba(225, 173, 66, 0.6);
}

.ef-first-step h2 {
       font-size: clamp(2.4rem, 2vw, 4.4rem);
    font-weight: 800;
    margin: 14px 0 18px;
    color: #fff;
    letter-spacing: 1px;
}

.ef-first-step p {
    margin: 0 auto 30px;

    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.ef-first-step ul {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;

    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.ef-first-step li {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 14px;
    color: #fff;

    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.5s;
}

/* bolinha verde */
.ef-first-step li::before {
    content: "✓";

    width: 18px;
    height: 18px;
    border-radius: 999px;

    display: grid;
    place-items: center;

    background: radial-gradient(75% 75% at 30% 30%, #33d17a, #0c7a43);
    border: 1px solid #1e8a54;

    color: #eafff3;
    font-weight: 800;
    font-size: 11px;

    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, .35),
        0 0 0 2px rgba(20, 180, 100, .18),
        0 2px 6px rgba(13, 125, 70, .45);

    flex: 0 0 18px;
}

.ef-first-step li:hover {
    transform: translateY(-3px) scale(1.03);

    background: rgba(225, 173, 66, 0.08);
    border-color: rgba(225, 173, 66, 0.35);

    box-shadow:
        0 6px 20px rgba(225, 173, 66, 0.25),
        0 0 0 1px rgba(225, 173, 66, 0.2) inset;
}



/* Animação usada pelo brilho do card */
@keyframes ef-glow {
    0% {
        opacity: 0.35;
        transform: scale(1);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.04);
    }
}

/* ==========================================================
   RESPONSIVO
   ========================================================== */

@media (max-width: 767px) {
    .ef-first-step {
        padding: 64px 16px;
    }

    .ef-first-step .ef-home-shell {
        padding: 44px 22px;
        border-radius: 18px;
    }

    .ef-first-step h2 {
        font-size: 32px;
        line-height: 1.05;
    }

    .ef-first-step p {
        font-size: 15px;
    }

    .ef-first-step ul {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .ef-first-step li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ef-first-step {
        padding: 52px 12px;
    }

    .ef-first-step .ef-home-shell {
        padding: 36px 18px;
    }

    .ef-first-step span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .ef-first-step h2 {
        font-size: 28px;
    }
}