:root {
    --sumer-blue-950: #061a38;
    --sumer-blue-900: #0a2854;
    --sumer-blue-700: #1656a6;
    --sumer-gold: #f2c94c;
    --sumer-gold-deep: #9a7300;
    --netcom-orange: var(--sumer-blue-700);
    --netcom-orange-dark: var(--sumer-blue-900);
    --netcom-blue: var(--sumer-gold-deep);
    --netcom-blue-dark: #061a38;
    --netcom-ink: #12213a;
    --netcom-muted: #66758a;
    --netcom-line: rgba(16, 59, 120, 0.14);
    --netcom-surface: #ffffff;
    --netcom-background: #f3f7fc;
    --netcom-shadow: 0 24px 70px rgba(6, 26, 56, 0.14);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
    background:
        radial-gradient(circle at 12% 18%, rgba(242, 201, 76, 0.15), transparent 27rem),
        radial-gradient(circle at 88% 80%, rgba(22, 86, 166, 0.13), transparent 31rem),
        var(--netcom-background);
    color: var(--netcom-ink);
    font-family: "Manrope", sans-serif;
    margin: 0;
    min-height: 100vh;
}

body::before {
    background-image: linear-gradient(rgba(15, 77, 176, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 77, 176, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

h1, h2, h3, strong { font-family: "Sora", sans-serif; }

a { color: inherit; }

.customer-header,
.dashboard-header {
    align-items: center;
    background: linear-gradient(115deg, var(--netcom-orange-dark), var(--netcom-orange));
    box-shadow: 0 14px 40px rgba(6, 26, 56, 0.24);
    display: flex;
    justify-content: space-between;
    min-height: 76px;
    padding: 10px max(24px, calc((100vw - 1180px) / 2));
}

.customer-brand { display: inline-flex; }
.customer-brand img { display: block; height: 52px; width: auto; }
.customer-install-button{align-items:center;background:#fff;border:1px solid rgba(255,255,255,.92);border-radius:999px;box-shadow:0 8px 24px rgba(122,42,5,.2);color:var(--netcom-orange);cursor:pointer;display:inline-flex;font:800 .75rem "Manrope",sans-serif;gap:8px;margin-left:auto;padding:10px 15px;transition:background .2s ease,box-shadow .2s ease,transform .2s ease}.customer-install-button:hover{background:#fff4ec;box-shadow:0 10px 30px rgba(122,42,5,.28);transform:translateY(-1px)}.customer-install-help,.customer-installed-notice{align-items:flex-start;background:#fff7e9;border:1px solid #f1d9b4;border-radius:16px;display:flex;gap:12px;margin:20px auto;max-width:680px;padding:16px}.customer-install-help[hidden],.customer-installed-notice[hidden]{display:none}.customer-install-help>i{color:var(--netcom-orange);margin-top:3px}.customer-install-help strong,.customer-install-help p{display:block}.customer-install-help p{color:var(--netcom-muted);font-size:.78rem;line-height:1.5;margin:4px 0 0}.customer-installed-notice{background:#eaf9f2;border-color:#bde8d4;color:#167b50;font-size:.78rem;font-weight:800}

/* Instalação PWA disponível nas páginas de login e detalhes da Central */
.customer-install-button.install-ready {
    animation: customerInstallPulse 2s ease-in-out infinite;
    background: linear-gradient(135deg, #fff, #fff4ec);
    border-color: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 24px rgba(122, 42, 5, .22);
    color: var(--netcom-orange);
}
.customer-install-button.install-ready i {
    animation: customerInstallArrow 1.4s ease-in-out infinite;
    font-size: .9rem;
}
.customer-install-button.install-ready:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(122, 42, 5, .3);
    transform: translateY(-1px);
}
@keyframes customerInstallPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(122, 42, 5, .22); }
    50% { box-shadow: 0 8px 32px rgba(255, 255, 255, .48); }
}
@keyframes customerInstallArrow {
    0%, 100% { transform: translateY(-1px); }
    50% { transform: translateY(2px); }
}
@media (prefers-reduced-motion: reduce) {
    .customer-install-button.install-ready,
    .customer-install-button.install-ready i { animation: none; }
}

.back-to-site,
.dashboard-header nav a,
.dashboard-header nav button {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: 700 0.86rem "Manrope", sans-serif;
    gap: 8px;
    padding: 10px 16px;
    text-decoration: none;
}

.auth-shell {
    align-items: center;
    display: grid;
    gap: clamp(40px, 8vw, 110px);
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 480px);
    margin: 0 auto;
    max-width: 1180px;
    min-height: calc(100vh - 142px);
    padding: 64px 24px;
}

.auth-intro { max-width: 620px; }
.eyebrow {
    align-items: center;
    color: var(--netcom-orange-dark);
    display: inline-flex;
    font-size: 0.77rem;
    font-weight: 800;
    gap: 8px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.auth-intro h1,
.dashboard-welcome h1 {
    color: var(--netcom-blue-dark);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
    margin: 20px 0;
}

.auth-intro p,
.dashboard-welcome p { color: var(--netcom-muted); font-size: 1.08rem; line-height: 1.8; }

.feature-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.feature-list span {
    align-items: center;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--netcom-line);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 700;
    gap: 8px;
    padding: 10px 14px;
}
.feature-list i { color: var(--netcom-blue); }

.auth-card,
.dashboard-panel,
.summary-card,
.technical-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--netcom-shadow);
}

.auth-card { border-radius: 28px; padding: clamp(26px, 4vw, 42px); position: relative; }
.environment-badge {
    align-items: center;
    background: #edf4ff;
    border-radius: 999px;
    color: var(--netcom-blue);
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 800;
    gap: 7px;
    letter-spacing: 0.09em;
    padding: 7px 10px;
    position: absolute;
    right: 22px;
    text-transform: uppercase;
    top: 22px;
}
.environment-badge span { background: #20b26b; border-radius: 50%; height: 7px; width: 7px; }

.auth-card-heading { align-items: center; display: flex; gap: 15px; margin: 18px 0 28px; }
.auth-card-heading p { color: var(--netcom-muted); font-size: 0.77rem; font-weight: 800; margin: 0 0 4px; text-transform: uppercase; }
.auth-card-heading h2 { font-size: 1.55rem; letter-spacing: -0.03em; margin: 0; }
.auth-icon, .summary-icon {
    align-items: center;
    background: linear-gradient(135deg, var(--netcom-orange), var(--netcom-orange-dark));
    border-radius: 16px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.alert { align-items: flex-start; border-radius: 14px; display: flex; font-size: 0.83rem; gap: 10px; line-height: 1.55; margin: 0 0 22px; padding: 13px 14px; }
.alert-info { background: #eef5ff; color: #174d92; }
.alert-error { background: #fff0f0; color: #a12828; }
.alert-warning { background: #fff7e5; color: #8a5700; }

.customer-login-form label { display: block; font-size: 0.79rem; font-weight: 800; margin: 17px 0 8px; }
.field-wrap { position: relative; }
.field-wrap > i { color: #8391a5; left: 16px; position: absolute; top: 50%; transform: translateY(-50%); }
.field-wrap input {
    background: #f8faff;
    border: 1px solid #dce5f2;
    border-radius: 14px;
    color: var(--netcom-ink);
    font: 600 0.93rem "Manrope", sans-serif;
    outline: none;
    padding: 15px 48px 15px 44px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}
.field-wrap input:focus { border-color: var(--netcom-blue); box-shadow: 0 0 0 4px rgba(15, 77, 176, 0.1); }
.toggle-password { background: transparent; border: 0; color: #69788d; cursor: pointer; padding: 10px; position: absolute; right: 7px; top: 50%; transform: translateY(-50%); }

.primary-button,
.refresh-button {
    align-items: center;
    background: linear-gradient(115deg, var(--netcom-orange-dark), var(--netcom-orange));
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(226, 80, 39, 0.22);
    color: #fff;
    cursor: pointer;
    display: flex;
    font: 800 0.92rem "Manrope", sans-serif;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
    padding: 15px 20px;
    text-decoration: none;
    width: 100%;
}
.primary-button:disabled { cursor: not-allowed; filter: grayscale(0.3); opacity: 0.55; }
.support-note { color: var(--netcom-muted); font-size: 0.78rem; margin: 24px 0 0; text-align: center; }
.support-note a { color: var(--netcom-blue); font-weight: 800; }
.customer-footer { color: #7a8799; font-size: 0.74rem; padding: 22px; text-align: center; }

.dashboard-header nav { align-items: center; display: flex; gap: 10px; }
.dashboard-header nav form { margin: 0; }
.dashboard-nav-active { background: rgba(255, 255, 255, 0.22) !important; }
.dashboard-shell { margin: 0 auto; max-width: 1180px; min-height: calc(100vh - 140px); padding: 56px 24px; }
.dashboard-welcome { align-items: flex-end; display: flex; justify-content: space-between; margin-bottom: 34px; }
.dashboard-welcome h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 14px 0 8px; }
.dashboard-welcome p { margin: 0; }
.refresh-button { margin: 0; width: auto; }

.summary-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); margin: 24px 0; }
.summary-card { align-items: center; border-radius: 20px; display: flex; gap: 15px; min-width: 0; padding: 22px; }
.summary-card small { color: var(--netcom-muted); display: block; font-size: 0.73rem; font-weight: 700; margin-bottom: 5px; }
.summary-card strong { display: block; font-size: 1rem; }
.highlight-card { background: linear-gradient(135deg, #0b3470, var(--netcom-blue)); color: #fff; }
.highlight-card small { color: rgba(255, 255, 255, 0.75); }
.highlight-card .summary-icon { background: rgba(255, 255, 255, 0.14); }

.dashboard-panel { border-radius: 24px; margin-top: 22px; padding: clamp(24px, 4vw, 36px); }
.panel-heading { align-items: center; border-bottom: 1px solid var(--netcom-line); display: flex; justify-content: space-between; margin-bottom: 24px; padding-bottom: 20px; }
.panel-heading span { color: var(--netcom-orange-dark); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.panel-heading h2 { font-size: 1.3rem; margin: 4px 0 0; }
.panel-heading > i { color: var(--netcom-blue); font-size: 1.5rem; }
.customer-data-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); margin: 0; }
.customer-data-grid div, .line-card dl div { min-width: 0; }
.customer-data-grid dt, .line-card dt { color: var(--netcom-muted); font-size: 0.7rem; font-weight: 800; margin-bottom: 5px; text-transform: uppercase; }
.customer-data-grid dd, .line-card dd { font-size: 0.9rem; font-weight: 700; margin: 0; }
.break-text { overflow-wrap: anywhere; }

.line-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.line-card { background: linear-gradient(150deg, #f8fbff, #fff); border: 1px solid var(--netcom-line); border-radius: 18px; padding: 22px; }
.line-card-top { align-items: center; display: flex; justify-content: space-between; }
.line-card-top span { color: #168653; font-size: 0.77rem; font-weight: 800; }
.line-card-top small { background: #eaf2ff; border-radius: 999px; color: var(--netcom-blue); font-weight: 800; padding: 6px 9px; }
.line-card > strong { display: block; font-size: 1.35rem; margin: 20px 0; }
.line-card dl { display: grid; gap: 15px; grid-template-columns: 2fr 1fr; margin: 0; }
.empty-state { color: var(--netcom-muted); padding: 26px; text-align: center; }
.empty-state > i { color: #a5b4c7; font-size: 2rem; }
.empty-state h3 { color: var(--netcom-ink); margin-bottom: 7px; }

.technical-panel { border-radius: 18px; margin-top: 22px; padding: 20px 24px; }
.technical-panel summary { color: var(--netcom-blue); cursor: pointer; font-weight: 800; }
.technical-panel p { color: var(--netcom-muted); font-size: 0.8rem; }
.technical-panel pre { background: #07182f; border-radius: 14px; color: #dcecff; font: 0.76rem/1.6 Consolas, monospace; max-height: 430px; overflow: auto; padding: 18px; white-space: pre-wrap; }

@media (max-width: 850px) {
    .auth-shell { grid-template-columns: 1fr; padding-top: 44px; }
    .auth-intro { text-align: center; }
    .feature-list { justify-content: center; }
    .auth-intro h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
    .summary-grid, .customer-data-grid { grid-template-columns: 1fr 1fr; }
    .dashboard-welcome { align-items: flex-start; flex-direction: column; gap: 22px; }
}

@media (max-width: 580px) {
    .customer-header, .dashboard-header { min-height: 68px; padding: 8px 18px; }
    .customer-brand img { height: 46px; }
    .back-to-site { font-size: 0; padding: 11px; }
    .back-to-site i { font-size: 0.9rem; }
    .dashboard-header nav a { display: none; }
    .dashboard-shell { padding: 36px 16px; }
    .auth-shell { padding: 38px 16px; }
    .auth-intro p { font-size: 0.95rem; }
    .feature-list span { font-size: 0.74rem; }
    .auth-card { border-radius: 22px; }
    .environment-badge { position: static; width: max-content; }
    .summary-grid, .customer-data-grid, .line-grid { grid-template-columns: 1fr; }
    .refresh-button { width: 100%; }
}

/* Dashboard do MVP Netcom Móvel */
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

.app-dashboard-header { gap: clamp(10px, 1.5vw, 24px); position: sticky; top: 0; z-index: 100; }
.app-dashboard-header nav {
    align-items: center;
    display: flex;
    flex: 0 1 auto;
    gap: clamp(2px, .45vw, 8px);
    justify-content: center;
}
.app-dashboard-header nav form { display: flex; margin: 0; }
.app-dashboard-header nav a,
.app-dashboard-header nav button {
    align-items: center;
    background: transparent;
    border-color: transparent;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    padding: 9px 12px;
    white-space: nowrap;
}
.app-dashboard-header nav a i,
.app-dashboard-header nav button i,
.customer-install-button i {
    flex: 0 0 18px;
    line-height: 1;
    text-align: center;
    width: 18px;
}
.app-dashboard-header nav a:hover,
.app-dashboard-header nav button:hover { background: rgba(255, 255, 255, 0.13); }
.app-dashboard-header .dashboard-nav-active { background: rgba(255, 255, 255, 0.2) !important; }

.app-dashboard { padding-top: 42px; }
.app-welcome { align-items: center; display: flex; justify-content: space-between; margin-bottom: 30px; }
.app-welcome h1 { color: var(--netcom-blue-dark); font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.045em; line-height: 1; margin: 12px 0 7px; }
.app-welcome p { color: var(--netcom-muted); margin: 0; }

.profile-chip { align-items: center; background: rgba(255, 255, 255, 0.76); border: 1px solid var(--netcom-line); border-radius: 16px; display: flex; gap: 12px; padding: 9px 14px 9px 9px; }
.profile-chip > span { align-items: center; background: linear-gradient(135deg, var(--netcom-orange-dark), var(--netcom-orange)); border-radius: 12px; color: #fff; display: flex; font: 800 1rem "Sora", sans-serif; height: 42px; justify-content: center; width: 42px; }
.profile-chip strong, .profile-chip small { display: block; }
.profile-chip strong { font: 700 0.82rem "Manrope", sans-serif; }
.profile-chip small { color: var(--netcom-muted); font-size: 0.67rem; margin-top: 2px; }

.app-hero-grid { display: grid; gap: 20px; grid-template-columns: 1.05fr 0.95fr; }
.mobile-line-hero {
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.18), transparent 13rem),
        linear-gradient(140deg, #072d64, #0f4db0 68%, #1972d4);
    border-radius: 26px;
    box-shadow: 0 22px 48px rgba(7, 45, 100, 0.24);
    color: #fff;
    min-height: 290px;
    overflow: hidden;
    padding: 28px;
    position: relative;
}
.mobile-line-hero::after { border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; content: ""; height: 220px; position: absolute; right: -65px; top: 68px; width: 220px; }
.line-hero-top, .line-hero-footer { align-items: center; display: flex; justify-content: space-between; position: relative; z-index: 1; }
.status-pill, .line-type-pill { align-items: center; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px; display: inline-flex; font-size: 0.7rem; font-weight: 800; gap: 7px; padding: 7px 10px; }
.status-pill i { color: #49dfa0; font-size: 0.55rem; }
.line-hero-content { margin: 52px 0 44px; position: relative; z-index: 1; }
.line-hero-content small, .line-hero-content span { color: rgba(255, 255, 255, 0.72); display: block; }
.line-hero-content strong { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.045em; margin: 6px 0; }
.line-hero-content span { font-size: 0.86rem; font-weight: 700; }
.line-hero-footer { border-top: 1px solid rgba(255, 255, 255, 0.13); color: rgba(255, 255, 255, 0.75); font-size: 0.7rem; padding-top: 16px; }
.line-hero-footer span { align-items: center; display: inline-flex; gap: 7px; }

.internet-glance { align-items: center; background: rgba(255, 255, 255, 0.94); border: 1px solid rgba(255, 255, 255, 0.88); border-radius: 26px; box-shadow: var(--netcom-shadow); display: grid; gap: 30px; grid-template-columns: 170px 1fr; padding: 34px; }
.usage-ring { align-items: center; background: conic-gradient(var(--netcom-orange) calc(var(--usage) * 1%), #e8eef6 0); border-radius: 50%; display: flex; height: 160px; justify-content: center; position: relative; width: 160px; }
.usage-ring::before { background: #fff; border-radius: 50%; content: ""; inset: 13px; position: absolute; }
.usage-ring > div { position: relative; text-align: center; }
.usage-ring strong, .usage-ring small { display: block; }
.usage-ring strong { color: var(--netcom-blue-dark); font-size: 1.65rem; }
.usage-ring small { color: var(--netcom-muted); font-size: 0.68rem; }
.card-kicker, .app-section-heading span { color: var(--netcom-orange-dark); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.internet-glance-copy h2 { color: var(--netcom-blue-dark); font-size: 2.4rem; letter-spacing: -0.045em; margin: 8px 0 0; }
.internet-glance-copy p { color: var(--netcom-muted); font-size: 0.8rem; margin: 2px 0 18px; }
.usage-track, .category-track { background: #e8eef6; border-radius: 999px; height: 7px; overflow: hidden; }
.usage-track span, .category-track span { background: linear-gradient(90deg, var(--netcom-orange-dark), var(--netcom-orange)); border-radius: inherit; display: block; height: 100%; }
.internet-glance-copy > small { color: var(--netcom-muted); display: block; font-size: 0.7rem; margin-top: 8px; }

.quick-actions { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); margin: 20px 0 28px; }
.quick-actions > a { align-items: center; background: rgba(255, 255, 255, 0.86); border: 1px solid var(--netcom-line); border-radius: 17px; display: grid; gap: 12px; grid-template-columns: 44px 1fr auto; padding: 14px; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.quick-actions > a:hover { box-shadow: 0 15px 30px rgba(6, 26, 56, 0.09); transform: translateY(-2px); }
.quick-actions > a > span { align-items: center; background: #edf4ff; border-radius: 12px; color: var(--netcom-blue); display: flex; height: 44px; justify-content: center; width: 44px; }
.quick-actions strong, .quick-actions small { display: block; }
.quick-actions strong { font: 700 0.8rem "Manrope", sans-serif; }
.quick-actions small { color: var(--netcom-muted); font-size: 0.66rem; margin-top: 2px; }
.quick-actions > a > i { color: #9aa9bd; font-size: 0.7rem; }

.app-section { background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 24px; box-shadow: 0 16px 44px rgba(6, 26, 56, 0.09); margin-top: 22px; padding: 28px; }
.app-section-heading { align-items: center; display: flex; justify-content: space-between; margin-bottom: 24px; }
.app-section-heading h2 { font-size: 1.35rem; letter-spacing: -0.03em; margin: 4px 0 0; }
.app-section-heading > small { color: var(--netcom-muted); font-size: 0.67rem; }
.app-section-heading > i { color: var(--netcom-blue); font-size: 1.25rem; }
.usage-category-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.usage-category { align-items: center; background: #f7faff; border: 1px solid #e3ebf5; border-radius: 16px; display: flex; gap: 15px; padding: 17px; }
.category-icon { align-items: center; background: #e9f1ff; border-radius: 13px; color: var(--netcom-blue); display: flex; flex: 0 0 auto; height: 46px; justify-content: center; width: 46px; }
.category-icon-2 { background: #fff0e6; color: var(--netcom-orange-dark); }
.category-icon-3 { background: #e9fbf3; color: #138352; }
.category-copy { flex: 1; min-width: 0; }
.category-copy > div:first-child { align-items: center; display: flex; justify-content: space-between; margin-bottom: 10px; }
.category-copy strong { font: 800 0.75rem "Manrope", sans-serif; }
.category-copy small { color: var(--netcom-muted); font-size: 0.64rem; }
.category-copy > small { display: block; margin-top: 7px; }

.current-plan-card { background: linear-gradient(135deg, #fff7f1, #fff 48%, #eef5ff); border: 1px solid #f0e5dc; border-radius: 20px; display: grid; gap: 25px; grid-template-columns: 1.2fr 0.8fr; overflow: hidden; padding: 28px; }
.current-plan-card .status-pill { background: #e9f9f1; border-color: #cceede; color: #167b50; }
.plan-main h3 { color: var(--netcom-blue-dark); font-size: 1.8rem; letter-spacing: -0.04em; margin: 18px 0 5px; }
.plan-main p { color: var(--netcom-muted); margin: 0; }
.plan-benefits { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.plan-benefits span { background: #fff; border: 1px solid #e6eaf0; border-radius: 999px; font-size: 0.69rem; font-weight: 700; padding: 7px 10px; }
.plan-benefits i { color: var(--netcom-orange-dark); margin-right: 5px; }
.plan-details { background: #fff; border: 1px solid #e8edf4; border-radius: 17px; padding: 20px; }
.plan-details > div:first-child { border-bottom: 1px solid #e8edf4; padding-bottom: 16px; }
.plan-details small, .plan-details span { color: var(--netcom-muted); display: block; font-size: 0.65rem; }
.plan-details strong { color: var(--netcom-blue); display: block; font-size: 1.65rem; margin: 3px 0; }
.plan-details dl { display: grid; gap: 12px; margin: 16px 0 0; }
.plan-details dl div { align-items: center; display: flex; justify-content: space-between; }
.plan-details dt { color: var(--netcom-muted); font-size: 0.67rem; }
.plan-details dd { font-size: 0.73rem; font-weight: 800; margin: 0; }

.two-column-sections { display: grid; gap: 22px; grid-template-columns: repeat(2, 1fr); }
.detail-list { display: grid; gap: 0; margin: 0; }
.detail-list > div { align-items: center; border-bottom: 1px solid #edf1f6; display: flex; justify-content: space-between; padding: 13px 0; }
.detail-list > div:last-child { border-bottom: 0; }
.detail-list dt { color: var(--netcom-muted); font-size: 0.72rem; }
.detail-list dd { font-size: 0.75rem; font-weight: 800; margin: 0; max-width: 65%; text-align: right; }
.inline-status { color: #168653; }
.feature-availability { align-items: center; border-radius: 14px; display: flex; gap: 12px; margin-top: 16px; padding: 13px; }
.feature-availability.available { background: #eaf9f2; color: #167b50; }
.feature-availability.unavailable { background: #fff4e8; color: #9a5a11; }
.feature-availability > i { font-size: 1.2rem; }
.feature-availability strong, .feature-availability span { display: block; }
.feature-availability strong { font: 800 0.72rem "Manrope", sans-serif; }
.feature-availability span { font-size: 0.64rem; margin-top: 2px; }

.activity-grid { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); }
.activity-column h3 { align-items: center; display: flex; font: 800 0.8rem "Manrope", sans-serif; gap: 8px; margin: 0 0 16px; }
.activity-column h3 i { color: var(--netcom-blue); }
.timeline-list { display: grid; gap: 7px; }
.timeline-item { align-items: center; border-bottom: 1px solid #edf1f6; display: grid; gap: 12px; grid-template-columns: 36px 1fr auto; padding: 10px 0; }
.timeline-item:last-child { border-bottom: 0; }
.timeline-icon { align-items: center; background: #e9f9f1; border-radius: 10px; color: #168653; display: flex; height: 34px; justify-content: center; width: 34px; }
.timeline-item strong, .timeline-item small { display: block; }
.timeline-item strong { font: 800 0.74rem "Manrope", sans-serif; }
.timeline-item small { color: var(--netcom-muted); font-size: 0.63rem; margin-top: 2px; }
.activity-status { background: #eef5ff; border-radius: 999px; color: var(--netcom-blue); font-size: 0.62rem; font-weight: 800; padding: 6px 8px; }
.request-empty { align-items: center; background: #f7faff; border-radius: 15px; display: flex; gap: 13px; min-height: 94px; padding: 17px; }
.request-empty > span { align-items: center; background: #e9f9f1; border-radius: 50%; color: #168653; display: flex; height: 42px; justify-content: center; width: 42px; }
.request-empty strong { font: 800 0.76rem "Manrope", sans-serif; }
.request-empty p { color: var(--netcom-muted); font-size: 0.67rem; margin: 3px 0 0; }
.compact-empty { align-items: center; background: #f7faff; border-radius: 14px; color: var(--netcom-muted); display: flex; font-size: 0.75rem; gap: 9px; justify-content: center; min-height: 80px; padding: 16px; text-align: center; }

.central-section { border-top: 4px solid var(--netcom-blue); overflow: hidden; }
.central-section + #chip { margin-top: 42px; }
.central-summary-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 20px; }
.central-metric { align-items: center; background: linear-gradient(145deg, #f5f9ff, #fff); border: 1px solid #dfe9f6; border-radius: 18px; display: grid; gap: 14px; grid-template-columns: 48px 1fr; padding: 17px; }
.central-metric > span { align-items: center; background: #e6f0ff; border-radius: 14px; color: var(--netcom-blue); display: flex; font-size: 1.05rem; height: 48px; justify-content: center; width: 48px; }
.central-metric small, .central-metric strong, .central-metric p { display: block; }
.central-metric small { color: var(--netcom-muted); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; }
.central-metric strong { color: var(--netcom-blue-dark); font: 800 1.45rem "Sora", sans-serif; margin: 2px 0; }
.central-metric p { color: var(--netcom-muted); font-size: 0.63rem; margin: 0; }
.central-ticket-metric { cursor: pointer; font-family: inherit; min-width: 0; text-align: left; width: 100%; }
.central-ticket-metric:hover, .central-ticket-metric:focus-visible { border-color: var(--netcom-orange); box-shadow: 0 9px 24px rgba(226, 80, 39, .13); outline: none; }
.central-ticket-metric > span { background: #fff0e6; color: var(--netcom-orange-dark); }
.central-ticket-metric strong { font-size: 1.15rem; }
.central-ticket-metric p i { margin-left: 3px; }
.central-data-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.central-card { background: #fff; border: 1px solid #e3eaf3; border-radius: 19px; min-width: 0; padding: 20px; }
.central-card-heading { align-items: center; display: flex; gap: 12px; margin-bottom: 14px; }
.central-card-heading > span { align-items: center; background: #edf4ff; border-radius: 12px; color: var(--netcom-blue); display: flex; flex: 0 0 auto; height: 42px; justify-content: center; width: 42px; }
.central-card-heading small { color: var(--netcom-orange-dark); display: block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.central-card-heading h3 { color: var(--netcom-blue-dark); font: 800 0.88rem "Manrope", sans-serif; margin: 2px 0 0; }
.central-record-list { display: grid; gap: 4px; }
.central-record { align-items: center; border-bottom: 1px solid #edf1f6; display: grid; gap: 10px; grid-template-columns: 36px minmax(0, 1fr) auto; min-width: 0; padding: 10px 0; }
.central-record:last-child { border-bottom: 0; }
.central-record-icon { align-items: center; background: #edf4ff; border-radius: 10px; color: var(--netcom-blue); display: flex; height: 34px; justify-content: center; width: 34px; }
.central-record-icon.invoice-icon { background: #fff3e9; color: var(--netcom-orange-dark); }
.central-record-icon.invoice-icon.is-paid { background: #e9f9f1; color: #168653; }
.central-record-icon.internet-icon { background: #eaf9f2; color: #168653; }
.central-record > div { min-width: 0; }
.central-record strong, .central-record small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.central-record strong { font: 800 0.72rem "Manrope", sans-serif; }
.central-record small { color: var(--netcom-muted); font-size: 0.62rem; margin-top: 2px; }
.invoice-main { align-items: center; display: flex; gap: 14px; justify-content: space-between; }
.invoice-details { min-width: 0; }
.invoice-actions { display: flex; flex: 0 0 auto; gap: 5px; margin: 0; }
.invoice-actions button { background: #eef5ff; border: 0; border-radius: 8px; color: var(--netcom-blue); cursor: pointer; font: 800 0.58rem "Manrope", sans-serif; padding: 6px 8px; }
.invoice-actions button:hover { background: var(--netcom-blue); color: #fff; }
.invoice-actions .ixc-payment-menu-button { align-items: center; border-radius: 10px; display: inline-flex; font-size: 0.68rem; gap: 7px; min-height: 38px; padding: 9px 15px; white-space: nowrap; }
.central-status { background: #eef5ff; border-radius: 999px; color: var(--netcom-blue); font-size: 0.58rem; font-weight: 800; padding: 6px 8px; white-space: nowrap; }
.central-status.is-online { background: #e9f9f1; color: #168653; }
.central-status.is-paid { background: #e9f9f1; color: #168653; }
.central-record-side { align-items: flex-end; display: flex; flex-direction: column; gap: 7px; }
.central-status.is-pending-signature { background: #fff3e9; color: var(--netcom-orange-dark); }
.ixc-contract-review-button, .ixc-contract-photo-recovery-button { align-items: center; background: var(--netcom-orange); border: 0; border-radius: 999px; color: #fff; cursor: pointer; display: inline-flex; font: 800 0.58rem "Manrope", sans-serif; gap: 6px; padding: 7px 10px; white-space: nowrap; }
.ixc-contract-review-button:hover, .ixc-contract-photo-recovery-button:hover { background: var(--netcom-orange-dark); }
.account-tools-card { display: grid; gap: 0; }
.account-tool-section { min-width: 0; padding: 2px 0 16px; }
.account-tool-section + .account-tool-section { border-top: 1px solid #e7edf5; padding-top: 16px; }
.account-tool-section:last-child { padding-bottom: 0; }
.account-tool-heading { align-items: center; display: flex; gap: 10px; margin-bottom: 10px; }
.account-tool-heading > span { align-items: center; background: #edf4ff; border-radius: 11px; color: var(--netcom-blue); display: flex; flex: 0 0 auto; height: 38px; justify-content: center; width: 38px; }
.account-tool-heading h4 { color: var(--netcom-blue-dark); font: 800 0.75rem "Manrope", sans-serif; margin: 0; }
.account-tool-heading small { color: var(--netcom-muted); display: block; font-size: 0.58rem; margin-top: 2px; }
.central-card-heading > .trust-unlock-icon { background: #fff3e9; color: var(--netcom-orange-dark); }
.trust-unlock-empty { align-items: center; background: linear-gradient(145deg, #f7faff, #fff); border: 1px solid #e5edf7; border-radius: 16px; display: flex; gap: 12px; min-height: 105px; padding: 16px; }
.trust-unlock-empty > span { align-items: center; background: #eaf9f2; border-radius: 13px; color: #168653; display: flex; flex: 0 0 auto; height: 42px; justify-content: center; width: 42px; }
.trust-unlock-empty strong { color: var(--netcom-blue-dark); display: block; font: 800 0.72rem "Manrope", sans-serif; }
.trust-unlock-empty p, .trust-unlock-intro { color: var(--netcom-muted); font-size: 0.63rem; line-height: 1.5; margin: 4px 0 0; }
.trust-unlock-checking { align-items: center; background: #f7faff; border: 1px solid #e5edf7; border-radius: 13px; color: var(--netcom-muted); display: flex; font-size: 0.63rem; gap: 9px; margin-top: 12px; padding: 13px; }
.trust-unlock-checking i { color: var(--netcom-blue); }
.trust-unlock-checking.is-error { background: #fff4f1; border-color: #f1d2c8; color: #9b3826; }
.trust-unlock-list { display: grid; gap: 8px; margin-top: 12px; }
.trust-unlock-list > div { align-items: center; background: #f7faff; border: 1px solid #e5edf7; border-radius: 13px; display: grid; gap: 9px; grid-template-columns: 32px minmax(0, 1fr) auto; padding: 10px; }
.trust-unlock-option[hidden], .trust-unlock-checking[hidden], .trust-unlock-live-empty[hidden] { display: none; }
.trust-unlock-list > div > span { align-items: center; background: #eaf9f2; border-radius: 9px; color: #168653; display: flex; height: 32px; justify-content: center; width: 32px; }
.trust-unlock-list strong { font: 800 0.66rem "Manrope", sans-serif; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trust-unlock-button { background: var(--netcom-orange); border: 0; border-radius: 999px; color: #fff; cursor: pointer; font: 800 0.58rem "Manrope", sans-serif; padding: 8px 11px; }
.trust-unlock-button:hover { background: var(--netcom-orange-dark); }
.trust-unlock-button:disabled, .trust-unlock-button.is-completed { background: #168653; cursor: default; opacity: 0.88; }
.trust-unlock-note { align-items: center; color: var(--netcom-muted); display: flex; font-size: 0.56rem; gap: 6px; margin-top: 12px; }
.internet-consumption-card { grid-column: 1 / -1; }
.central-card-heading > .internet-heading-icon { background: linear-gradient(145deg, #dff8ec, #effbf6); color: #168653; font-size: 1rem; }
.internet-access-block + .internet-access-block { border-top: 1px solid #e8eef5; margin-top: 14px; padding-top: 14px; }
.internet-access-block .central-record { border-bottom: 0; }
.daily-usage { background: linear-gradient(145deg, #f7faff, #fff); border: 1px solid #e4ecf6; border-radius: 16px; margin-top: 8px; padding: 14px; }
.daily-usage-heading { align-items: center; display: flex; justify-content: space-between; }
.daily-usage-heading h4 { color: var(--netcom-blue-dark); font: 800 0.7rem "Manrope", sans-serif; margin: 0; }
.daily-usage-heading small { color: var(--netcom-muted); font-size: 0.58rem; font-weight: 700; }
.daily-usage-summary { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); margin-top: 11px; }
.daily-usage-summary > div { background: #fff; border: 1px solid #e2ebf5; border-radius: 11px; padding: 9px 10px; }
.daily-usage-summary small, .daily-usage-summary strong { display: block; }
.daily-usage-summary small { color: var(--netcom-muted); font-size: 0.52rem; font-weight: 700; }
.daily-usage-summary strong { color: var(--netcom-blue-dark); font: 800 0.72rem "Sora", sans-serif; margin-top: 3px; }
.daily-usage-chart { margin-top: 12px; overflow: hidden; }
.daily-usage-bars { display: grid; gap: clamp(14px, 4vw, 54px); grid-template-columns: repeat(4, minmax(64px, 120px)); justify-content: center; margin: 0 auto; min-height: 235px; padding: 15px 8px 0; }
.daily-usage-scroll { overflow-x: auto; padding-bottom: 4px; scrollbar-color: #b9c9dc #edf2f8; scrollbar-width: thin; }
.daily-usage-lines { display: block; height: 210px; margin-inline: auto; max-width: none; }
.daily-usage-lines text { fill: #7a8798; font: 700 9px "Manrope", sans-serif; }
.daily-usage-lines .usage-point-value { fill: #31445c; font-size: 8px; paint-order: stroke; pointer-events: none; stroke: #fff; stroke-width: 3px; stroke-linejoin: round; }
.usage-grid-line { stroke: #e4ebf4; stroke-width: 1; }
.usage-line { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }
.usage-download-line { stroke: #2679dc; }
.usage-upload-line { stroke: var(--netcom-orange); }
.usage-download-point { fill: #2679dc; stroke: #fff; stroke-width: 2; }
.usage-upload-point { fill: var(--netcom-orange); stroke: #fff; stroke-width: 2; }
.usage-day-point circle { cursor: help; transition: r .2s ease; }
.usage-day-point:hover circle { r: 6; }
.daily-usage-column { align-items: center; display: flex; flex-direction: column; height: 100%; justify-content: flex-end; min-width: 0; }
.daily-usage-value { color: #52647a; font: 800 0.58rem "Manrope", sans-serif; margin-bottom: 6px; white-space: nowrap; }
.daily-usage-track { align-items: stretch; display: flex; flex-direction: column-reverse; height: 165px; justify-content: flex-start; max-width: 52px; overflow: hidden; width: 72%; }
.daily-usage-track span { display: block; min-height: 0; transition: height 0.25s ease; width: 100%; }
.daily-usage-track .usage-download { background: linear-gradient(180deg, #2f80ed, #1769c2); border-radius: 6px 6px 2px 2px; }
.daily-usage-track .usage-upload { background: linear-gradient(180deg, #ff9a62, var(--netcom-orange)); border-radius: 2px 2px 6px 6px; }
.daily-usage-column > small { color: #7a8798; font-size: 0.52rem; font-weight: 700; margin: 5px 0 4px; }
.daily-usage-chart.is-empty .daily-usage-track { background: #edf2f8; border-radius: 6px 6px 0 0; height: 3px; }
.daily-usage-empty { color: var(--netcom-muted); font-size: 0.6rem; margin: 8px 0 0; text-align: center; }
.daily-usage-legend { display: flex; gap: 14px; justify-content: flex-end; margin-top: 9px; }
.daily-usage-legend span { align-items: center; color: var(--netcom-muted); display: inline-flex; font-size: 0.56rem; font-weight: 700; gap: 5px; }
.daily-usage-legend i { border-radius: 50%; height: 7px; width: 7px; }
.daily-usage-legend .download-dot { background: #2f80ed; }
.daily-usage-legend .upload-dot { background: var(--netcom-orange); }
.trust-unlock-modal { background: transparent; border: 0; max-width: 470px; padding: 0; width: calc(100% - 28px); }
.trust-unlock-modal::backdrop { backdrop-filter: blur(4px); background: rgba(9, 27, 50, 0.58); }
.trust-unlock-modal-shell { background: #fff; border-radius: 22px; box-shadow: 0 24px 70px rgba(9, 27, 50, 0.28); padding: 28px; position: relative; text-align: center; }
.trust-unlock-modal-close { align-items: center; background: #eef3f8; border: 0; border-radius: 50%; color: var(--netcom-blue-dark); cursor: pointer; display: flex; height: 34px; justify-content: center; position: absolute; right: 16px; top: 16px; width: 34px; }
.trust-unlock-modal-icon { align-items: center; background: #fff0e6; border-radius: 17px; color: var(--netcom-orange-dark); display: flex; font-size: 1.25rem; height: 58px; justify-content: center; margin: 0 auto 14px; width: 58px; }
.trust-unlock-modal h2 { color: var(--netcom-blue-dark); font-size: 1.12rem; margin: 0 0 8px; }
.trust-unlock-modal-content p { color: var(--netcom-muted); font-size: 0.72rem; line-height: 1.55; margin: 0; }
.trust-unlock-warning { align-items: flex-start; background: #fff8ed; border: 1px solid #ffe0b8; border-radius: 12px; color: #8a5318; display: flex; font-size: 0.62rem; gap: 8px; margin-top: 14px; padding: 11px; text-align: left; }
.trust-unlock-modal-actions { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.trust-unlock-modal-actions button { border: 0; border-radius: 999px; cursor: pointer; font: 800 0.65rem "Manrope", sans-serif; padding: 10px 15px; }
.trust-unlock-cancel { background: #eef3f8; color: var(--netcom-blue-dark); }
.trust-unlock-confirm, .trust-unlock-refresh { background: var(--netcom-orange); border: 0; border-radius: 999px; color: #fff; cursor: pointer; font: 800 0.65rem "Manrope", sans-serif; padding: 10px 15px; }
.trust-unlock-confirm:disabled { cursor: wait; opacity: 0.65; }
.trust-unlock-result { align-items: center; display: flex; flex-direction: column; gap: 10px; }
.trust-unlock-result > i { color: #168653; font-size: 1.65rem; }

.contract-signature-modal { background: transparent; border: 0; max-height: 94vh; max-width: 1040px; padding: 0; width: calc(100% - 28px); }
.contract-signature-modal::backdrop { backdrop-filter: blur(5px); background: rgba(8, 24, 48, 0.74); }
.contract-signature-shell { background: #fff; border-radius: 22px; box-shadow: 0 30px 90px rgba(7, 26, 55, 0.35); max-height: 94vh; overflow: hidden; }
.contract-signature-shell > header { align-items: center; border-bottom: 1px solid #e6edf6; display: flex; justify-content: space-between; padding: 17px 20px; }
.contract-signature-shell > header small { color: var(--netcom-orange-dark); display: block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.contract-signature-shell > header h2 { color: var(--netcom-blue-dark); font: 800 1rem "Manrope", sans-serif; margin: 2px 0 0; }
.contract-signature-close { align-items: center; background: #eef3f9; border: 0; border-radius: 50%; color: var(--netcom-blue-dark); cursor: pointer; display: flex; height: 38px; justify-content: center; width: 38px; }
.contract-signature-content { max-height: calc(94vh - 74px); overflow: auto; padding: 18px 20px 22px; }
.contract-signature-loading { align-items: center; color: var(--netcom-muted); display: flex; flex-direction: column; gap: 13px; justify-content: center; min-height: 420px; }
.contract-signature-loading i { color: var(--netcom-orange); font-size: 1.6rem; }
.contract-review-step[hidden], .contract-identity-guide[hidden], .contract-camera-step[hidden], .contract-selfie-review[hidden], .contract-draw-step[hidden], .contract-signature-result[hidden], .contract-signature-loading[hidden] { display: none; }
.contract-review-notice { align-items: flex-start; background: #eef5ff; border: 1px solid #d9e7fa; border-radius: 13px; color: #264e7c; display: flex; font-size: 0.7rem; gap: 9px; line-height: 1.45; margin-bottom: 13px; padding: 10px 12px; }
.contract-review-notice i { color: var(--netcom-blue); margin-top: 2px; }
.contract-pdf-frame { background: #eef2f7; border: 1px solid #dce5f0; border-radius: 13px; display: block; height: min(58vh, 650px); width: 100%; }
.contract-document-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.contract-document-actions a { align-items: center; background: #eef5ff; border-radius: 9px; color: var(--netcom-blue); cursor: pointer; display: inline-flex; font-size: 0.64rem; font-weight: 800; gap: 6px; padding: 8px 10px; text-decoration: none; }
.identity-guide-grid { align-items: center; display: grid; gap: 24px; grid-template-columns: minmax(220px, 0.78fr) 1.22fr; }
.identity-reference-image { display: none; }
.identity-reference-image-upscaled { aspect-ratio: 3 / 2; background: #fff7f2; border: 1px solid #f2d1ba; border-radius: 18px; box-shadow: 0 14px 32px rgba(41, 54, 72, 0.12); display: block; height: auto; max-height: 290px; object-fit: cover; width: 100%; }
.identity-reference-image-legacy { background: #fff7f2; border: 1px solid #f2d1ba; border-radius: 18px; box-shadow: 0 14px 32px rgba(41, 54, 72, 0.12); display: block; max-height: 290px; object-fit: contain; width: 100%; }
.identity-step-label { color: var(--netcom-orange-dark); display: block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.identity-guide-grid h3 { color: var(--netcom-blue-dark); font: 800 1.15rem "Manrope", sans-serif; margin: 5px 0 7px; }
.identity-guide-grid p { color: var(--netcom-muted); font-size: 0.7rem; line-height: 1.55; margin: 0; }
.identity-guide-grid ul { display: grid; gap: 8px; list-style: none; margin: 14px 0 0; padding: 0; }
.identity-guide-grid li { align-items: center; color: #40536a; display: flex; font-size: 0.67rem; font-weight: 700; gap: 8px; }
.identity-guide-grid li i { color: var(--netcom-blue); width: 16px; }
.identity-privacy-notice { align-items: flex-start; background: #eef8f3; border: 1px solid #d4eadf; border-radius: 12px; color: #266048; display: flex; font-size: 0.64rem; gap: 9px; line-height: 1.5; margin-top: 16px; padding: 10px 12px; }
.identity-privacy-notice i { margin-top: 2px; }
.camera-heading strong, .camera-heading span { display: block; text-align: center; }
.camera-heading strong { color: var(--netcom-blue-dark); font: 800 0.9rem "Manrope", sans-serif; }
.camera-heading span { color: var(--netcom-muted); font-size: 0.67rem; margin-top: 3px; }
.identity-camera-frame { background: #07162a; border-radius: 16px; margin: 14px auto 0; max-width: 720px; overflow: hidden; position: relative; }
.identity-camera-frame video { aspect-ratio: 4 / 3; display: block; object-fit: cover; transform: scaleX(-1); width: 100%; }
.camera-guide { inset: 0; pointer-events: none; position: absolute; }
.camera-guide span { border: 2px dashed rgba(255,255,255,0.78); border-radius: 48%; height: 68%; left: 18%; position: absolute; top: 15%; width: 37%; }
.camera-guide i { border: 2px dashed rgba(255,255,255,0.78); border-radius: 9px; color: rgba(255,255,255,0.86); font-size: 2.2rem; padding: 16px 24px; position: absolute; right: 9%; top: 33%; }
.camera-status { color: #9b3826; font-size: 0.65rem; line-height: 1.45; margin: 9px auto 0; max-width: 720px; text-align: center; }
.contract-selfie-review > img { background: #eef2f7; border: 1px solid #d9e2ed; border-radius: 16px; display: block; margin: 14px auto 0; max-height: min(58vh, 610px); max-width: 760px; object-fit: contain; width: 100%; }
.contract-confirm-check { align-items: flex-start; background: #fff8ed; border: 1px solid #ffe0b8; border-radius: 12px; color: #704415; cursor: pointer; display: flex; font-size: 0.7rem; font-weight: 700; gap: 9px; line-height: 1.4; margin-top: 14px; padding: 11px 12px; }
.contract-confirm-check input { accent-color: var(--netcom-orange); flex: 0 0 auto; margin-top: 2px; }
.contract-step-actions { display: flex; flex-wrap: wrap; gap: 9px; justify-content: flex-end; margin-top: 14px; }
.contract-step-actions button { align-items: center; border: 0; border-radius: 999px; cursor: pointer; display: inline-flex; font: 800 0.66rem "Manrope", sans-serif; gap: 7px; justify-content: center; padding: 10px 15px; }
.contract-primary-button { background: var(--netcom-orange); color: #fff; }
.contract-primary-button:hover:not(:disabled) { background: var(--netcom-orange-dark); }
.contract-primary-button:disabled { cursor: not-allowed; opacity: 0.45; }
.contract-secondary-button { background: #eef3f8; color: var(--netcom-blue-dark); }
.contract-signature-instruction strong, .contract-signature-instruction span { display: block; }
.contract-signature-instruction strong { color: var(--netcom-blue-dark); font: 800 0.84rem "Manrope", sans-serif; }
.contract-signature-instruction span { color: var(--netcom-muted); font-size: 0.66rem; margin-top: 3px; }
.contract-signature-pad { background: #fff; border: 2px dashed #78879a; border-radius: 10px; margin-top: 13px; overflow: hidden; }
.contract-signature-pad canvas { cursor: crosshair; display: block; height: min(30vh, 230px); touch-action: none; width: 100%; }
.contract-clear-signature { background: transparent; border: 0; color: var(--netcom-blue); cursor: pointer; font: 800 0.62rem "Manrope", sans-serif; margin-top: 8px; padding: 5px 2px; }
.contract-signature-result { align-items: center; display: flex; flex-direction: column; justify-content: center; min-height: 390px; text-align: center; }
.contract-signature-result i { color: #168653; font-size: 2.3rem; }
.contract-signature-result.is-error i { color: #b33d2b; }
.contract-signature-result h3 { color: var(--netcom-blue-dark); font: 800 1.05rem "Manrope", sans-serif; margin: 13px 0 6px; }
.contract-signature-result p { color: var(--netcom-muted); font-size: 0.72rem; line-height: 1.5; margin: 0; max-width: 520px; }
.contract-signature-result button { background: var(--netcom-orange); border: 0; border-radius: 999px; color: #fff; cursor: pointer; font: 800 0.66rem "Manrope", sans-serif; margin-top: 16px; padding: 10px 16px; }

.support-card { align-items: center; background: linear-gradient(120deg, var(--sumer-blue-950), var(--sumer-blue-700)); border-radius: 24px; box-shadow: 0 20px 40px rgba(6, 26, 56, 0.23); color: #fff; display: grid; gap: 20px; grid-template-columns: 70px 1fr auto; margin-top: 24px; overflow: hidden; padding: 26px 30px; position: relative; }
.support-illustration { align-items: center; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; display: flex; font-size: 1.6rem; height: 64px; justify-content: center; width: 64px; }
.support-card span { color: rgba(255, 255, 255, 0.72); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.support-card h2 { font-size: 1.4rem; margin: 3px 0; }
.support-card p { color: rgba(255, 255, 255, 0.78); font-size: 0.76rem; margin: 0; }
.support-card > a { align-items: center; background: #fff; border-radius: 999px; color: #176845; display: inline-flex; font-size: 0.75rem; font-weight: 800; gap: 8px; padding: 12px 16px; text-decoration: none; }

.mobile-bottom-nav { display: none; }
.mobile-offer-card { align-items: center; background: linear-gradient(125deg, #081f43 0%, #0d4da7 62%, #1575d1 100%); border-radius: 26px; box-shadow: 0 22px 52px rgba(8, 43, 92, 0.22); color: #fff; display: grid; gap: 24px; grid-template-columns: 92px 1fr auto; margin: 0 0 24px; overflow: hidden; padding: 27px 30px; position: relative; }
.mobile-offer-card::after { background: rgba(255, 255, 255, 0.07); border-radius: 50%; content: ""; height: 260px; position: absolute; right: -90px; top: -115px; width: 260px; }
.mobile-offer-visual { align-items: center; display: flex; justify-content: center; min-height: 82px; position: relative; }
.mobile-offer-visual > span { align-items: center; background: linear-gradient(145deg, #ff8b37, #e25027); border: 4px solid rgba(255, 255, 255, 0.18); border-radius: 22px; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2); display: flex; font-size: 1.65rem; height: 74px; justify-content: center; transform: rotate(-7deg); width: 64px; }
.mobile-offer-visual > i { color: #62e8a1; font-size: 0.95rem; position: absolute; right: 3px; top: 2px; }
.mobile-offer-copy { min-width: 0; position: relative; z-index: 1; }
.mobile-offer-copy > span { color: #ffb27c; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.mobile-offer-copy h2 { font-size: clamp(1.35rem, 2.5vw, 2rem); letter-spacing: -0.035em; margin: 5px 0 7px; }
.mobile-offer-copy p { color: rgba(255, 255, 255, 0.76); font-size: 0.76rem; line-height: 1.55; margin: 0; max-width: 610px; }
.mobile-offer-copy > div { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 13px; }
.mobile-offer-copy > div span { color: rgba(255, 255, 255, 0.84); font-size: 0.62rem; font-weight: 700; }
.mobile-offer-copy > div i { color: #ffad72; margin-right: 5px; }
.mobile-offer-card > a { align-items: center; background: #fff; border-radius: 999px; color: #176845; display: inline-flex; font-size: 0.72rem; font-weight: 800; gap: 8px; justify-content: center; min-width: 154px; padding: 13px 17px; position: relative; text-decoration: none; z-index: 1; }
.mobile-bottom-nav.has-mobile-line { grid-template-columns: repeat(5, 1fr) !important; }
.mobile-bottom-nav.internet-only { grid-template-columns: repeat(4, 1fr) !important; }
.app-footer { margin-bottom: 0; }
.payment-page { align-items: center; background: #f4f7fb; display: flex; justify-content: center; min-height: 100vh; padding: 24px; }
.payment-result { background: #fff; border: 1px solid #e1e9f4; border-radius: 24px; box-shadow: 0 18px 50px rgba(18, 52, 92, 0.12); max-width: 560px; padding: 32px; text-align: center; width: 100%; }
.payment-result > img:not(.pix-image) { height: auto; margin-bottom: 20px; max-width: 150px; }
.payment-result h1 { color: var(--netcom-blue-dark); font-size: 1.45rem; margin: 0 0 10px; }
.payment-result p { color: var(--netcom-muted); line-height: 1.55; }
.payment-result > a, .payment-result > button { background: var(--netcom-orange); border: 0; border-radius: 999px; color: #fff; cursor: pointer; display: inline-block; font-weight: 800; margin-top: 18px; padding: 11px 18px; text-decoration: none; }
.payment-result label { color: var(--netcom-blue-dark); display: block; font-size: 0.72rem; font-weight: 800; margin: 18px 0 7px; text-align: left; }
.payment-result textarea { border: 1px solid #d6e0ed; border-radius: 12px; box-sizing: border-box; min-height: 100px; padding: 12px; resize: vertical; width: 100%; }
.payment-result > small { color: #168653; display: block; margin-top: 8px; }
.pix-image { display: block; height: 200px; margin: 18px auto; object-fit: contain; width: 200px; }
.payment-modal { background: transparent; border: 0; max-height: min(88vh, 820px); max-width: 760px; padding: 0; width: calc(100% - 28px); }
.payment-modal::backdrop { background: rgba(8, 24, 48, 0.7); backdrop-filter: blur(4px); }
.payment-modal-shell { background: #fff; border-radius: 22px; box-shadow: 0 28px 80px rgba(7, 26, 55, 0.3); max-height: min(88vh, 820px); overflow: hidden; }
.payment-modal-shell > header { align-items: center; border-bottom: 1px solid #e6edf6; display: flex; justify-content: space-between; padding: 18px 20px; }
.payment-modal-shell > header small { color: var(--netcom-orange-dark); display: block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.payment-modal-shell > header h2 { color: var(--netcom-blue-dark); font: 800 1rem "Manrope", sans-serif; margin: 2px 0 0; }
.payment-modal-close { align-items: center; background: #eef3f9; border: 0; border-radius: 50%; color: var(--netcom-blue-dark); cursor: pointer; display: flex; height: 38px; justify-content: center; width: 38px; }
.payment-modal-content { max-height: calc(88vh - 76px); min-height: 280px; overflow: auto; padding: 20px; }
.payment-modal-loading { align-items: center; color: var(--netcom-muted); display: flex; flex-direction: column; gap: 14px; justify-content: center; min-height: 260px; }
.payment-modal-loading i { color: var(--netcom-orange); font-size: 1.6rem; }
.payment-modal-error { align-items: center; color: #a12828; display: flex; flex-direction: column; gap: 12px; justify-content: center; min-height: 240px; text-align: center; }
.payment-modal-error i { font-size: 1.8rem; }
.payment-method-menu { display: grid; gap: 10px; margin: auto; max-width: 560px; }
.payment-method-menu-intro { color: var(--netcom-muted); font-size: 0.76rem; line-height: 1.5; margin: 0 0 5px; text-align: center; }
.payment-method-option { align-items: center; background: #f7faff; border: 1px solid #dfe8f3; border-radius: 14px; color: var(--netcom-blue-dark); cursor: pointer; display: grid; gap: 12px; grid-template-columns: 42px minmax(0, 1fr) auto; min-height: 68px; padding: 11px 14px; text-align: left; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; width: 100%; }
.payment-method-option:hover, .payment-method-option:focus-visible { border-color: var(--netcom-orange); box-shadow: 0 9px 24px rgba(226, 80, 39, .12); outline: none; transform: translateY(-1px); }
.payment-method-option > span { align-items: center; background: #fff0e6; border-radius: 11px; color: var(--netcom-orange-dark); display: flex; font-size: 1rem; height: 42px; justify-content: center; width: 42px; }
.payment-method-option strong, .payment-method-option small { display: block; }
.payment-method-option strong { font: 800 0.78rem "Manrope", sans-serif; }
.payment-method-option small { color: var(--netcom-muted); font-size: 0.64rem; line-height: 1.4; margin-top: 3px; }
.payment-method-option > i { color: var(--netcom-muted); font-size: 0.72rem; }
.customer-tickets-modal { background: transparent; border: 0; max-height: min(90vh, 880px); max-width: 760px; padding: 0; width: calc(100% - 28px); }
.customer-tickets-modal::backdrop { backdrop-filter: blur(4px); background: rgba(8, 24, 48, .72); }
.customer-tickets-modal-shell { background: #fff; border-radius: 22px; box-shadow: 0 28px 80px rgba(7, 26, 55, .3); max-height: min(90vh, 880px); overflow: hidden; }
.customer-tickets-modal-shell > header { align-items: center; border-bottom: 1px solid #e6edf6; display: flex; justify-content: space-between; padding: 18px 20px; }
.customer-tickets-modal-shell > header small { color: var(--netcom-orange-dark); display: block; font-size: .64rem; font-weight: 800; text-transform: uppercase; }
.customer-tickets-modal-shell > header h2 { color: var(--netcom-blue-dark); font: 800 1.1rem "Manrope", sans-serif; margin: 3px 0 0; }
.customer-tickets-modal-close { align-items: center; background: #eef3f9; border: 0; border-radius: 50%; color: var(--netcom-blue-dark); cursor: pointer; display: flex; height: 38px; justify-content: center; width: 38px; }
.customer-tickets-modal-content { max-height: calc(90vh - 78px); min-height: 160px; overflow: auto; padding: 20px; }
.customer-tickets-intro { color: var(--netcom-muted); font-size: .78rem; line-height: 1.5; margin: 0 0 18px; }
.customer-tickets-notice { background: #f4f8fd; border-radius: 15px; color: var(--netcom-blue-dark); font-size: .8rem; margin: 0; padding: 20px; text-align: center; }
.customer-tickets-notice.is-error { background: #fff1f1; color: #9c2929; }
.customer-ticket-account { border: 1px solid #dfe8f3; border-radius: 17px; margin-bottom: 15px; padding: 17px; }
.customer-ticket-account-heading { align-items: center; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }
.customer-ticket-account-heading small { color: var(--netcom-muted); display: block; font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.customer-ticket-account-heading h3 { color: var(--netcom-blue-dark); font: 800 .95rem "Manrope", sans-serif; margin: 3px 0 0; }
.customer-ticket-account-heading > span { background: #fff0e7; border-radius: 999px; color: #b44418; font-size: .66rem; font-weight: 800; padding: 7px 10px; }
.customer-ticket-account-heading > span.is-eligible { background: #e9f8ee; color: #167c42; }
.customer-ticket-account-detail { color: var(--netcom-muted); font-size: .73rem; line-height: 1.5; margin: 9px 0; }
.customer-ticket-account-count { color: var(--netcom-blue-dark); font-size: .75rem; font-weight: 800; margin: 0 0 12px; }
.customer-ticket-contract { background: #f7faff; border: 1px solid #e8eef7; border-radius: 13px; margin-top: 9px; padding: 13px; }
.customer-ticket-contract h4 { color: var(--netcom-blue-dark); font-size: .78rem; margin: 0 0 9px; overflow-wrap: anywhere; }
.customer-ticket-empty { color: var(--netcom-muted); font-size: .72rem; margin: 0; }
.customer-ticket-list { display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.customer-ticket-item { background: #eaf7ee; border-radius: 10px; padding: 10px; }
.customer-ticket-item.is-paused { background: #fff0e9; }
.customer-ticket-item strong { color: var(--netcom-blue-dark); display: block; font-size: .75rem; overflow-wrap: anywhere; }
.customer-ticket-item small { color: var(--netcom-muted); display: block; font-size: .65rem; margin-top: 3px; }
.payment-boleto-frame { border: 0; border-radius: 12px; display: block; height: min(68vh, 680px); width: 100%; }
.payment-card-frame { background: #f4f4f4; border: 0; border-radius: 12px; display: block; height: min(72vh, 760px); width: 100%; }
.ixc-card-test-button small { background: rgba(226, 80, 39, 0.12); border-radius: 999px; color: var(--netcom-orange-dark); font-size: 0.52rem; margin-left: 2px; padding: 2px 5px; text-transform: uppercase; }
.payment-card-direct { margin: auto; max-width: 620px; }
.payment-card-test-warning { align-items: flex-start; background: #fff4df; border: 1px solid #f4d396; border-radius: 14px; color: #7b5311; display: flex; font-size: 0.75rem; gap: 10px; line-height: 1.45; margin-bottom: 18px; padding: 12px 14px; }
.payment-card-test-warning i { color: #df8714; margin-top: 3px; }
.payment-card-test-warning strong { display: block; }
.payment-card-form .payment-card-recurrence { align-items: center; background: #f3f8ff; border: 1px solid #dbe9fb; border-radius: 13px; column-gap: 10px; display: grid; grid-template-columns: 22px minmax(0, 1fr); padding: 13px 14px; row-gap: 4px; }
.payment-card-form .payment-card-recurrence input { appearance: auto; align-self: center; background: initial; border-radius: 3px; box-shadow: none; grid-row: 1 / span 2; height: 18px; margin: 0; min-height: 18px; padding: 0; width: 18px; }
.payment-card-form .payment-card-recurrence span { color: var(--netcom-blue-dark); font-size: 0.72rem; font-weight: 800; }
.payment-card-form .payment-card-recurrence small { color: var(--netcom-muted); font-size: 0.62rem; font-weight: 600; grid-column: 2; line-height: 1.45; }
.payment-card-success { align-items: center; display: flex; flex-direction: column; min-height: 300px; padding: 22px; text-align: center; }
.payment-card-success > i { align-items: center; background: #e7f8ef; border-radius: 50%; color: #168653; display: flex; font-size: 2rem; height: 74px; justify-content: center; width: 74px; }
.payment-card-success h3 { color: var(--netcom-blue-dark); font-size: 1.2rem; margin: 18px 0 7px; }
.payment-card-success p { color: var(--netcom-muted); font-size: 0.75rem; line-height: 1.55; margin: 0; max-width: 440px; }
.payment-card-success small { color: #52708f; font-size: 0.62rem; margin-top: 10px; }
.payment-card-success button { background: var(--netcom-orange); border: 0; border-radius: 999px; color: #fff; cursor: pointer; font: 800 0.74rem "Manrope", sans-serif; margin-top: 20px; padding: 11px 18px; }
.payment-card-form { display: grid; gap: 14px; }
.payment-card-form label { color: var(--netcom-blue-dark); display: grid; font-size: 0.7rem; font-weight: 800; gap: 6px; }
.payment-card-form input, .payment-card-form select { background: #fff; border: 1px solid #ced9e7; border-radius: 11px; box-sizing: border-box; color: var(--netcom-blue-dark); font: 600 0.85rem "Manrope", sans-serif; min-height: 44px; padding: 10px 12px; width: 100%; }
.payment-card-form input:focus, .payment-card-form select:focus { border-color: var(--netcom-orange); box-shadow: 0 0 0 3px rgba(226, 80, 39, 0.12); outline: 0; }
.payment-card-brand-hint { color: var(--netcom-muted); font-size: 0.62rem; font-weight: 700; }
.payment-card-brand-hint[data-brand]:not([data-brand=""]) { color: #168653; }
.payment-card-form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.payment-card-captcha { align-items: end; background: #f6f8fb; border-radius: 14px; display: grid; gap: 14px; grid-template-columns: 200px 1fr; padding: 13px; }
.payment-card-captcha img { background: #fff; border-radius: 8px; height: 40px; max-width: 100%; object-fit: contain; width: 200px; }
.payment-card-form > button { background: var(--netcom-orange); border: 0; border-radius: 999px; color: #fff; cursor: pointer; font: 800 0.82rem "Manrope", sans-serif; min-height: 46px; padding: 11px 18px; }
.payment-card-form > button:disabled { cursor: wait; opacity: 0.65; }
.payment-card-direct-status { border-radius: 11px; color: var(--netcom-blue-dark); font-size: 0.72rem; font-weight: 700; line-height: 1.45; margin: 0; min-height: 20px; padding: 9px 11px; text-align: center; }
.payment-card-direct-status:empty { padding: 0; }
.payment-card-direct-status.is-processing { background: #edf4ff; color: #24528b; }
.payment-card-direct-status.is-success { background: #e8f8ef; color: #168653; }
.payment-card-direct-status.is-error { background: #fff0ed; color: #a12828; }
.payment-card-result-frame { border: 0; height: 1px; left: -10000px; position: fixed; width: 1px; }
.payment-pix-content { margin: auto; max-width: 560px; text-align: center; }
.payment-pix-content p { color: var(--netcom-muted); line-height: 1.5; }
.payment-pix-content img { display: block; height: 210px; margin: 14px auto; object-fit: contain; width: 210px; }
.payment-pix-content label { color: var(--netcom-blue-dark); display: block; font-size: 0.7rem; font-weight: 800; margin: 16px 0 7px; text-align: left; }
.payment-pix-content textarea { border: 1px solid #d5e0ec; border-radius: 12px; box-sizing: border-box; min-height: 96px; padding: 11px; resize: vertical; width: 100%; }
.payment-pix-content button { background: var(--netcom-orange); border: 0; border-radius: 999px; color: #fff; cursor: pointer; font-weight: 800; margin-top: 12px; padding: 10px 16px; }
.payment-pix-status { color: #168653; display: block; font-size: 0.7rem; margin-top: 8px; }
.recurring-payment-icon { background: #e8f7ef !important; color: #168653 !important; }
.recurring-payment-panel { min-height: 92px; }
.recurring-payment-loading, .recurring-payment-empty { align-items: center; color: var(--netcom-muted); display: flex; font-size: 0.68rem; gap: 10px; min-height: 82px; }
.recurring-payment-loading i { color: var(--netcom-orange); }
.recurring-payment-empty { align-items: flex-start; background: #f7f9fc; border-radius: 13px; padding: 14px; }
.recurring-payment-empty > i { color: #168653; font-size: 1.05rem; margin-top: 2px; }
.recurring-payment-empty strong, .recurring-payment-item strong { color: var(--netcom-blue-dark); display: block; font-size: 0.72rem; }
.recurring-payment-empty p, .recurring-payment-item small { color: var(--netcom-muted); font-size: 0.61rem; line-height: 1.45; margin: 3px 0 0; }
.recurring-payment-list { display: grid; gap: 9px; }
.recurring-payment-item { align-items: center; border: 1px solid #e1eaf4; border-radius: 13px; display: grid; gap: 10px; grid-template-columns: 34px 1fr auto; padding: 11px; }
.recurring-payment-item > i { align-items: center; background: #e8f7ef; border-radius: 10px; color: #168653; display: flex; height: 34px; justify-content: center; width: 34px; }
.recurring-payment-disable { background: #fff0ed; border: 0; border-radius: 999px; color: #a83b2f; cursor: pointer; font: 800 0.6rem "Manrope", sans-serif; padding: 8px 11px; }
.recurring-payment-disable:disabled { cursor: wait; opacity: 0.6; }
.recurring-payment-feedback { border-radius: 10px; color: #24528b; font-size: 0.62rem; margin-top: 9px; padding: 9px; }
.recurring-payment-item > .recurring-payment-feedback { grid-column: 1 / -1; margin: 0; }
.recurring-payment-feedback.is-error { background: #fff0ed; color: #a12828; }
.recurring-payment-feedback.is-success { background: #e8f8ef; color: #168653; }
.app-dashboard-header nav a,
.mobile-bottom-nav a { transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.mobile-bottom-nav a.active { color: var(--netcom-orange-dark); }
.mobile-bottom-nav a.active i { transform: translateY(-1px); }

@media (display-mode: standalone) {
    [data-pwa-site-link] { display: none !important; }
    .customer-header,
    .app-dashboard-header { display: none !important; }
    .auth-shell { min-height: 100dvh; padding-top: max(32px, env(safe-area-inset-top)); }
    .customer-dashboard-page { padding-bottom: 78px; }
    .app-dashboard { padding-top: max(24px, env(safe-area-inset-top)); }
    .mobile-bottom-nav { align-items: center; background: rgba(255, 255, 255, 0.97); border-top: 1px solid #dde6f2; bottom: 0; display: grid; grid-template-columns: repeat(4, 1fr); left: 0; padding: 8px 6px max(8px, env(safe-area-inset-bottom)); position: fixed; right: 0; z-index: 200; }
    .mobile-bottom-nav a { align-items: center; color: #7c899c; display: flex; flex-direction: column; font-size: 0.6rem; font-weight: 700; gap: 4px; text-decoration: none; }
    .mobile-bottom-nav a i { font-size: 1rem; }
    .app-footer { display: none; }
}

.pwa-standalone [data-pwa-site-link],
.pwa-standalone .customer-header,
.pwa-standalone .app-dashboard-header { display: none !important; }
.pwa-standalone .auth-shell { min-height: 100dvh; padding-top: max(32px, env(safe-area-inset-top)); }
.pwa-standalone .customer-dashboard-page { padding-bottom: 78px; }
.pwa-standalone .app-dashboard { padding-top: max(24px, env(safe-area-inset-top)); }
.pwa-standalone .mobile-bottom-nav { align-items: center; background: rgba(255, 255, 255, 0.97); border-top: 1px solid #dde6f2; bottom: 0; display: grid; grid-template-columns: repeat(4, 1fr); left: 0; padding: 8px 6px max(8px, env(safe-area-inset-bottom)); position: fixed; right: 0; z-index: 200; }
.pwa-standalone .mobile-bottom-nav a { align-items: center; color: #7c899c; display: flex; flex-direction: column; font-size: 0.6rem; font-weight: 700; gap: 4px; text-decoration: none; }
.pwa-standalone .mobile-bottom-nav a i { font-size: 1rem; }
.pwa-standalone .app-footer { display: none; }

@media (max-width: 960px) {
    .app-dashboard-header nav a:not(.dashboard-nav-active), .app-dashboard-header nav form { display: none; }
    .app-hero-grid { grid-template-columns: 1fr; }
    .internet-glance { min-height: 250px; }
    .two-column-sections { grid-template-columns: 1fr; }
    .central-data-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    html { scroll-padding-top: 78px; }
    .customer-dashboard-page { padding-bottom: 74px; }
    .app-dashboard-header { min-height: 64px; }
    .app-dashboard-header nav { display: none; }
    .app-dashboard { padding: 28px 15px; }
    .app-welcome { align-items: flex-start; }
    .app-welcome h1 { font-size: 2.15rem; }
    .profile-chip { padding: 7px; }
    .profile-chip > div { display: none; }
    .mobile-offer-card { align-items: start; gap: 16px; grid-template-columns: 62px 1fr; padding: 22px 18px; }
    .mobile-offer-visual { min-height: 64px; }
    .mobile-offer-visual > span { border-radius: 17px; font-size: 1.25rem; height: 58px; width: 50px; }
    .mobile-offer-copy h2 { font-size: 1.3rem; }
    .mobile-offer-copy > div { display: grid; gap: 6px; }
    .mobile-offer-card > a { grid-column: 1 / -1; width: 100%; }
    .mobile-line-hero { border-radius: 22px; min-height: 255px; padding: 22px; }
    .central-section + #chip { margin-top: 30px; }
    .line-hero-content { margin: 42px 0 34px; }
    .line-hero-content strong { font-size: 1.75rem; }
    .payment-modal-content { padding: 14px; }
    .payment-boleto-frame { height: 70vh; }
    .payment-card-frame { height: 72vh; }
    .payment-card-captcha { align-items: stretch; grid-template-columns: 1fr; }
    .internet-glance { border-radius: 22px; gap: 20px; grid-template-columns: 120px 1fr; min-height: 0; padding: 24px 20px; }
    .usage-ring { height: 116px; width: 116px; }
    .usage-ring::before { inset: 10px; }
    .usage-ring strong { font-size: 1.3rem; }
    .internet-glance-copy h2 { font-size: 1.65rem; }
    .quick-actions { grid-template-columns: 1fr; }
    .quick-actions > a { padding: 12px; }
    .app-section { border-radius: 20px; padding: 20px; }
    .app-section-heading { align-items: flex-start; }
    .app-section-heading > small { display: none; }
    .usage-category-grid, .current-plan-card, .activity-grid { grid-template-columns: 1fr; }
    .central-summary-grid { grid-template-columns: 1fr; }
    .central-card { padding: 17px; }
    .central-record.has-pending-signature { align-items: start; grid-template-columns: 34px minmax(0, 1fr); }
    .central-record.has-pending-signature .central-record-side { align-items: stretch; grid-column: 1 / -1; }
    .central-record.has-pending-signature .central-status { align-self: flex-start; }
    .ixc-contract-review-button, .ixc-contract-photo-recovery-button { justify-content: center; }
    .contract-signature-content { padding: 14px; }
    .contract-pdf-frame { height: 54vh; }
    .identity-guide-grid { grid-template-columns: 1fr; }
    .identity-reference-image-upscaled { margin: 0 auto; max-height: 220px; max-width: 360px; }
    .camera-guide span { left: 10%; width: 45%; }
    .camera-guide i { font-size: 1.4rem; padding: 11px 16px; right: 5%; }
    .contract-step-actions { display: grid; grid-template-columns: 1fr; }
    .contract-step-actions button { width: 100%; }
    .daily-usage { padding: 12px 8px; }
    .daily-usage-summary { gap: 5px; }
    .daily-usage-summary > div { padding: 8px 7px; }
    .daily-usage-chart { height: auto; padding: 0; }
    .daily-usage-lines { height: 190px; }
    .daily-usage-bars { gap: 6px; grid-template-columns: repeat(4, minmax(52px, 1fr)); min-height: 205px; }
    .daily-usage-track { height: 135px; width: 68%; }
    .daily-usage-value { font-size: 0.43rem; }
    .trust-unlock-list > div { grid-template-columns: 32px 1fr; }
    .trust-unlock-button { grid-column: 1 / -1; }
    .category-copy > div:first-child { align-items: flex-start; flex-direction: column; gap: 2px; }
    .current-plan-card { padding: 20px; }
    .plan-main h3 { font-size: 1.45rem; }
    .support-card { grid-template-columns: 52px 1fr; padding: 22px 18px; }
    .support-illustration { border-radius: 15px; height: 48px; width: 48px; }
    .support-card > a { grid-column: 1 / -1; justify-content: center; }
    .mobile-bottom-nav { align-items: center; background: rgba(255, 255, 255, 0.96); border-top: 1px solid #dde6f2; bottom: 0; display: grid; grid-template-columns: repeat(4, 1fr); left: 0; padding: 8px 6px max(8px, env(safe-area-inset-bottom)); position: fixed; right: 0; z-index: 200; }
    .mobile-bottom-nav a { align-items: center; color: #7c899c; display: flex; flex-direction: column; font-size: 0.6rem; font-weight: 700; gap: 4px; text-decoration: none; }
    .mobile-bottom-nav a i { font-size: 1rem; }
    .mobile-bottom-nav a.active { background: #fff2e8; border-radius: 12px; color: var(--netcom-orange-dark); padding: 5px 2px; }
    .app-footer { display: none; }
}

@media (max-width: 410px) {
    .line-hero-footer span:last-child { display: none; }
    .internet-glance { grid-template-columns: 105px 1fr; }
    .usage-ring { height: 100px; width: 100px; }
    .internet-glance-copy h2 { font-size: 1.45rem; }
}
