:root {
    --brand: #4f46e5;
    --brand-dark: #3730a3;
    --bg: #f4f5fb;
    --text: #0f172a;
    --muted: #475569;
    --border: #e2e8f0;
    --white: #ffffff;
    --success: #22c55e;
    font-family: var(--am-font-family, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    font-family: inherit;
    background: var(--am-color-bg, var(--bg));
    color: var(--text);
    min-height: 100vh;
    width: 100vw;
    padding: 0px !important;
    max-width: 100%;
}

body {
    overflow-x: hidden;
}

h1, h2 {
    margin: 0;
    font-weight: 600;
}

.screen {
    padding: 1.5rem;
    max-width: 520px;
    margin: 0 auto;
}

.screen--full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem 3rem;
}

.hero {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--brand);
}

.hero__logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form__group span {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.form__group input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid var(--border);
    font-size: 1rem;
}

.password-field {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    padding-right: 0.5rem;
}

.password-field input {
    border: 0;
    padding: 0.9rem 1rem;
    flex: 1;
}

.am-btn--full {
    width: 100%;
    justify-content: center;
}

.am-btn-link {
    background: transparent;
    border: 0;
    color: var(--brand);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem;
}

.am-btn--success {
    background: var(--success);
    border: 1px solid var(--success);
    color: var(--white);
}

.am-btn--success:hover,
.am-btn--success:focus-visible {
    background: #16a34a;
    border-color: #16a34a;
    color: var(--white);
}

.am-btn--compact {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    min-width: unset;
}

.am-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.am-btn--ghost {
    background: transparent;
    color: var(--brand);
    border: 1px solid rgba(79, 70, 229, 0.25);
}

.avatar-btn {
    padding: 0.55rem 1rem;
    font-weight: 600;
}

.feedback {
    min-height: 1.2rem;
    font-size: 0.9rem;
}

.feedback--error {
    color: #ef4444;
}

.feedback--success {
    color: var(--success);
}

.support-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

.recovery-screen {
    min-height: 100vh;
    background: var(--bg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recovery-card {
    width: 100%;
    max-width: 420px;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recovery-card h1 {
    margin-bottom: 0.2rem;
    font-size: 1.25rem;
}

.recovery-description {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.recovery-form {
    gap: 0.75rem;
}

.recovery-form--hidden {
    display: none;
}

.recovery-form .am-btn {
    margin-top: 0.25rem;
}

.modal-frame {
    width: 100%;
    min-height: 420px;
    border: 0;
}

@media (min-width: 768px) {
    .modal-frame {
        min-height: 520px;
    }
}

.portal-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem 1rem;
    box-sizing: border-box;
}

.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #4254A9;
    color: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.portal-header .dashboard-header__brand {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    color: #fff;
}

.portal-header .brand-title,
.portal-header .dashboard-header__brand span,
.portal-header .dashboard-header__brand p {
    color: #fff;
}

.portal-header .drawer-toggle {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.portal-header .drawer-toggle span {
    background: #fff;
}

.module-item {
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: transparent;
    color: var(--brand);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    text-align: left;
}

.module-item:hover,
.module-item:focus-visible {
    background: rgba(79, 70, 229, 0.1);
}

.module-item .menu-alert {
    margin-left: 0.45rem;
    font-size: 1rem;
}

.tab-shell {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    width: 100%;
}

.drawer-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    margin-right: 1rem;
}

.drawer-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
    display: block;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(280px, 75%);
    height: 100vh;
    background: #4254A9;
    box-shadow: 8px 0 40px rgba(15, 23, 42, 0.15);
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
}

.drawer--open {
    transform: translateX(0);
}

.drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    color: #fff;
}

.drawer-close {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #fff;
}

.drawer__menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer__menu .module-item {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.drawer__menu .module-item:hover,
.drawer__menu .module-item:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.drawer__footer {
    margin-top: auto;
    padding-top: 1rem;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 999;
}

.drawer-backdrop[hidden] {
    display: none;
}

.drawer-open {
    overflow: hidden;
}

.tab-strip {
    display: flex;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    overflow-x: auto;
}

.tab-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

.tab-chip--active {
    border-color: var(--brand);
    color: var(--brand);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.15);
}

.tab-chip__close {
    border: 0;
    background: transparent;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    color: inherit;
}

.iframe-stage {
    flex: 1;
    position: relative;
    width: 100%;
}

.iframe-stage iframe {
    border: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: none;
}

.iframe-stage iframe.active {
    display: block;
}

.dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.25rem;
}

.dashboard-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 1rem;
}

.dashboard-header__brand {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.brand-fallback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.dashboard-logo {
    width: 48px;
    height: 48px;
}

.dashboard-header__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.dashboard-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.35);
}

.dashboard-alert--blocked {
    background: rgba(255, 99, 71, 0.15);
    border-color: rgba(255, 99, 71, 0.35);
}

.dashboard-alert[hidden] {
    display: none !important;
}

.dashboard-alert > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-alert__icon {
    font-size: 1.5rem;
    margin: 0;
}

.dashboard-alert__text {
    margin: 0;
    color: #7c5700;
}

.dashboard-alert__btn {
    padding: 0;
    font-weight: 600;
    color: #7c5700;
}

.dashboard-alert--blocked .dashboard-alert__text,
.dashboard-alert--blocked .dashboard-alert__btn {
    color: #8c1c1c;
}

.subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0 0 0.2rem;
}

.cliente-id {
    font-size: 0.85rem;
    color: var(--muted);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.status-pill--outline {
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: var(--muted);
}

.status-pill--success {
    background: #78BB7B;
    color: #fff;
}

.status-pill--blocked {
    background: #FCE5C5;
    color: #8C4A00;
}

.status-pill--error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.plan-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-summary__main p {
    margin: 0;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 0.35rem;
    font-size: 0.95rem;
}

.info-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

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

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quick-actions__header h2 {
    margin-bottom: 0.2rem;
}

.quick-actions__header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.quick-actions__grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.quick-action {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    background: var(--white);
    text-align: left;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.quick-action::before {
    content: '';
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: var(--brand);
}

.quick-action small {
    color: var(--muted);
    font-weight: 500;
}

.timeline {
    border-radius: 1rem;
    padding: 1.25rem;
}

.timeline__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.timeline ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.timeline li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline__empty {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0.5rem 0 0;
}

.timeline__title {
    display: block;
    font-weight: 600;
}

.timeline__subtitle {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.timeline time {
    font-size: 0.85rem;
    color: var(--muted);
}

.page-shell {
    min-height: 100vh;
    background: var(--bg);
}

.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page__head,
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 0;
}

.data-grid div {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 0.4rem;
}

.data-grid dt {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.data-grid dd {
    margin: 0.1rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.contracts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contracts--history .contract-card {
    font-size: 0.92rem;
}

.contracts--history .contract-card__title {
    font-size: 0.95rem;
}

.contracts--history .detail-label {
    font-size: 0.72rem;
}

.contracts--history .detail-value {
    font-size: 0.95rem;
}

.contract-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contract-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contract-card__title {
    font-weight: 600;
    font-size: 1rem;
}

.contracts__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.detail-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.detail-value {
    display: block;
    font-size: 1rem;
    color: var(--text);
}

.detail-full {
    grid-column: 1 / -1;
    color: #381800;
}

.detail-full .detail-label,
.detail-full .detail-value {
    color: #F17100;
}

.contract-card__plan {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: center;
}

.contract-card__plan .plan-name {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.payment-info {
    margin-top: 0.75rem;
    padding: 0.6rem 0.2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.payment-info span {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 0.3rem;
}

.payment-info strong {
    font-size: 0.95rem;
    color: var(--text);
}

.contracts__empty {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.notifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    background: var(--white);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.notification-card:hover,
.notification-card:focus-within {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.notification-card--read {
    opacity: 0.7;
}

.notification-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.notification-card__status {
    font-size: 1rem;
}

.notification-card__date {
    font-size: 0.8rem;
    color: var(--muted);
}

.notification-card__actions {
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-end;
}

.notification-card__btn {
    font-size: 0.85rem;
}

.notifications__empty {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.notification-modal__date {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.notification-modal__message {
    font-size: 0.95rem;
    color: var(--text);
    white-space: pre-line;
}

.payment-modal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    padding-right: 0.35rem;
}

@media (max-width: 640px) {
    .payment-modal {
        max-height: calc(100vh - 4rem);
        padding-right: 0.5rem;
    }
}

.payment-scroll-spacer {
    height: 2.5rem;
    flex-shrink: 0;
}

.payment-success-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.12);
    text-align: center;
    min-height: 220px;
}

.payment-success-panel h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #166534;
}

.payment-success-text {
    margin: 0;
    font-size: 0.95rem;
    color: #14532d;
}

.payment-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.payment-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
}

.payment-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(79, 70, 229, 0.2);
    color: var(--brand);
}

.payment-status-badge--success {
    background: rgba(34, 197, 94, 0.2);
    color: #0f5132;
}

.payment-status-env {
    font-size: 0.75rem;
    font-weight: 600;
    color: #b45309;
}

.payment-status-text {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.payment-success-banner {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.9rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.payment-columns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-section {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.9rem;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.payment-info-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.payment-info-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin: 0;
}

.payment-info-value {
    font-size: 1rem;
    color: var(--text);
}

.payment-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.75rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.02);
}

.payment-line-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
    margin: 0.2rem 0 0;
    word-break: break-all;
}

.payment-barcode {
    margin-top: 1rem;
}

.payment-barcode-img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    border-radius: 0.5rem;
    background: var(--white);
    padding: 0.5rem;
    border: 1px dashed rgba(15, 23, 42, 0.15);
}

.payment-section--pix {
    min-height: 260px;
}

.payment-qr {
    width: 100%;
    min-height: 200px;
    border: 1px dashed rgba(15, 23, 42, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    margin-bottom: 0.75rem;
}

.payment-qr img {
    max-width: 200px;
    max-height: 200px;
}

.payment-pix-text {
    width: 100%;
    resize: none;
    font-size: 0.9rem;
    min-height: 90px;
    margin-bottom: 0.5rem;
}

.payment-copy-btn {
    align-self: flex-start;
}

.payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.payment-loading,
.payment-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 0.5rem;
    text-align: center;
}

.payment-spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid rgba(79, 70, 229, 0.2);
    border-top-color: var(--brand);
    animation: paymentSpin 0.8s linear infinite;
}

@keyframes paymentSpin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
    .payment-columns {
        flex-direction: row;
    }

    .payment-section {
        flex: 1;
    }
}

@media (min-width: 640px) {
    .screen,
    .screen--full {
        max-width: 720px;
    }

    .plan-summary {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .plan-summary__main {
        flex: 1;
    }

    .info-list {
        flex: 1;
        padding-left: 1rem;
        border-left: 1px solid rgba(15, 23, 42, 0.08);
    }
}
