

body.register-page {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* ===================================== */
/* 🔝 HEADER                            */
/* ===================================== */
.register__header {
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;

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

    background: #000;
    z-index: 10;
}

.register__header-title {
    font-size: 16px;
    font-weight: 600;
}

.register__back-btn {
    position: absolute;
    left: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.register__back-btn img {
    width: 20px;
    filter: invert(1);
}

/* ===================================== */
/* 📄 CONTEÚDO                          */
/* ===================================== */
.register__content {
    overflow: hidden;
}

/* ===================================== */
/* 🎬 SLIDER                            */
/* ===================================== */
.register__steps-wrapper {
    height: 100%;

}

.register__steps {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

/* ===================================== */
/* 📱 STEP                             */
/* ===================================== */
.register-step {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 16px 16px;
}

/* ===================================== */
/* 📦 INNER                            */
/* ===================================== */
.register-step__inner {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===================================== */
/* 🏷 TEXTO                            */
/* ===================================== */
.register__title {
    font-size: 22px;
    font-weight: 600;
}

.register__subtitle {
    font-size: 14px;
    color: #aaa;
}





/* ===================================================== */
/* 📅 DATE PICKER — FINAL PRO VERSION                    */
/* ----------------------------------------------------- */
/* Estética própria mantida.                             */
/* Abertura/fechamento controlados pelo modalEngine.js.  */
/* Estado oficial global: .is-active                     */
/* Compatibilidade temporária: .active                   */
/* ===================================================== */

.date-picker {
    position: fixed;
    inset: 0;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.25s ease;

    backface-visibility: hidden;
}

/* ===================================================== */
/* ✅ ESTADO ATIVO                                       */
/* ===================================================== */

.date-picker.active,
.date-picker.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ===================================================== */
/* 🌑 OVERLAY                                            */
/* ===================================================== */

.date-picker__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    opacity: 0;
    transition: opacity 0.25s ease;

    will-change: opacity;
    backface-visibility: hidden;
}

.date-picker.active .date-picker__overlay,
.date-picker.is-active .date-picker__overlay {
    opacity: 1;
}

/* ===================================================== */
/* 📦 SHEET                                              */
/* ===================================================== */

.date-picker__sheet {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    max-width: 100%;

    background: #000;

    border-radius: 20px 20px 0 0;

    padding: 10px 16px 20px;

    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
    touch-action: none;

    backface-visibility: hidden;
}

.date-picker.active .date-picker__sheet,
.date-picker.is-active .date-picker__sheet {
    transform: translateY(0);
}

/* ===================================================== */
/* ➖ HANDLE                                             */
/* ===================================================== */

.date-picker__handle {
    width: 40px;
    height: 4px;

    background: #444;
    border-radius: 999px;

    margin: 8px auto 12px;

    cursor: grab;
}

.date-picker__handle:active {
    cursor: grabbing;
}

/* ===================================================== */
/* 📱 SAFE AREA                                          */
/* ===================================================== */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .date-picker__sheet {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* ===================================================== */
/* ♿ REDUCED MOTION                                     */
/* ===================================================== */

@media (prefers-reduced-motion: reduce) {
    .date-picker,
    .date-picker__overlay,
    .date-picker__sheet {
        transition: none;
    }
}


/* ===================================================== */
/* HANDLE                                                */
/* ===================================================== */

.date-picker__handle {
    width: 40px;
    height: 4px;

    background: #444;
    border-radius: 999px;

    margin: 8px auto 12px;
}

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

.date-picker__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;
}

.date-picker__header-icon {
    display: flex;
    align-items: center;
}

.date-picker__icon {
    width: 18px;
    height: 18px;

    filter: invert(1);
    opacity: 0.8;
}

.date-picker__title {
    flex: 1;

    text-align: center;

    font-size: 16px;
    font-weight: 600;

    color: #fff;
}

.date-picker__close {
    background: none;
    border: none;

    color: #aaa;
    font-size: 18px;

    cursor: pointer;
}

/* ===================================================== */
/* 🎡 WHEEL WRAPPER                                      */
/* ===================================================== */

.date-picker__wheel-wrapper {
    position: relative;

    display: flex;
    justify-content: center;
    gap: 16px;

    height: 180px;

    margin-bottom: 20px;

    overflow: hidden;
}

/* ===================================================== */
/* 🎯 WHEEL                                              */
/* ===================================================== */

.date-picker__wheel {
    width: 80px;
    height: 100%;

    overflow-y: auto;

    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    text-align: center;

    scrollbar-width: none;

    overscroll-behavior: contain;
}

.date-picker__wheel::-webkit-scrollbar {
    display: none;
}

/* ===================================================== */
/* 🔢 ITEMS                                              */
/* ===================================================== */

.date-picker__wheel div {
    height: 40px;

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

    scroll-snap-align: center;

    font-size: 16px;
    color: #777;

    transition:
        color 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

/* item ativo */

.date-picker__wheel .active {
    color: #fff;
    font-size: 18px;
    font-weight: 600;

    transform: scale(1.05);
}

/* ===================================================== */
/* 🎯 HIGHLIGHT                                          */
/* ===================================================== */

.date-picker__highlight {
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 40px;

    transform: translateY(-50%);

    border-top: 1px solid #444;
    border-bottom: 1px solid #444;

    background: rgba(255,255,255,0.03);

    pointer-events: none;
}

/* ===================================================== */
/* 🌫 FADE                                               */
/* ===================================================== */

.date-picker__fade-top,
.date-picker__fade-bottom {
    position: absolute;
    left: 0;

    width: 100%;
    height: 50px;

    pointer-events: none;
}

.date-picker__fade-top {
    top: 0;

    background: linear-gradient(
        to bottom,
        #000 0%,
        rgba(0,0,0,0.85) 40%,
        transparent 100%
    );
}

.date-picker__fade-bottom {
    bottom: 0;

    background: linear-gradient(
        to top,
        #000 0%,
        rgba(0,0,0,0.85) 40%,
        transparent 100%
    );
}

/* ===================================================== */
/* 🔘 ACTIONS                                            */
/* ===================================================== */

.date-picker__actions {
    display: flex;
    gap: 10px;
}

.date-picker__btn {
    flex: 1;
    height: 48px;

    border: none;
    border-radius: 10px;

    font-weight: 600;

    cursor: pointer;
}

.date-picker__btn--cancel {
    background: #111;
    color: #aaa;
}

.date-picker__btn--confirm {
    background: #F85909;
    color: #fff;
}

/* ===================================================== */
/* 📱 SAFE AREA                                          */
/* ===================================================== */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .date-picker__sheet {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}



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

@media (max-width: 480px) {

    .date-picker__wheel {
        width: 70px;
    }

    .date-picker__wheel div {
        font-size: 14px;
    }

    .date-picker__wheel .active {
        font-size: 16px;
    }
}






/* ===================================================== */
/* 👤 REGISTER GENDER                                   */
/* ===================================================== */

.register-gender {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 24px;
}


/* ===================================================== */
/* 🔘 OPTION                                             */
/* ===================================================== */

.register-gender__option {
    display: block;
    width: 100%;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}


/* ===================================================== */
/* ❌ INPUT HIDDEN                                       */
/* ===================================================== */

.register-gender__input {
    display: none;
}


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

.register-gender__card {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    min-height: 62px;

    padding: 0 18px;

    background: rgba(255,255,255,0.02);

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

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.15s ease;

    will-change: transform;

    backface-visibility: hidden;
    transform: translateZ(0);
}


/* ===================================================== */
/* 🎯 TOUCH FEEDBACK                                     */
/* ===================================================== */

.register-gender__card:active {
    transform: scale(0.985);
}


/* ===================================================== */
/* 🔘 RADIO                                               */
/* ===================================================== */

.register-gender__radio {
    position: relative;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,0.35);

    flex-shrink: 0;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


/* ===================================================== */
/* 🔸 RADIO INNER                                         */
/* ===================================================== */

.register-gender__radio::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #fff;

    transform:
        translate(-50%, -50%)
        scale(0);

    transition: transform 0.2s ease;
}


/* ===================================================== */
/* 📝 LABEL                                               */
/* ===================================================== */

.register-gender__label {
    font-size: 15px;
    font-weight: 500;
    color: #fff;

    line-height: 1.4;
}


/* ===================================================== */
/* ✅ ACTIVE CARD                                         */
/* ===================================================== */

.register-gender__input:checked
+ .register-gender__card {

    background: rgba(248, 89, 9, 0.08);

    border-color: #F85909;
}


/* ===================================================== */
/* ✅ ACTIVE RADIO                                        */
/* ===================================================== */

.register-gender__input:checked
+ .register-gender__card
.register-gender__radio {

    border-color: #F85909;
    background: #F85909;
}


/* ===================================================== */
/* ✅ ACTIVE INNER DOT                                    */
/* ===================================================== */

.register-gender__input:checked
+ .register-gender__card
.register-gender__radio::after {

    transform:
        translate(-50%, -50%)
        scale(1);
}


/* ===================================================== */
/* ✨ HOVER (WEB)                                         */
/* ===================================================== */

@media (hover: hover) {

    .register-gender__card:hover {

        border-color: rgba(248, 89, 9, 0.5);

        background: rgba(255,255,255,0.03);
    }

}


/* ===================================================== */
/* 📱 RESPONSIVE                                          */
/* ===================================================== */

@media (max-width: 480px) {

    .register-gender__card {
        min-height: 58px;
        border-radius: 16px;
    }

    .register-gender__label {
        font-size: 14px;
    }

}




