:root {
    --bg: #eef2f2;
    --surface: #ffffff;
    --surface-soft: #f6faf8;
    --primary: #0ca35d;
    --primary-dark: #087f48;
    --secondary: #123eab;
    --text: #16312b;
    --muted: #62827a;
    --border: #cfe1db;
    --danger: #b72f41;
    --shadow: 0 16px 40px rgba(12, 58, 48, 0.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family, Arial, Helvetica, sans-serif);
    background: linear-gradient(180deg, #f4f7f8 0%, #edf3f2 100%);
    color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family, var(--font-family, Arial, Helvetica, sans-serif));
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.landing-shell,
.wizard-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 48px;
}

.hero-card,
.plan-highlight,
.wizard-header,
.wizard-root {
    background: var(--surface);
    border: 1px solid rgba(12, 163, 93, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    padding: 36px;
    min-height: 420px;
    align-items: stretch;
}

.hero-content,
.operator-banner,
.plan-highlight__copy,
.plan-highlight__card {
    display: flex;
    flex-direction: column;
}

.hero-content h1,
.wizard-header h1,
.plan-highlight__copy h2 {
    margin: 12px 0;
    line-height: 1.1;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    max-width: 12ch;
}

.hero-content p,
.wizard-header p {
    color: var(--muted);
    max-width: 58ch;
}

.hero-badge,
.section-label,
.price-pill,
.chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
}

.hero-badge,
.section-label {
    padding: 8px 14px;
    background: rgba(12, 163, 93, 0.1);
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-actions,
.header-actions,
.form-actions,
.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.card-actions form {
    margin: 0;
}

.hero-actions {
    margin: 22px 0;
}

.hero-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--muted);
}

.hero-contact strong {
    font-size: 1.4rem;
    color: var(--text);
}

.operator-banner {
    justify-content: flex-end;
    padding: 28px;
    color: #ffffff;
    background: linear-gradient(145deg, #0ba05d 0%, #1249ba 100%);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    aspect-ratio: 4 / 5;
}

.operator-banner__image,
.wizard-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.operator-banner__content,
.wizard-banner__content {
    position: relative;
    z-index: 2;
}

.operator-banner.has-media::before,
.wizard-banner.has-media::before {
    width: auto;
    height: auto;
    inset: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(8, 20, 41, 0.08) 0%, rgba(8, 20, 41, 0.72) 100%);
}

.operator-banner.has-media::after,
.wizard-banner.has-media::after {
    display: none;
}

.operator-banner::before,
.operator-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.operator-banner::before {
    width: 220px;
    height: 220px;
    top: -70px;
    right: -60px;
}

.operator-banner::after {
    width: 140px;
    height: 140px;
    bottom: -50px;
    left: -20px;
}

.operator-tag {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.operator-banner h2 {
    margin: 18px 0 12px;
    font-size: 2rem;
    color: #ffffff;
}

.operator-banner p,
.operator-banner small {
    position: relative;
    z-index: 1;
}

.operator-banner small {
    color: rgba(255, 255, 255, 0.88);
}

.plan-highlight {
    margin-top: 28px;
    padding: 36px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.plan-highlight__copy h2 {
    font-size: 2.2rem;
    margin: 14px 0;
    color: var(--text);
}

.plan-highlight__copy p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--muted);
}

.plan-highlight__card {
    padding: 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 8px 20px rgba(0,0,0,0.03);
}

.price-pill {
    padding: 10px 14px;
    background: #e6f8ef;
    color: var(--primary-dark);
    font-weight: 700;
}

.plan-meta {
    margin: 0 0 8px 0;
    padding-left: 0;
    color: var(--muted);
    display: grid;
    gap: 12px;
    list-style: none;
}

.plan-meta li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.plan-meta li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(12, 163, 93, 0.15);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 900;
}

.btn {
    border: 0;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1297d6 100%);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid rgba(12, 163, 93, 0.35);
}

.btn-muted {
    background: #eff4f3;
    color: var(--text);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.wizard-header {
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.wizard-header__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
    flex: 1;
}

.wizard-header__intro > div:first-child {
    min-width: 0;
}

.wizard-header .section-label {
    margin-bottom: 2px;
    padding: 6px 12px;
    font-size: 0.82rem;
}

.wizard-header h1 {
    margin: 0;
    font-size: clamp(1.28rem, 1.9vw, 1.75rem);
}

.wizard-header p {
    margin: 2px 0 0;
    font-size: 0.82rem;
    max-width: 52ch;
}

.wizard-flow {
    display: grid;
    gap: 0;
}

.wizard-shell--compacto {
    width: min(1040px, calc(100% - 32px));
}

.wizard-layout--compacto {
    background: linear-gradient(180deg, #f8fbfc 0%, #eef4f7 100%);
}

.wizard-header--compacto {
    padding: 12px 16px;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 20px;
}

.wizard-layout--compacto .stepper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin: 18px auto;
}

.wizard-layout--compacto .wizard-root {
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 20px;
}

.wizard-header--banner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: stretch;
}

.wizard-layout--banner {
    background:
        radial-gradient(circle at top right, rgba(18, 62, 171, 0.08), transparent 28%),
        linear-gradient(180deg, #eef5f7 0%, #edf3f2 100%);
}

.wizard-shell--banner {
    width: min(1260px, calc(100% - 32px));
}

.wizard-flow--banner {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.wizard-layout--banner .stepper {
    margin: 0;
    position: sticky;
    top: 24px;
    grid-template-columns: 1fr;
    padding: 18px;
    background: var(--surface);
    border: 1px solid rgba(12, 163, 93, 0.12);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.wizard-layout--banner .wizard-root {
    min-height: 0;
}

.wizard-banner {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 24px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(145deg, #0ba05d 0%, #1249ba 100%);
    display: flex;
    align-items: end;
    aspect-ratio: 8 / 5;
}

.wizard-banner::before,
.wizard-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.wizard-banner::before {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -30px;
}

.wizard-banner::after {
    width: 120px;
    height: 120px;
    left: -20px;
    bottom: -20px;
}

.wizard-banner h2,
.wizard-banner p {
    color: #ffffff;
}

.wizard-banner h2 {
    margin: 16px 0 12px;
}

.wizard-layout--padrao .wizard-header {
    align-items: center;
}

.wizard-layout--padrao .wizard-header p {
    display: none;
}

.wizard-layout--padrao .wizard-root {
    padding: 18px 22px;
}

.wizard-layout--padrao .stepper {
    width: 100%;
    margin: 8px 0 12px;
}

.wizard-layout--padrao .wizard-flow {
    width: 100%;
}

.stepper {
    margin: 8px 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 2px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 124px;
    min-width: 124px;
}

.step-index {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #d9e5e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--muted);
}

.step.active {
    border-color: rgba(18, 62, 171, 0.3);
}

.step.active .step-index {
    background: var(--secondary);
    color: #ffffff;
}

.step.complete .step-index {
    background: var(--primary);
    color: #ffffff;
}

.step-label {
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.15;
}

.wizard-root {
    padding: 10px 14px;
    width: 100%;
    max-width: none;
    margin: 0;
}

.simulation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 260px;
    gap: 14px;
    align-items: start;
}

.simulation-side {
    display: grid;
    gap: 10px;
}

.simulation-side--compact {
    align-content: start;
}

.info-grid {
    display: grid;
    gap: 12px;
}

.info-card {
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fcfffe 0%, #f1f7f5 100%);
    border: 1px solid var(--border);
}

.info-card--compact {
    padding: 8px 10px;
}

.info-card h3,
.info-card h4 {
    margin: 0 0 8px;
}

.info-card p,
.info-card li {
    color: var(--muted);
}

.info-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.summary-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.summary-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef6f2;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.78rem;
}

.quote-inline-summary {
    margin-bottom: 10px;
}

.step-panel > h2 {
    margin: 0 0 4px;
    font-size: 1.08rem;
}

.step-panel > p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.grid {
    display: grid;
    gap: 16px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-compact-fit {
    gap: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #b5d3c8;
    background: #fcfefd;
}

.field textarea {
    min-height: 82px;
    resize: vertical;
}

.field.has-error label {
    color: var(--danger);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
textarea.has-error,
.dropzone.has-error {
    border-color: #de6677;
    background: #fff5f7;
    box-shadow: 0 0 0 3px rgba(183, 47, 65, 0.12);
}

.has-error-block {
    border-color: #de6677 !important;
    box-shadow: 0 0 0 3px rgba(183, 47, 65, 0.1);
}

.has-error-choice {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #de6677;
    background: #fff5f7;
 }

.has-error-choice label {
    color: var(--danger);
}

.helper {
    margin-top: -4px;
    color: var(--muted);
    font-size: 0.82rem;
}

.checkbox-row,
.radio-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.checkbox-row label,
.radio-row label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.summary-card,
.empty-card,
.upload-card,
.verification-card,
.health-question,
.review-table {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-soft);
}

.summary-card,
.verification-card,
.upload-card,
.empty-card {
    padding: 12px;
}

.summary-card--form {
    padding: 14px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.plans-headline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfffd 0%, #f0f8f4 100%);
    border: 1px solid var(--border);
}

.plan-card {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.plan-card.selected {
    border-color: rgba(18, 62, 171, 0.45);
    box-shadow: 0 8px 30px rgba(18, 62, 171, 0.12);
}

.plan-card h3 {
    margin: 0;
}

.plan-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.plan-card .btn,
.plan-card .btn-full {
    margin-top: auto;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.chip {
    padding: 7px 12px;
    background: #edf2ff;
    color: var(--secondary);
    font-size: 0.84rem;
    font-weight: 700;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #dce8e4;
}

.table thead {
    background: #123eab;
    color: #ffffff;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.health-list {
    display: grid;
    gap: 16px;
}

.health-person-grid {
    display: grid;
    gap: 18px;
    align-items: start;
}

.health-person-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.health-person-grid--cols-1 {
    grid-template-columns: 1fr;
}

.health-person-card {
    height: 100%;
}

.health-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.health-question {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.upload-card h3,
.summary-card h3,
.verification-card h3 {
    margin-top: 0;
}

.upload-list {
    display: grid;
    gap: 14px;
}

.upload-item {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    border: 1px dashed #9dc7b7;
    background: #ffffff;
}

.dropzone {
    padding: 18px;
    border-radius: 14px;
    border: 1px dashed #98c7b5;
    text-align: center;
    color: var(--muted);
    background: #fbfefd;
}

.dropzone.dragging {
    background: #edf8f3;
    border-color: var(--primary);
    color: var(--primary-dark);
}

.status-list {
    display: grid;
    gap: 8px;
}

.status-item {
    padding: 12px 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #dfeae6;
}

.message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.message.error {
    background: #feeef1;
    color: var(--danger);
    border: 1px solid #f8ced5;
}

.message.success {
    background: #e8f8ef;
    color: var(--primary-dark);
    border: 1px solid #bee3cf;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(14, 24, 39, 0.48);
}

.modal-card {
    width: min(100%, 720px);
    max-height: min(80vh, 720px);
    overflow: auto;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #ead2d7;
    box-shadow: 0 30px 60px rgba(14, 24, 39, 0.28);
}

.modal-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #edf0f2;
}

.modal-card__head h3 {
    margin: 0;
}

.modal-card__body {
    padding: 18px 20px 22px;
}

.modal-list {
    margin: 14px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.modal-list li {
    color: var(--text);
}

.inline-code {
    font-family: "Courier New", Courier, monospace;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.final-card {
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fbfffd 0%, #edf7f2 100%);
    border: 1px solid #cce3d7;
}

.muted {
    color: var(--muted);
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.admin-login-card {
    width: min(100%, 460px);
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.admin-body {
    background: #f3f6f9;
}

.admin-dashboard {
    width: min(100% - 32px, 1360px);
    margin: 24px auto 40px;
    display: block;
}

.admin-sidebar {
    display: grid;
    gap: 18px;
    padding: 24px 28px;
    border-radius: 20px;
    background: #ffffff;
    color: var(--text);
    border: 1px solid #d9e3ea;
    box-shadow: 0 8px 22px rgba(30, 52, 84, 0.06);
    margin-bottom: 20px;
}

.admin-sidebar .section-label {
    color: var(--primary);
}

.admin-sidebar__brand h1,
.admin-topbar h2 {
    margin: 10px 0 10px;
}

.admin-sidebar__brand p,
.admin-topbar p {
    margin: 0;
}

.admin-sidebar__brand p {
    color: var(--muted);
}

.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-nav__link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text);
    background: #f4f7fb;
    border: 1px solid #d9e3ea;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.admin-nav__link:hover {
    background: #ebf4ef;
    border-color: #b9d8c6;
}

.admin-nav__link.is-active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.admin-sidebar__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-sidebar__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-main {
    display: grid;
    gap: 22px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
    padding: 24px 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #d9e3ea;
    box-shadow: 0 8px 22px rgba(30, 52, 84, 0.06);
}

.admin-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.admin-stat-card {
    padding: 22px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #d9e3ea;
    box-shadow: 0 6px 18px rgba(30, 52, 84, 0.05);
}

.admin-stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 2rem;
    line-height: 1;
}

.admin-stat-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.admin-stat-card__label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef6f2;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-section {
    display: grid;
    gap: 16px;
}

.admin-panel {
    padding: 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #d9e3ea;
    box-shadow: 0 8px 22px rgba(30, 52, 84, 0.06);
}

.admin-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 2px;
}

.admin-section__head h2 {
    margin: 0 0 8px;
}

.admin-section__head p {
    margin: 0;
    color: var(--muted);
}

.admin-grid,
.admin-stack {
    display: grid;
    gap: 18px;
}

.admin-grid {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
}

.admin-grid--products {
    grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
    align-items: start;
}

.admin-stack > .summary-card,
.admin-grid > .summary-card,
.admin-grid--products > .summary-card {
    background: #fcfdfd;
    border: 1px solid #e3eaef;
    box-shadow: none;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-toolbar h3 {
    margin: 0 0 4px;
}

.admin-inline-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.admin-inline-form input,
.admin-inline-form select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #b5d3c8;
    background: #ffffff;
}

.admin-inline-form--delete {
    grid-template-columns: auto;
    justify-content: end;
    margin-top: -6px;
}

.admin-inline-form--range {
    grid-template-columns: repeat(3, minmax(120px, 1fr)) auto;
}

.admin-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 700;
}

.field-checkbox {
    display: flex;
    align-items: end;
}

.field-checkbox label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
}

.admin-preview-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-image-preview {
    display: grid;
    gap: 12px;
}

.admin-image-preview img {
    width: 100%;
    min-height: 180px;
    max-height: 260px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #f0f4f5;
}

@media (max-width: 960px) {
    .hero-card,
    .plan-highlight,
    .wizard-header,
    .review-columns {
        grid-template-columns: 1fr;
    }

    .wizard-header {
        display: grid;
    }

    .admin-dashboard,
    .admin-overview,
    .simulation-layout,
    .admin-grid--products {
        grid-template-columns: 1fr;
    }

    .wizard-header--banner,
    .wizard-flow--banner,
    .admin-preview-grid {
        grid-template-columns: 1fr;
    }

    .wizard-layout--banner .stepper {
        position: static;
        margin-bottom: 20px;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .landing-shell,
    .wizard-shell {
        width: min(100% - 24px, 1180px);
        padding-top: 18px;
    }

    .hero-card,
    .plan-highlight,
    .wizard-root {
        padding: 20px;
    }

    .modal-card__head {
        align-items: start;
    }


    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard {
        width: min(100% - 20px, 1360px);
        margin-top: 12px;
    }

    .admin-sidebar,
    .admin-topbar {
        padding: 20px;
    }

    .admin-sidebar__footer,
    .admin-sidebar__actions,
    .admin-nav {
        display: grid;
    }

    .wizard-layout--compacto .stepper {
        max-width: none;
    }

    .wizard-layout--compacto .wizard-root,
    .wizard-header--compacto {
        max-width: none;
    }

    .admin-inline-form,
    .admin-inline-form--range {
        grid-template-columns: 1fr;
    }

    .step {
        flex-basis: 150px;
        min-width: 150px;
    }
}

/* Layout Variants for Home */

/* 1. Clássico (Dividido) - .layout-padrao */
/* Already handles standard styling by default, but let's refine the shadows and look to be super modern */
.layout-padrao .hero-card {
    background: #ffffff;
    border: none;
    box-shadow: 0 20px 50px rgba(12, 163, 93, 0.08);
}
.layout-padrao .operator-banner {
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

/* 2. Imersivo (Fundo Integral) - .layout-imersivo */
.layout-imersivo .landing-shell {
    width: 100%;
    max-width: none;
    min-height: max(100vh, 600px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(400px, 0.8fr);
    align-items: center;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    position: relative;
    gap: 40px;
    padding: 40px 8%;
}
.layout-imersivo .landing-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 14, 23, 0.95) 0%, rgba(8, 14, 23, 0.7) 40%, rgba(8, 14, 23, 0.1) 100%);
    pointer-events: none;
}
.layout-imersivo .hero-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-height: auto;
    position: relative;
    z-index: 2;
    display: block;
}
.layout-imersivo .hero-card::before {
    display: none;
}
.layout-imersivo .hero-content {
    max-width: 650px;
}
.layout-imersivo .hero-content h1, 
.layout-imersivo .hero-content p,
.layout-imersivo .hero-contact span,
.layout-imersivo .hero-contact strong {
    color: #ffffff;
}
.layout-imersivo .hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.layout-imersivo .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
}
.layout-imersivo .operator-banner {
    display: none;
}
.layout-imersivo .plan-highlight {
    margin: 0;
    position: relative;
    z-index: 5;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1024px) {
    .layout-imersivo .landing-shell {
        grid-template-columns: 1fr;
        padding: 60px 5%;
        background-position: top right;
    }
    .layout-imersivo .landing-shell::before {
        background: linear-gradient(180deg, rgba(8, 14, 23, 0.95) 0%, rgba(8, 14, 23, 0.7) 40%, rgba(8, 14, 23, 0.4) 100%);
    }
    .layout-imersivo .plan-highlight {
        margin-top: 10px;
    }
}

/* 3. Alta Conversão (Premium) - .layout-venda_direta */
.layout-venda_direta {
    background: #0d1117;
    color: #e6edf3;
}
.layout-venda_direta h1, .layout-venda_direta h2, .layout-venda_direta h3,
.layout-venda_direta .hero-contact strong {
    color: #ffffff;
}
.layout-venda_direta .hero-card {
    background: #161b22;
    border: 1px solid #30363d;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.layout-venda_direta .hero-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(12, 163, 93, 0.05) 0%, transparent 40%);
    pointer-events: none;
}
.layout-venda_direta .hero-content p, .layout-venda_direta .plan-meta li {
    color: #8b949e;
}
.layout-venda_direta .hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    background: linear-gradient(90deg, #4ade80 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.layout-venda_direta .hero-badge {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}
.layout-venda_direta .hero-contact span {
    color: #8b949e;
}
.layout-venda_direta .operator-banner {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: scale(1.02);
    border: 1px solid #30363d;
}
.layout-venda_direta .plan-highlight {
    background: #0d1117;
    border: 1px solid #30363d;
}
.layout-venda_direta .plan-highlight__copy p {
    color: #8b949e;
}
.layout-venda_direta .plan-highlight__card {
    background: #161b22;
    border: 1px solid #30363d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.layout-venda_direta .price-pill {
    background: #4ade80;
    color: #000;
}
.layout-venda_direta .btn-outline {
    border-color: #30363d;
    color: #e6edf3;
}
.layout-venda_direta .btn-outline:hover {
    background: #30363d;
}

/* 4. Elegante Tech (Dark & Neon) - .layout-elegante_tech */
.layout-elegante_tech {
    background: #030712; 
    color: #d1d5db;
}
.layout-elegante_tech .landing-shell {
    padding-top: 60px;
}
.layout-elegante_tech .hero-card {
    grid-template-columns: 1fr;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.layout-elegante_tech .hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.layout-elegante_tech .hero-content h1 {
    font-size: clamp(2.5em, 6vw, 4.8rem);
    color: #f9fafb;
    font-weight: 800;
    line-height: 1.05;
}
.layout-elegante_tech .hero-content p {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 100%;
}
.layout-elegante_tech .hero-contact strong {
    color: #f9fafb;
}
.layout-elegante_tech .hero-contact span {
    color: #9ca3af;
}
.layout-elegante_tech .hero-actions {
    justify-content: center;
    margin: 36px 0 50px;
}
.layout-elegante_tech .operator-banner {
    border-radius: 32px;
    min-height: 520px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 80px rgba(16, 185, 129, 0.15);
}
.layout-elegante_tech .plan-highlight {
    background: #111827;
    border-radius: 30px;
    border: 1px solid #1f2937;
    margin-top: 80px;
    padding: 40px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.layout-elegante_tech .plan-highlight__copy h2 {
    color: #f9fafb;
    font-size: 2.2rem;
}
.layout-elegante_tech .plan-highlight__copy p, .layout-elegante_tech .plan-meta li {
    color: #9ca3af;
}
.layout-elegante_tech .plan-highlight__card {
    background: #1f2937;
    border: 1px solid #374151;
}
.layout-elegante_tech .price-pill, .layout-elegante_tech .section-label, .layout-elegante_tech .hero-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
