* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top, rgba(201, 155, 82, 0.10), transparent 35%),
        linear-gradient(180deg, #090909 0%, #111214 100%);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.bg-glow {
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    top: -120px;
    left: -100px;
    background: #d6a24b;
}

.glow-2 {
    bottom: -140px;
    right: -100px;
    background: #ffffff;
    opacity: 0.06;
}

.page-wrap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 18px 40px;
    position: relative;
    z-index: 2;
}

.hero-top {
    text-align: center;
    margin-bottom: 22px;
    animation: fadeUp 0.5s ease;
}

.logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 14px;
    display: block;
    filter: drop-shadow(0 10px 26px rgba(0,0,0,0.45));
}

.subtitulo {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.6;
}

.card-form {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 22px;
    box-shadow:
        0 16px 60px rgba(0,0,0,0.34),
        inset 0 1px 0 rgba(255,255,255,0.05);
    animation: fadeUp 0.6s ease;
}

.progress-box {
    margin-bottom: 22px;
}

.progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 16%;
    border-radius: 999px;
    background: linear-gradient(90deg, #c8933d 0%, #f2d084 100%);
    box-shadow: 0 0 16px rgba(218, 172, 93, 0.35);
    transition: width 0.35s ease;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(210, 162, 84, 0.12);
    border: 1px solid rgba(210, 162, 84, 0.22);
    color: #f3cb7b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.4px;
}

.descricao-etapa {
    margin: 0 0 22px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.6;
}

.campo-group {
    margin-bottom: 16px;
}

.campo-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.86);
    font-weight: 600;
}

input {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
}

input::placeholder {
    color: rgba(255,255,255,0.42);
}

input:focus {
    border-color: rgba(219, 172, 90, 0.9);
    box-shadow: 0 0 0 4px rgba(219, 172, 90, 0.12);
    background: rgba(255,255,255,0.09);
}

button {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 17px 18px;
    margin-top: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: #111;
    background: linear-gradient(90deg, #c8933d 0%, #f2d084 100%);
    box-shadow: 0 14px 28px rgba(203, 150, 62, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(203, 150, 62, 0.28);
}

button:active {
    transform: translateY(0);
    opacity: 0.96;
}

.opcoes-lista {
    display: grid;
    gap: 12px;
}

.opcao {
    width: 100%;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    transition: all 0.22s ease;
    font-size: 15px;
    line-height: 1.45;
}

.opcao:hover {
    transform: translateY(-1px);
    border-color: rgba(214, 169, 91, 0.60);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.opcao-seta {
    flex-shrink: 0;
    color: #f1c876;
    font-size: 24px;
    line-height: 1;
}

.status-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.status-card {
    width: 100%;
    max-width: 650px;
    text-align: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 26px;
    padding: 34px 24px;
    box-shadow: 0 16px 60px rgba(0,0,0,0.34);
}

.status-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 38px;
    font-weight: 900;
}

.status-icon.success {
    background: radial-gradient(circle at center, rgba(83, 206, 114, 0.24), rgba(83, 206, 114, 0.08));
    border: 1px solid rgba(83, 206, 114, 0.35);
    color: #8bffac;
}

.status-icon.wait {
    background: radial-gradient(circle at center, rgba(219, 172, 90, 0.24), rgba(219, 172, 90, 0.08));
    border: 1px solid rgba(219, 172, 90, 0.35);
    color: #f0c878;
}

.status-title {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.1;
    color: #fff;
}

.status-text {
    margin: 0 auto 18px;
    max-width: 520px;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.7;
}

.status-mini {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin-top: 8px;
}

.loader-line {
    width: 100%;
    max-width: 320px;
    height: 10px;
    margin: 22px auto 0;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
}

.loader-line span {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #c8933d 0%, #f2d084 100%);
    animation: loadingBar 3s linear forwards;
}

@keyframes loadingBar {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .page-wrap {
        padding: 18px 14px 28px;
    }

    .logo {
        max-width: 250px;
        margin-bottom: 10px;
    }

    .subtitulo {
        font-size: 14px;
        line-height: 1.5;
    }

    .card-form {
        border-radius: 20px;
        padding: 18px 16px;
    }

    h2 {
        font-size: 24px;
    }

    .descricao-etapa {
        font-size: 14px;
        margin-bottom: 18px;
    }

    input {
        font-size: 16px;
        padding: 15px 16px;
    }

    button {
        font-size: 16px;
        padding: 16px;
        border-radius: 14px;
    }

    .opcao {
        padding: 16px 15px;
        border-radius: 16px;
        font-size: 14px;
    }

    .status-card {
        padding: 28px 18px;
        border-radius: 22px;
    }

    .status-title {
        font-size: 28px;
    }

    .status-text {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .page-wrap {
        padding: 14px 12px 24px;
    }

    .hero-top {
        margin-bottom: 16px;
    }

    .logo {
        max-width: 220px;
    }

    h2 {
        font-size: 22px;
    }

    .progress-top {
        font-size: 12px;
    }

    .step-badge {
        font-size: 11px;
        padding: 7px 10px;
    }

    .opcao {
        font-size: 13.8px;
    }

    .status-title {
        font-size: 24px;
    }
}