/* ==========================================================
   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(#000, #000) padding-box, var(--ef-gold-effect) border-box;
    border-radius: 22px;
    padding: 60px 40px;
    border: 2px solid var(--ef-gold-base);
    box-shadow:
        0 0 0 1px rgba(var(--ef-gold-rgb), 0.2),
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 80px rgba(var(--ef-gold-rgb), 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(var(--ef-gold-rgb), 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: var(--ef-gold-base);
    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(var(--ef-gold-rgb), .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(var(--ef-gold-rgb), .18), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}

.ef-first-step span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ef-gold-base);
    box-shadow: 0 0 10px rgba(var(--ef-gold-rgb), 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: #fff;
}

.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: background 0.5s ease, border-color 0.5s ease, transform 0.5s ease;
}

/* bolinha verde */
.ef-first-step li::before {
    content: "✓";

    width: 18px;
    height: 18px;
    border-radius: 999px;

    display: grid;
    place-items: center;

    background: var(--ef-gold-effect);
    border: 1px solid var(--ef-gold-base);

    color: #000;
    font-weight: 800;
    font-size: 11px;

    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, .35),
        0 0 0 2px rgba(var(--ef-gold-rgb), .18),
        0 2px 6px rgba(var(--ef-gold-rgb), .45);

    flex: 0 0 18px;
}

.ef-first-step li:hover {
    transform: translateY(-3px) scale(1.03);

    background: rgba(var(--ef-gold-rgb), 0.08);
    border-color: rgba(var(--ef-gold-rgb), 0.35);

    box-shadow:
        0 6px 20px rgba(var(--ef-gold-rgb), 0.25),
        0 0 0 1px rgba(var(--ef-gold-rgb), 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: left;
    }
}

@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;
    }
}
