* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E91E8C;
    --primary-light: #FF69B4;
    --primary-dark: #C71585;
    --secondary-color: #8B5CF6;
    --dark-bg: #1a1a2e;
    --light-bg: #FFF5FB;
    --pink-bg: #FFE5F4;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --border-radius: 20px;
    --shadow: 0 10px 40px rgba(233, 30, 140, 0.15);
    --shadow-hover: 0 20px 60px rgba(233, 30, 140, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFF5FB 0%, #FFFFFF 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Partners Arc - Carrossel de Parceiros com rotação ao scroll */
.partners-arc {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    height: 220px;
    position: relative;
    overflow: visible;
}

.partner-card {
    position: absolute;
    width: 143px;  /* 110px + 30% = 143px */
    height: 143px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12),
                0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.95);
    will-change: transform, opacity;
}

.partner-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18),
                0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card span {
    font-size: 3rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .partners-arc {
        height: 180px;
        margin-bottom: 20px;
    }
    
    .partner-card {
        width: 100px;
        height: 100px;
        border-radius: 20px;
        padding: 15px;
    }
    
    .partner-card span {
        font-size: 2rem;
    }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(233, 30, 140, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-outline-pink {
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 140, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--light-bg);
}

.btn-outline-pink {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-pink:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--pink-bg);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Vantagens Section */
.vantagens {
    padding: 100px 0;
    background: var(--white);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
}

.vantagem-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(233, 30, 140, 0.1);
}

.vantagem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.vantagem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.vantagem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.vantagem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Planos Section */
.planos {
    padding: 100px 0;
    background: var(--light-bg);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.plano-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plano-featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plano-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plano-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.plano-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.plano-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.plano-price {
    text-align: center;
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.plano-payment {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.plano-features {
    list-style: none;
    margin: 2rem 0;
}

.plano-features li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plano-features .check {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Como Funciona Section */
.como-funciona {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(233, 30, 140, 0.1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.3);
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(233, 30, 140, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-box > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    color: #a0aec0;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #a0aec0;
}

/* Footer - Badges de App */
.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    max-width: 200px;
}

.app-badge:hover {
    background: rgba(233, 30, 140, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.app-badge svg {
    flex-shrink: 0;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-badge-text small {
    font-size: 0.65rem;
    color: #a0aec0;
}

.app-badge-text strong {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Showcase - Iframe do UniClubes Mais */
.showcase-section {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
}

.showcase-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.showcase-window {
    width: 85%;
    max-width: 1020px;
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(233, 30, 140, 0.1);
}

.showcase-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #2d2d44;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.showcase-dot:nth-child(2) {
    background: #febc2e;
}

.showcase-dot:nth-child(3) {
    background: #28c840;
}

.showcase-url {
    margin-left: 12px;
    font-size: 0.8rem;
    color: #a0aec0;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 16px;
    border-radius: 6px;
    flex: 1;
    max-width: 300px;
}

.showcase-viewport {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    animation: showcase-scroll 20s ease-in-out infinite;
}

@keyframes showcase-scroll {
    0%, 8% { transform: translateY(0); }
    42%, 58% { transform: translateY(calc(-100% + 500px)); }
    92%, 100% { transform: translateY(0); }
}

/* Menu Mobile Aberto */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
    z-index: 100;
}

.nav-menu.active li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu.active li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .plano-featured {
        transform: scale(1);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .floating-elements {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .showcase-section {
        padding: 50px 0 30px;
    }

    .showcase-window {
        width: 95%;
    }

    .showcase-viewport {
        height: 350px;
    }

    .showcase-img {
        animation-name: showcase-scroll-md;
    }

    @keyframes showcase-scroll-md {
        0%, 8% { transform: translateY(0); }
        42%, 58% { transform: translateY(calc(-100% + 350px)); }
        92%, 100% { transform: translateY(0); }
    }

    .showcase-browser-bar {
        padding: 8px 12px;
    }

    .showcase-dot {
        width: 8px;
        height: 8px;
    }

    .showcase-url {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-apps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .app-badge {
        max-width: none;
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .showcase-viewport {
        height: 280px;
    }

    .showcase-img {
        animation-name: showcase-scroll-sm;
    }

    @keyframes showcase-scroll-sm {
        0%, 8% { transform: translateY(0); }
        42%, 58% { transform: translateY(calc(-100% + 280px)); }
        92%, 100% { transform: translateY(0); }
    }

    .showcase-window {
        width: 100%;
    }

    .app-badge {
        min-width: 100%;
    }
}

/* Banner Slider */
.banner-slider {
    padding: 2rem 0;
    background: transparent;
}

.banner-wrapper {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 300px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.banner-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Controles de navegação */
.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-prev:hover,
.banner-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

/* Indicadores */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsivo para banners */
@media (max-width: 1920px) {
    .banner-wrapper {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .banner-slides {
        height: 200px;
    }
    
    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-indicators {
        bottom: 10px;
    }
    
    .banner-indicator {
        width: 8px;
        height: 8px;
    }
    
    .banner-indicator.active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .banner-slides {
        height: 150px;
    }
    
    .banner-slider {
        padding: 1rem 0;
    }
}
