/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/cadastro/cadastro.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
.cadastro-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(216, 255, 62, 0.09), transparent 30%),
        radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.08), transparent 28%),
        var(--bg);
    color: var(--text);
    padding: 72px 0;
}

.cadastro-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.cadastro-hero {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 48px;
}

.cadastro-badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(216, 255, 62, 0.1);
    border: 1px solid rgba(216, 255, 62, 0.18);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cadastro-hero h1 {
    margin: 20px 0 16px;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.cadastro-hero p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.cadastro-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    grid-gap: 24px;
    gap: 24px;
    align-items: start;
}

.cadastro-side,
.cadastro-form-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.cadastro-side h2 {
    margin: 0 0 18px;
    font-size: 1.5rem;
}

.cadastro-profile-list {
    display: grid;
    grid-gap: 12px;
    gap: 12px;
}

.cadastro-profile-list button {
    text-align: left;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-radius: 18px;
    padding: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.cadastro-profile-list button:hover,
.cadastro-profile-list button.active {
    border-color: rgba(216, 255, 62, 0.35);
    background: rgba(216, 255, 62, 0.08);
}

.cadastro-profile-list strong {
    display: block;
    margin-bottom: 6px;
}

.cadastro-profile-list span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.cadastro-info-box {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(216, 255, 62, 0.18);
    background: rgba(216, 255, 62, 0.06);
}

.cadastro-info-box h3 {
    margin: 0 0 8px;
    color: var(--primary);
}

.cadastro-info-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.cadastro-login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 800;
}

.cadastro-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.cadastro-form-header span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cadastro-form-header h2 {
    margin: 10px 0 0;
    font-size: 2rem;
}

.cadastro-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--primary);
    border: 1px solid rgba(216,255,62,0.22);
    background: rgba(216,255,62,0.08);
    font-weight: 700;
}

.cadastro-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px;
    gap: 18px;
}

.cadastro-form label {
    display: grid;
    grid-gap: 8px;
    gap: 8px;
}

.cadastro-form label span {
    font-weight: 800;
    color: var(--text);
}

.cadastro-form input,
.cadastro-form select {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    padding: 0 14px;
    outline: none;
}

.cadastro-form input:focus,
.cadastro-form select:focus {
    border-color: rgba(216,255,62,0.35);
    box-shadow: 0 0 0 4px rgba(216,255,62,0.08);
}

.cadastro-field-full {
    grid-column: 1 / -1;
}

.cadastro-form button {
    grid-column: 1 / -1;
    height: 54px;
    border: 0;
    border-radius: 16px;
    background: var(--primary);
    color: var(--primary-dark);
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.cadastro-form button:hover {
    transform: translateY(-1px);
}

/* RESPONSIVO - SOMENTE MOBILE / WEBVIEW */

@media (max-width: 900px) {
    .cadastro-page {
        min-height: 100dvh;
        padding: 14px;
        overflow-x: hidden;
    }

    .cadastro-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .cadastro-hero {
        max-width: 100%;
        margin: 0 0 16px;
        text-align: center;
    }

    .cadastro-badge {
        padding: 6px 12px;
        font-size: 10px;
    }

    .cadastro-hero h1 {
        margin: 12px 0 0;
        font-size: clamp(1.65rem, 8vw, 2.15rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .cadastro-hero p {
        display: none;
    }

    .cadastro-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .cadastro-side,
    .cadastro-form-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
        padding: 16px;
        border-radius: 22px;
        box-shadow: none;
    }

    .cadastro-side {
        order: 1;
    }

    .cadastro-form-card {
        order: 2;
    }

    .cadastro-side h2 {
        margin: 0 0 12px;
        font-size: 1.1rem;
        text-align: center;
    }

    .cadastro-profile-list {
        display: grid;
        grid-gap: 8px;
        gap: 8px;
    }

        .cadastro-profile-list button {
            width: 100%;
            padding: 12px;
            border-radius: 14px;
        }

        .cadastro-profile-list strong {
            margin-bottom: 3px;
            font-size: 14px;
        }

        .cadastro-profile-list span {
            font-size: 12px;
            line-height: 1.35;
        }

    .cadastro-info-box {
        margin-top: 14px;
        padding: 12px;
        border-radius: 14px;
    }

        .cadastro-info-box h3 {
            margin-bottom: 4px;
            font-size: 14px;
        }

        .cadastro-info-box p {
            font-size: 12px;
            line-height: 1.45;
        }

    .cadastro-login-link {
        min-height: 44px;
        margin-top: 14px;
        border-radius: 14px;
        font-size: 13px;
    }

    .cadastro-form-header {
        margin-bottom: 16px;
        text-align: center;
    }

        .cadastro-form-header span {
            font-size: 10px;
        }

        .cadastro-form-header h2 {
            margin-top: 6px;
            font-size: 1.35rem;
        }

    .cadastro-message {
        margin-bottom: 14px;
        padding: 12px;
        border-radius: 14px;
        font-size: 13px;
    }

    .cadastro-form {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        grid-gap: 12px;
        gap: 12px;
    }

        .cadastro-form label {
            width: 100%;
            gap: 5px;
        }

            .cadastro-form label span {
                font-size: 13px;
            }

    .cadastro-field-full {
        grid-column: 1;
    }

    .cadastro-form input,
    .cadastro-form select {
        width: 100%;
        min-height: 48px;
        box-sizing: border-box;
        border-radius: 14px;
        font-size: 16px;
    }

    .cadastro-form button {
        width: 100%;
        height: 52px;
        box-sizing: border-box;
        border-radius: 16px;
        font-size: 16px;
    }

    .cadastro-whatsapp,
    .whatsapp-button,
    .floating-whatsapp,
    .whatsapp-float,
    .whatsapp-fixed,
    .btn-whatsapp {
        display: none !important;
    }

    .cadastro-page.webview .cadastro-login-link,
    body.webview .cadastro-login-link {
        display: none !important;
    }
}


.cadastro-legal-box {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.cadastro-legal-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    cursor: pointer;
}

.cadastro-legal-check input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    margin-top: 2px;
    padding: 0;
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.cadastro-legal-check span {
    font-size: 14px;
    line-height: 1.5;
}

.cadastro-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cadastro-legal-links a {
    color: #f97316;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
}
