:root {
    --bg: #06080a;
    --bg2: #0a0d14;
    --surface: #0f1420;
    --surface2: #161d2e;
    --surface3: #1d2840;
    --green: #00e676;
    --green-dim: #00b359;
    --green-glow: rgba(0, 230, 118, 0.15);
    --green-border: rgba(0, 230, 118, 0.28);
    --blue: #00b0ff;
    --blue-dim: rgba(0, 176, 255, 0.12);
    --blue-border: rgba(0, 176, 255, 0.28);
    --accent: #ff6d3b;
    --accent-glow: rgba(255, 109, 59, 0.15);
    --accent-border: rgba(255, 109, 59, 0.3);
    --purple: #b388ff;
    --text: #e8f0ff;
    --muted: #8899bb;
    --white: #ffffff;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(160deg, #06080a 0%, #080d18 50%, #06080a 100%);
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ── BACKGROUND GLOW ORBS ── */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    will-change: transform;
    transform: translateZ(0);
}

.bg-orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    top: 40%;
    right: -150px;
    background: radial-gradient(circle, rgba(179, 136, 255, 0.14) 0%, transparent 70%);
}

.bg-orb-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 20%;
    background: radial-gradient(circle, rgba(0, 176, 255, 0.10) 0%, transparent 70%);
}

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px 20px 12px;
}

.avatar-ring {
    display: inline-block;
    position: relative;
    margin-bottom: 12px;
}

.avatar-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #00e676;
    position: relative;
    z-index: 1;
}

.live-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: linear-gradient(to bottom, #00e676, #00b0ff);
    border: 2px solid var(--bg);
    border-radius: 20px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 2;
}

.hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 4px;
    color: #ffffff;
}

.hero-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 440px;
    margin: 0 auto 0;
    line-height: 1.7;
    font-weight: 400;
}

/* ── CTA SECTION ── */
.cta-section {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 16px auto;
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.cta-section p {
    margin: 0;
    color: var(--text);
    font-size: 22px;
    font-weight: bold;
}

.cta-whatsapp {
    color: var(--green);
    font-weight: 700;
}

.cta-telegram {
    color: var(--blue);
    font-weight: 700;
}

/* ── FEATURES ── */
.features-section {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 16px auto 0;
    padding: 0 16px;
}

.features-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.features-title .check {
    color: #00e676;
    font-size: 32px;
}

.features-sub {
    text-align: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
    line-height: 1.5;
}

.features-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 230, 118, 0.3), rgba(0, 176, 255, 0.2), transparent);
    margin: 8px 0 16px;
}

/* ── SOCIAL PROOF LIST ── */
.social-proof-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.social-proof-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.social-proof-list li svg {
    flex-shrink: 0;
}

.social-proof-list li strong {
    color: #ffffff;
    font-weight: 800;
}

/* ── URGENCY ALERT ── */
.urgency-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 193, 7, 0.06);
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 14px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.5;
}

.urgency-alert svg {
    flex-shrink: 0;
}

.urgency-alert strong {
    color: #fff;
    font-weight: 700;
}

.urgency-cta {
    color: #ffc107 !important;
    font-weight: 800 !important;
}

@media (max-width: 480px) {
    /* ── Hero: logo ao lado do nome no mobile ── */
    .hero {
        padding: 14px 20px 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-identity {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .avatar-ring {
        margin-bottom: 0;
    }

    .avatar-img {
        width: 50px;
        height: 50px;
    }

    .hero-name {
        font-size: 36px;
        margin-bottom: 0;
    }

    .hero-sub {
        font-size: 12.5px;
        margin-top: 0;
    }

    /* ── Grupos sobem no mobile ── */
    .groups {
        padding-top: 12px;
    }

    /* ── Features section menos espaço no mobile ── */
    .features-section {
        margin-top: 10px;
    }

    .social-proof-list li {
        font-size: 13px;
    }

    .urgency-alert {
        font-size: 12.5px;
        padding: 12px 14px;
    }

    .features-title {
        font-size: 28px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 16px 10px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    border-color: rgba(0, 230, 118, 0.35);
    box-shadow: 0 4px 24px rgba(0, 230, 118, 0.12), 0 0 20px rgba(0, 176, 255, 0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 176, 255, 0.1));
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 14px;
    color: #ffffff;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 480px) {
    .features-title {
        font-size: 28px;
    }
}

/* ── HIGHLIGHT BANNER ── */
.highlight-banner {
    text-align: center;
    margin: 48px 16px 24px;
    animation: fadeUp 0.6s both;
    animation-delay: 0.2s;
}

.highlight-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    max-width: 500px;
    margin: 0 auto;
}

.text-red {
    color: #ff5252;
}

/* ── GROUPS ── */
.groups {
    position: relative;
    z-index: 1;
    padding: 28px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
}

.group-block {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    animation: fadeUp 0.5s both;
}

.group-block:hover {
    border-color: rgba(0, 230, 118, 0.35);
    box-shadow: 0 4px 30px rgba(0, 230, 118, 0.12), 0 0 0 1px rgba(0, 176, 255, 0.08);
}

.group-block:nth-child(1) {
    animation-delay: 0.08s;
}

.group-block:nth-child(2) {
    animation-delay: 0.16s;
}

.group-block:nth-child(3) {
    animation-delay: 0.24s;
}

.group-block:nth-child(4) {
    animation-delay: 0.32s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

/* Green left accent bar on open */
.group-block.open .group-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(to bottom, #00e676, #00b0ff);
}

.group-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--surface2);
}

.group-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-info {
    flex: 1;
    min-width: 0;
}

.group-info h2 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.group-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
    font-weight: 400;
}

.group-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.member-count {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 176, 255, 0.1));
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.chevron {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), color 0.2s;
    background: var(--surface2);
    border-radius: 50%;
}

.group-block.open .chevron {
    transform: rotate(180deg);
    color: #ffffff;
    background: var(--green-glow);
}

/* Links panel */
.group-links {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 14px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
    opacity: 0;
}

.group-block.open .group-links {
    max-height: 600px;
    padding: 0 14px 16px;
    opacity: 1;
}

/* Divider */
.group-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 230, 118, 0.15), rgba(0, 176, 255, 0.1), transparent);
    margin: 0 18px;
}

.group-block:not(.open) .group-divider {
    display: none;
}

/* Link buttons */
.link-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.18s, filter 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
}

.link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.link-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.link-btn:active {
    transform: scale(0.97);
}

.link-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-label {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.link-label .sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.65;
    margin-top: 1px;
}

.link-arrow {
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

/* WhatsApp */
.lnk-whatsapp {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.16) 0%, rgba(0, 230, 118, 0.06) 100%);
    border: 1px solid rgba(0, 230, 118, 0.32);
    color: #ffffff;
}

.lnk-whatsapp .link-icon {
    background: rgba(0, 230, 118, 0.2);
}

/* Telegram */
.lnk-telegram {
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.16) 0%, rgba(179, 136, 255, 0.08) 100%);
    border: 1px solid rgba(0, 176, 255, 0.32);
    color: #ffffff;
}

.lnk-telegram .link-icon {
    background: rgba(0, 176, 255, 0.2);
}

/* ── ABOUT SECTION ── */
.about-section {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 40px auto 10px;
    padding: 0 16px;
    text-align: center;
    animation: fadeUp 0.6s both;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.about-title span {
    color: var(--green);
}

.about-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-banner {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 230, 118, 0.08), 0 0 0 1px rgba(0, 176, 255, 0.04);
    background: var(--surface);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.about-banner:hover {
    border-color: rgba(0, 230, 118, 0.35);
    box-shadow: 0 4px 30px rgba(0, 230, 118, 0.12), 0 0 0 1px rgba(0, 176, 255, 0.08);
}

.about-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── PARTNERS SECTION ── */
.partners-section {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 40px auto 20px;
    padding: 0 16px;
    text-align: center;
    animation: fadeUp 0.6s both;
    animation-delay: 0.2s;
}

.partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.partners-title svg {
    color: #ffc107;
}

.highlight-yellow {
    color: #ffc107;
}

.partners-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 400;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.partner-logo {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 6px);
    height: 70px;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.partner-logo:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ── GALLERY ── */
.gallery-section {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 40px auto;
    padding: 0 16px;
    animation: fadeUp 0.6s both;
    animation-delay: 0.3s;
}

.gallery-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.gallery-title svg {
    flex-shrink: 0;
}

.highlight-blue {
    color: #4dd0e1;
}

.gallery-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 400;
    text-align: center;
}

/* ── CAROUSEL INTERNALS ── */
.carousel-container {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    margin-bottom: 24px;
    overflow: visible;
}

.carousel-track {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 12px 16px 24px;
}

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

.carousel-slide {
    position: relative;
    flex: 0 0 250px;
    height: 360px;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    background: var(--surface2);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 35%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 12px;
    z-index: 2;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.slide-caption strong {
    font-size: 12.5px;
    color: #00e676;
    line-height: 1.25;
}

.slide-caption span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: rgba(0, 230, 118, 0.8);
    border-color: rgba(0, 230, 118, 1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 12px;
}

.next-btn {
    right: 12px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-dots .dot.active {
    background: var(--green);
    transform: scale(1.3);
}

/* ── TRUST BADGE ── */
.trust-badge {
    margin: 32px auto 48px;
    padding: 16px 24px;
    max-width: 680px;
    width: 90%;
    background: rgba(0, 230, 118, 0.04);
    border: 1px solid rgba(0, 230, 118, 0.35);
    border-radius: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 230, 118, 0.05);
}

.trust-badge strong {
    color: #00e676;
    font-weight: 700;
}

@media (max-width: 480px) {
    .trust-badge {
        font-size: 12.5px;
        padding: 14px 20px;
    }
}

/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 48px 20px 32px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

footer span {
    color: #00e676;
}

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
    .hero {
        padding: 80px 32px 48px;
    }

    .hero-name {
        font-size: 72px;
    }

    .gallery-title {
        font-size: 24px;
    }

    .carousel-track {
        height: 440px;
    }

    .slide-caption strong {
        font-size: 15px;
    }

    .slide-caption span {
        font-size: 13px;
    }

    .carousel-slide {
        flex: 0 0 280px;
        height: 380px;
    }

    .group-icon {
        width: 58px;
        height: 58px;
    }

    .group-info h2 {
        font-size: 17px;
    }

    .link-btn {
        padding: 15px 20px;
        font-size: 15px;
    }

    .cta-section {
        font-size: 16px;
        padding: 20px 32px;
        margin: 24px auto;
    }

    .about-title {
        font-size: 32px;
    }

    .about-desc {
        font-size: 15px;
    }

    .partners-title {
        font-size: 26px;
    }

    .partners-desc {
        font-size: 15px;
    }

    .partners-grid {
        gap: 16px;
    }

    .partner-logo {
        width: 140px;
        height: 80px;
        padding: 16px 20px;
    }
}