:root {
    --blue: #022BBA;
    --blue-line: #1E47BA;
    --orange: #FF3D00;
    --text: #102033;
    --muted: #667085;
    --light: #f5f8fc;
    --white: #ffffff;
    --dark: #07162f;
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: 70px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav > a,
.nav-item > a {
    display: block;
    padding: 30px 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.nav-item {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    min-width: 190px;
    background: var(--white);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.dropdown a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 700;
}

.dropdown a:hover {
    background: var(--light);
    color: var(--blue);
}

.has-dropdown:hover .dropdown {
    display: block;
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--blue);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    margin-top: 82px;
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center 22%;
    display: flex;
    align-items: center;
    padding: 48px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(2, 43, 186, 0.92),
        rgba(30, 71, 186, 0.70),
        rgba(2, 43, 186, 0.18)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 720px;
}

.eyebrow {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: 56px;
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--white);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 26px;
}

/* BOTÕES */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    margin-right: 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    font-weight: 900;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue);
}

/* SECTIONS */

.section {
    padding: 82px 0;
    background: var(--white);
}

.section-light {
    background: var(--light);
}

.section-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-line));
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading span {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.section-heading h2 {
    margin: 8px 0 0;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-heading.light {
    color: var(--white);
}

.section-heading.light span {
    color: var(--white);
}

/* CARDS */

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.card {
    position: relative;
    width: calc(33.333% - 24px);
    margin: 12px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 16px 45px rgba(16, 32, 51, 0.10);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 3;
    background: var(--orange);
    border-radius: var(--radius) var(--radius) 0 0;
}

.news-card::before {
    z-index: 3;
}

.card h3 {
    margin: 14px 0 10px;
    font-size: 22px;
}

.card p {
    color: var(--muted);
    line-height: 1.6;
}

.card-tag {
    display: inline-block;
    color: var(--blue);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
}

.news-card{
    padding:0;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.news-card::before{
    z-index:2;
}

.news-card a{
    display:block;
}

.news-image{
    width:100%;
    height:260px;
    object-fit:cover;
    object-position:center center;
    display:block;
    margin:0;
}

.news-body{
    padding:24px;
}
.news-body .btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:64px;
    padding:0 24px;
    text-align:center;
}
/* ESCALÕES */

.levels-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -7px;
    margin-right: -7px;
}

.level-card {
    width: calc(14.285% - 14px);
    margin: 7px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    padding: 22px 12px;
    text-align: center;
    font-weight: 900;
}

/* PATROCINADORES */

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -9px;
    margin-right: -9px;
}

.sponsor-card {
    width: calc(25% - 18px);
    height: 130px;
    margin: 9px;
    padding: 18px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(16, 32, 51, 0.08);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

a.sponsor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(16, 32, 51, 0.13);
}

.sponsor-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CONTACTOS */

.contact-grid {
    display: flex;
    align-items: flex-start;
    margin-left: -19px;
    margin-right: -19px;
}

.contact-grid > div,
.contact-form {
    width: calc(50% - 38px);
    margin-left: 19px;
    margin-right: 19px;
}

.contact-grid p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 18px;
}

.contact-email {
    display: inline-block;
    color: var(--blue);
    font-weight: 900;
    margin-top: 14px;
}

.contact-form {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d0d7e2;
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 14px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    padding: 16px;
    font-weight: 900;
    cursor: pointer;
}

/* PÁGINAS INTERNAS */

.page-header {
    position: relative;
    padding-top: 125px;
    padding-bottom: 48px;
    background: var(--white);
    color: var(--text);
    border-bottom: 1px solid #e5eaf2;
}

.page-header .eyebrow {
    margin-bottom: 18px;
}

.page-header h1 {
    margin: 0;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -2px;
}

.page-header p {
    max-width: 720px;
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
}

.page-content {
    padding: 70px 0;
    background: var(--light);
}

.page-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px;
    margin-bottom: 28px;
    box-shadow: 0 15px 40px rgba(16, 32, 51, 0.08);
}

.page-card h2 {
    margin-top: 0;
    font-size: 34px;
}

.page-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.info-grid {
    display: flex;
    margin: 28px -12px;
}

.info-card {
    width: calc(50% - 24px);
    margin: 0 12px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 15px 40px rgba(16, 32, 51, 0.08);
}

.info-card h3 {
    margin-top: 0;
    font-size: 28px;
}

.info-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    margin: 22px -6px 0;
}

.values-list span {
    margin: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--light);
    color: var(--blue);
    font-weight: 800;
}

.stats-strip {
    display: flex;
    margin: 28px -8px;
}

.stats-strip div {
    width: calc(25% - 16px);
    margin: 0 8px;
    background: var(--blue);
    color: var(--white);
    border-radius: 18px;
    padding: 26px 18px;
    text-align: center;
}

.stats-strip strong {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
}

.stats-strip span {
    font-size: 14px;
}

.quote-card {
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px 34px;
    margin-top: 10px;
    text-align: center;
}

.quote-card p {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
}

/* FOOTER */

.site-footer {
    background: var(--blue);
    color: var(--white);
    padding: 26px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-inner a {
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.86);
}

/* DESKTOP GRANDE */

@media (min-width: 1400px) {
    .hero h1 {
        font-size: 64px;
    }

    .hero p {
        font-size: 20px;
    }
}

/* PORTÁTEIS BAIXOS */

@media (max-height: 760px) and (min-width: 761px) {
    .hero {
        padding: 34px 0;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.5;
    }

    .eyebrow {
        margin-bottom: 14px;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .btn {
        min-height: 44px;
    }
}

/* TABLET */

@media (max-width: 1024px) {
    .header-inner {
        min-height: 78px;
    }

    .brand img {
        height: 50px;
    }

    .main-nav > a,
    .nav-item > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }

    .hero {
        min-height: 560px;
        margin-top: 78px;
        padding: 42px 0;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        max-width: 560px;
        font-size: 18px;
    }

    .card {
        width: calc(50% - 24px);
    }

    .level-card {
        width: calc(33.333% - 14px);
    }

    .sponsor-card {
    width: calc(50% - 18px);
}

    .contact-grid {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-grid > div,
    .contact-form {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form {
        margin-top: 28px;
    }
}

/* MOBILE / PWA */

@media (max-width: 760px) {
    html,
    body {
        overflow-x: hidden;
    }

    body {
        -webkit-text-size-adjust: 100%;
    }

    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        height: 44px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        background: var(--white);
        padding: 14px 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a,
    .nav-item > a {
        width: 100%;
        padding: 13px 0;
        font-size: 16px;
        border-bottom: 1px solid #eef2f7;
    }

    .nav-item {
        width: 100%;
    }

    .dropdown {
        display: block;
        position: static;
        min-width: 100%;
        padding: 4px 0 10px 16px;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown a {
        padding: 9px 0;
        font-size: 14px;
        color: var(--muted);
    }

    .hero {
        min-height: 500px;
        margin-top: 72px;
        align-items: flex-end;
        padding-top: 60px;
        padding-bottom: 42px;
        background-position: center top;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(2, 43, 186, 0.28),
            rgba(2, 43, 186, 0.78) 48%,
            rgba(2, 43, 186, 0.96)
        );
    }

    .hero-content {
        max-width: 100%;
    }

    .eyebrow {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.02;
        letter-spacing: -1.4px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-actions {
        display: block;
        margin-top: 24px;
    }

    .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .section {
        padding: 54px 0;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .cards-grid,
    .levels-grid,
    .sponsors-grid {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .card,
.level-card,
.sponsor-card {
    width: 100%;
    margin: 0 0 18px;
}

    .card {
        padding: 22px;
    }

    .news-card {
        padding: 0;
    }

    .news-image {
        height: 190px;
    }

    .level-card {
        padding: 18px 12px;
    }

    .contact-form {
        padding: 22px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    .page-header {
        padding-top: 125px;
        padding-bottom: 58px;
    }

    .page-header h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .page-card {
        padding: 26px;
    }

    .site-footer {
        padding: 24px 0;
    }

    .footer-inner {
        display: block;
        text-align: center;
    }

    .footer-inner div {
        margin-top: 14px;
    }

    .footer-inner a {
        display: inline-block;
        margin: 0 8px;
    }
    
    .info-grid,
.stats-strip {
    display: block;
    margin-left: 0;
    margin-right: 0;
}

.info-card,
.stats-strip div {
    width: 100%;
    margin: 0 0 18px;
}

.quote-card p {
    font-size: 21px;
}
}

/* MOBILE PEQUENO */

@media (max-width: 420px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand img {
        height: 42px;
    }

    .hero {
        min-height: 440px;
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .card h3 {
        font-size: 20px;
    }
}

/* ACADEMIA SLIDER */

.academy-slider {
    position: relative;
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(16, 32, 51, 0.08);
}

.academy-slider-track {
    position: relative;
}

.academy-slide {
    display: none;
}

.academy-slide.is-active {
    display: block;
}

.academy-slide img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: contain;
background: #f5f8fc;
}

.academy-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--blue);
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
}

.academy-prev {
    left: 18px;
}

.academy-next {
    right: 18px;
}

.academy-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.academy-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}

.academy-dot.active {
    background: #fff;
}

@media (max-width: 1024px) {
    .academy-slide img {
        height: 420px;
    }
}

@media (max-width: 760px) {
    .academy-slide img {
        height: 280px;
    }

    .academy-slider-btn {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
}

.success-message {
    margin: 0 0 22px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    font-size: 17px;
    font-weight: 800;
}

.error-message {
    margin: 0 0 22px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    font-size: 17px;
    font-weight: 800;
}

/* LISTAGEM DE NOTÍCIAS */

.news-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-grid-page .news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(16, 32, 51, .08);
}

.news-grid-page .news-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--light);
}

.news-grid-page .news-body {
    padding: 24px;
}

.news-grid-page .news-date {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.news-grid-page h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.news-grid-page p {
    color: var(--muted);
    line-height: 1.7;
}

.news-grid-page .btn {
    margin-top: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    font-weight: 700;
}

.pagination a.active {
    background: var(--orange);
    color: var(--white);
}

@media (max-width: 1024px) {
    .news-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .news-grid-page {
        grid-template-columns: 1fr;
    }
}

/* DETALHE NOTÍCIA */

.news-detail-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 24px;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.news-detail-content {
    color: var(--text);
    font-size: 18px;
    line-height: 1.8;
}

.news-detail-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.news-detail-content h2,
.news-detail-content h3 {
    color: var(--text);
    margin-top: 32px;
}

.news-detail-actions {
    margin-top: 32px;
}

/* ESCALÃO / PLANTEL */

.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.team-list-item {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--light);
    color: var(--blue);
    font-weight: 900;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.player-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(16, 32, 51, 0.08);
}

.player-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--light);
}

.player-photo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 900;
}

.player-info {
    padding: 16px;
    text-align: center;
}

.player-info h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.player-info p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 420px) {
    .players-grid {
        grid-template-columns: 1fr;
    }
}

/* PERFIL ATLETA */

.athlete-profile {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: center;
}

.athlete-profile-photo img {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.athlete-profile-info h2 {
    margin-top: 0;
    font-size: 42px;
}

.athlete-profile-info p {
    font-size: 18px;
}

.athlete-share {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.athlete-share .btn {
    margin: 0;
}

@media (max-width: 1024px) {
    .athlete-profile {
        grid-template-columns: 300px 1fr;
        gap: 24px;
    }

    .athlete-profile-info h2 {
        font-size: 34px;
    }
}

@media (max-width: 760px) {
    .athlete-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .athlete-profile-photo img {
        max-width: 260px;
        margin: 0 auto;
    }

    .athlete-share {
        display: grid;
        grid-template-columns: 1fr;
    }

    .athlete-share .btn,
    .athlete-share button {
        width: 100%;
        margin: 0;
    }
} 

.nav-parent {
    display: block;
    width: 100%;
    padding: 30px 18px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.dropdown-info {
    display: block;
    padding: 10px 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.dropdown-link-disabled {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 700;
    cursor: not-allowed;
    opacity: 0.65;
}