/* FinanKeep — Site público · Design profissional v2 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

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

:root {
    --green:        #2563EB;
    --green-dark:   #1D4ED8;
    --green-deeper: #1D3A89;
    --green-light:  #EFF4FE;
    --green-mid:    #DBEAFE;
    --accent:       #3779F2;
    --text:         #0f172a;
    --text-2:       #334155;
    --muted:        #64748b;
    --muted-light:  #94a3b8;
    --bg:           #ffffff;
    --bg2:          #f8fafc;
    --bg3:          #f1f5f9;
    --border:       #e2e8f0;
    --border-light: #f1f5f9;
    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --radius-xl:    28px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow:       0 4px 16px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.1), 0 8px 24px rgba(0,0,0,.06);
    --shadow-green: 0 8px 32px rgba(37,99,235,.28);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
    letter-spacing: -.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(37,99,235,.32);
}

.nav-links { display: flex; gap: 4px; list-style: none; }

.nav-links a {
    color: var(--muted);
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: all .15s ease;
    display: block;
}

.nav-links a:hover {
    color: var(--text);
    background: var(--bg3);
    text-decoration: none;
}

.nav-cta {
    background: var(--green) !important;
    color: #fff !important;
    padding: 7px 16px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
    color: #fff !important;
}

/* Botão "Entrar" (área de cliente) */
.nav-login {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    color: var(--green) !important;
    border: 1.5px solid var(--green);
    padding: 6px 15px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}
.nav-login:hover {
    background: var(--green-light) !important;
    color: var(--green-dark) !important;
    text-decoration: none;
}

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; padding: 4px; color: var(--text); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, var(--green-mid) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    color: var(--green-dark);
    border: 1px solid rgba(37,99,235,.2);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 24px;
    letter-spacing: .01em;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 22px;
    color: var(--text);
}

.hero h1 span {
    color: var(--green);
    position: relative;
}

.hero > .container > p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ── Botões ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all .2s ease;
    text-decoration: none;
    letter-spacing: -.01em;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 40px rgba(37,99,235,.35);
    text-decoration: none;
    color: #fff;
}

.btn-outline {
    background: var(--bg);
    color: var(--text-2);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--bg3);
    border-color: #cbd5e1;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Phone Mockup ───────────────────────────────────────────────────────── */
.phone-mockup {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

.phone-frame {
    width: 240px;
    height: 480px;
    background: #0f172a;
    border-radius: 44px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 32px 80px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.06), inset 0 1px 0 rgba(255,255,255,.1);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px 14px;
}

.phone-screen {
    width: 100%;
    background: #f8fafc;
    border-radius: 30px;
    flex: 1;
    overflow: hidden;
}

.phone-ui { padding: 14px; }

.phone-ui .pbar {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--accent) 100%);
    margin-bottom: 8px;
}

.phone-ui .pcard {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    font-size: 9px;
    color: var(--text-2);
}

.phone-ui .pcard .pval {
    font-size: 16px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -.02em;
}

.phone-ui .ptx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 8px;
    background: #fff;
    padding: 6px 8px;
    border-radius: 7px;
    margin-bottom: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.phone-ui .ptx .neg { color: #ef4444; font-weight: 700; }
.phone-ui .ptx .pos { color: var(--green); font-weight: 700; }

.phone-notch {
    width: 72px;
    height: 8px;
    background: #1e293b;
    border-radius: 4px;
    margin-bottom: 14px;
}

/* ── Secções ─────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg2); }

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title .eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--text);
}

.section-title p {
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── Feature Cards ──────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--accent));
    opacity: 0;
    transition: opacity .2s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: rgba(37,99,235,.15);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: -.01em;
}

.feature-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
}

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: box-shadow .2s, transform .2s;
}

.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.stat-card .stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--green);
    letter-spacing: -.04em;
    margin-bottom: 4px;
}

.stat-card .stat-label {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 500;
}

/* ── Download ────────────────────────────────────────────────────────────── */
.download-section {
    background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green-dark) 50%, var(--green) 100%);
    color: #fff;
    text-align: center;
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.download-section .container { position: relative; z-index: 1; }

.download-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}

.download-section > .container > p {
    opacity: .8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--text);
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    text-decoration: none;
    color: var(--text);
}

.store-icon { font-size: 1.6rem; }

/* Badge oficial Google Play */
.store-badge {
    display: inline-block;
    transition: transform .2s ease, filter .2s ease;
    line-height: 0;
}
.store-badge img {
    height: 58px;
    width: auto;
    display: block;
}
.store-badge:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.28));
    text-decoration: none;
}

/* ── Formulário de contacto ─────────────────────────────────────────────── */
.contact-form { max-width: 560px; margin: 0 auto; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: .875rem;
    color: var(--text-2);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: inherit;
    transition: all .15s ease;
    background: #fff;
    color: var(--text);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(37,99,235,.1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #cbd5e1;
}

.form-group textarea { min-height: 130px; resize: vertical; }

.msg-success {
    background: var(--green-light);
    color: var(--green-deep);
    border: 1px solid rgba(37,99,235,.2);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.msg-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid rgba(220,38,38,.15);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: .9rem;
}

.msg-warn {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid rgba(180,83,9,.15);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: .9rem;
}

/* ── Páginas legais ─────────────────────────────────────────────────────── */
.legal-page { max-width: 760px; margin: 60px auto; padding: 0 24px 100px; }
.legal-page h1 { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 8px; }
.legal-page .updated { color: var(--muted); font-size: .875rem; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.15rem; font-weight: 700; margin: 36px 0 12px; color: var(--green); }
.legal-page p, .legal-page li { color: var(--text-2); line-height: 1.8; margin-bottom: 12px; font-size: .95rem; }
.legal-page ul, .legal-page ol { padding-left: 24px; }
.legal-page a { color: var(--green); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
    background: #0a0f1a;
    color: #64748b;
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid #1e293b;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    box-shadow: none;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    max-width: 280px;
    color: #475569;
}

.footer-col h4 {
    color: #e2e8f0;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: #64748b;
    font-size: .9rem;
    margin-bottom: 10px;
    transition: color .15s;
}

.footer-col a:hover { color: #e2e8f0; text-decoration: none; }

.footer-bottom {
    padding: 24px;
    text-align: center;
    font-size: .82rem;
    color: #334155;
}

/* backward compat: footer-links still works */
.footer-links { display: contents; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 16px 20px 20px;
        gap: 4px;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 24px; }
    .hero { padding: 72px 0 56px; }
    .section { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── Language Switcher ───────────────────────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 4px;
    padding: 0 4px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: all .15s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--bg3);
    color: var(--text);
    text-decoration: none;
}

.lang-btn.lang-active {
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 600;
}

.lang-label { font-size: .78rem; }

@media (max-width: 960px) {
    .lang-label { display: none; }
}

@media (max-width: 768px) {
    .lang-switcher {
        flex-direction: row;
        border: none;
        padding: 8px 0 4px;
        margin: 0;
        border-top: 1px solid var(--border);
    }
    .lang-label { display: inline; }
}

/* ── Screens Gallery ─────────────────────────────────────────────────────── */
.screens-section {
    background: var(--bg2);
    overflow: hidden;
}

.phones-track-wrapper {
    position: relative;
    width: 100%;
}

/* Desktop: 3 side-by-side, centered — explicit row */
.phones-track {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-end;
    gap: 32px;
    padding-bottom: 16px;
    width: 100%;
}

.phone-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

/* Middle phone elevated on desktop */
@media (min-width: 769px) {
    .phone-slide[data-index="1"] .phone-device__frame {
        transform: translateY(-28px);
        box-shadow:
            0 0 0 7px #1e293b,
            0 0 0 8px rgba(255,255,255,.06),
            0 40px 80px rgba(0,0,0,.45),
            0 12px 24px rgba(0,0,0,.25);
    }
}

/* ── The physical device shell ──────────────────────────────────────────── */
.phone-device__frame {
    width: 224px;
    height: 464px;
    background: #0f172a;
    border-radius: 42px;
    border: 1.5px solid rgba(255,255,255,.08);
    box-shadow:
        0 0 0 6px #1e293b,
        0 0 0 7px rgba(255,255,255,.05),
        0 28px 60px rgba(0,0,0,.38),
        0 8px 16px rgba(0,0,0,.2);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 12px 12px;
    box-sizing: border-box;
}

/* Pill notch */
.phone-device__notch {
    width: 68px;
    height: 8px;
    background: #1e293b;
    border-radius: 4px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

/* Screen area */
.phone-device__screen {
    width: 100%;
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
    min-height: 0; /* flex fix */
}

/* Real screenshot fills the frame */
.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Placeholder when no image exists */
.screen-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(160deg, #EFF4FE 0%, #f8fafc 100%);
}

.screen-placeholder__icon { font-size: 2.8rem; }

.screen-placeholder__text {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-2);
    text-align: center;
    padding: 0 14px;
}

.screen-placeholder__hint {
    font-size: .7rem;
    color: var(--muted-light);
    border: 1.5px dashed var(--border);
    padding: 3px 12px;
    border-radius: 99px;
}

/* Label under each phone */
.phone-label {
    margin-top: 22px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    letter-spacing: -.01em;
}

/* Dots — hidden on desktop */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: all .25s ease;
    appearance: none;
}

.dot--active {
    background: var(--green);
    width: 24px;
}

/* ── Mobile: horizontal snap carousel ───────────────────────────────────── */
@media (max-width: 768px) {
    .screens-section {
        padding-left: 0;
        padding-right: 0;
    }

    .screens-section .section-title {
        padding-left: 24px;
        padding-right: 24px;
    }

    .phones-track {
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 20px !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* side padding creates the "peek" effect showing next card */
        padding: 12px 60px 28px !important;
        scroll-padding-inline: 60px;
    }

    .phones-track::-webkit-scrollbar { display: none; }

    .phone-slide {
        scroll-snap-align: center;
    }

    .phone-device__frame {
        width: 210px;
        height: 438px;
        border-radius: 38px;
        box-shadow:
            0 0 0 5px #1e293b,
            0 0 0 6px rgba(255,255,255,.05),
            0 20px 48px rgba(0,0,0,.32);
    }

    .phone-device__notch {
        width: 58px;
        height: 7px;
    }

    .carousel-dots { display: flex; }
}

@media (max-width: 420px) {
    .phones-track {
        padding: 12px 40px 28px !important;
        gap: 16px !important;
    }
    .phone-device__frame {
        width: 188px;
        height: 392px;
        border-radius: 34px;
    }
}

    .phone-device__frame { width: 180px; height: 380px; }
}
