/**
 * Página CLUBE (hub de clube na categoria de equipa) — layout + componentes.
 * Spec: design handoff (É Golo Clube.dc.html / É Golo Clube Mobile.dc.html).
 *
 * Mobile-first: <768px coluna única (aside reduzida ao card de alertas,
 * escudo 64px, H1 34px, sem chips de forma); ≥1024px grid 2fr/1fr.
 * Radius 0 excepto pills/avatares (spec É Golo).
 *
 * @package SuperPortistas
 */

.sp-clube-page {
    background: var(--sp-surface-muted, #f4f3ef);
}

.sp-clube-dot {
    color: var(--sp-porto, #00a24a);
}

/* ------------------------------------------------------------------
 * Hero escuro
 * ------------------------------------------------------------------ */
.sp-clube-hero {
    background: var(--sp-ink, #0d0d0c);
    color: #fff;
    padding: 20px 16px 0;
}

.sp-clube-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-clube-hero__top {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-clube-hero__badge {
    width: 64px;
    height: 64px;
    flex: none;
    border-radius: 50%;
    background: var(--sp-card-dark, #1b1b19);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sp-clube-hero__badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    box-sizing: border-box;
}

.sp-clube-hero__badge-initial {
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-size: 28px;
    color: var(--sp-live, #00e06b);
}

.sp-clube-hero__identity {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sp-clube-hero__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8a887f;
}

.sp-clube-hero__title {
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 34px;
    line-height: 0.92;
    letter-spacing: -1.5px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.sp-clube-hero__side {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.sp-clube-hero__stats {
    display: flex;
    gap: 20px;
    margin: 0;
}

.sp-clube-hero__stat {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.sp-clube-hero__stat-value {
    margin: 0;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1;
    color: var(--sp-live, #00e06b);
}

.sp-clube-hero__stat-label {
    font-size: 11px;
    font-weight: 700;
    color: #8a887f;
}

.sp-clube-hero__form {
    display: none; /* mobile: sem chips de forma (spec) */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3px;
}

.sp-clube-hero__chip {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
}

.sp-clube-hero__chip--win {
    background: var(--sp-porto, #00a24a);
}

.sp-clube-hero__chip--draw {
    background: #8a887f;
}

.sp-clube-hero__chip--loss {
    background: var(--sp-danger, #c0362c);
}

.sp-clube-hero__fav {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sp-porto, #00a24a);
    color: #fff;
    border: 0;
    border-radius: 0;
    font-family: inherit;
    font-weight: 800;
    font-size: 12px;
    padding: 10px 14px;
    min-height: 44px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.sp-clube-hero__fav:hover,
.sp-clube-hero__fav:focus-visible {
    background: var(--sp-accent, #ffd400);
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-hero__fav.is-active {
    background: var(--sp-accent, #ffd400);
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-hero__fav:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.sp-clube-hero__tabs {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--sp-card-dark, #1b1b19);
    font-weight: 800;
    font-size: 13px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sp-clube-hero__tab {
    flex: none;
    padding: 13px 18px;
    color: #8a887f;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.sp-clube-hero__tab.is-active {
    border-bottom-color: var(--sp-porto, #00a24a);
    color: var(--sp-live, #00e06b);
}

.sp-clube-hero__tab.is-soon {
    cursor: default;
}

a.sp-clube-hero__tab:hover,
a.sp-clube-hero__tab:focus-visible {
    color: #fff;
}

a.sp-clube-hero__tab.is-active:hover,
a.sp-clube-hero__tab.is-active:focus-visible {
    color: var(--sp-live, #00e06b);
}

/* ------------------------------------------------------------------
 * Corpo: grid main/aside
 * ------------------------------------------------------------------ */
.sp-clube-body {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 16px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

.sp-clube-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.sp-clube-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

/* Aside no mobile: só o card de alertas (spec Clube Mobile). */
.sp-clube-widget--desktop {
    display: none;
}

/* ------------------------------------------------------------------
 * Próximo jogo (card escuro)
 * ------------------------------------------------------------------ */
.sp-clube-next {
    background: var(--sp-ink, #0d0d0c);
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-clube-next__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sp-clube-next__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sp-live, #00e06b);
}

.sp-clube-next__teams {
    margin: 0;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-size: 20px;
    line-height: 1.05;
}

.sp-clube-next__detail {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #8a887f;
}

.sp-clube-next__side {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.sp-clube-next__odds {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 180px;
    flex: 1;
}

.sp-clube-next__bar {
    display: flex;
    height: 10px;
    overflow: hidden;
    border-radius: 2px;
}

.sp-clube-next__bar-seg--club {
    background: var(--sp-porto, #00a24a);
}

.sp-clube-next__bar-seg--other {
    background: var(--sp-accent, #ffd400);
}

.sp-clube-next__bar-seg--draw {
    background: #5b5952;
}

/* Estado vazio: três segmentos iguais (sem dados de previsão) */
.sp-clube-next__bar--empty .sp-clube-next__bar-seg {
    flex: 1 1 0;
    min-width: 0;
}

.sp-clube-next__bar-labels {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
}

.sp-clube-next__bar-label--club {
    color: var(--sp-live, #00e06b);
}

.sp-clube-next__bar-label--other {
    color: var(--sp-accent, #ffd400);
}

.sp-clube-next__bar-label--draw {
    color: #b5b3ac;
}

.sp-clube-next__cta {
    flex: none;
    background: var(--sp-porto, #00a24a);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 11px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.sp-clube-next__cta:hover,
.sp-clube-next__cta:focus-visible {
    background: var(--sp-accent, #ffd400);
    color: var(--sp-ink, #0d0d0c);
}

/* ------------------------------------------------------------------
 * Cabeçalho de secção (NOTÍCIAS DO CLUBE.)
 * ------------------------------------------------------------------ */
.sp-clube-section-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.sp-clube-section-head__title {
    margin: 0;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-section-head__rule {
    flex: 1;
    height: 4px;
    background: var(--sp-porto, #00a24a);
}

/* ------------------------------------------------------------------
 * Notícias do clube
 * ------------------------------------------------------------------ */
.sp-clube-news {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-clube-news__hero {
    position: relative;
    height: 240px;
    color: #fff;
}

.sp-clube-news__hero-link {
    position: absolute;
    inset: 0;
    display: block;
    color: #fff;
    text-decoration: none;
}

.sp-clube-news__hero-link:hover,
.sp-clube-news__hero-link:focus-visible {
    color: #fff;
}

.sp-clube-news__hero-img,
.sp-clube-news__hero-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-clube-news__hero-placeholder {
    background: var(--sp-card-dark, #1b1b19);
}

.sp-clube-news__hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px 14px 14px;
    background: linear-gradient(transparent, rgba(13, 13, 12, 0.9) 70%);
    display: block;
}

.sp-clube-news__hero-tag {
    display: inline-block;
    background: var(--sp-porto, #00a24a);
    color: #fff;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-size: 11px;
    padding: 3px 8px;
    text-transform: uppercase;
}

.sp-clube-news__hero-title {
    display: block;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-top: 8px;
}

.sp-clube-news__item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--sp-border, #dbd9d2);
    padding-bottom: 14px;
}

.sp-clube-news__thumb {
    display: block;
    height: 76px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.sp-clube-news__thumb-img,
.sp-clube-news__thumb-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-clube-news__thumb-placeholder {
    background: var(--sp-border, #dbd9d2);
}

.sp-clube-news__item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sp-clube-news__item-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--sp-porto, #00a24a);
    text-transform: uppercase;
}

.sp-clube-news__item-title {
    margin: 0;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.12;
}

.sp-clube-news__item-title a {
    color: var(--sp-ink, #0d0d0c);
    text-decoration: none;
}

.sp-clube-news__item-title a:hover,
.sp-clube-news__item-title a:focus-visible {
    color: var(--sp-porto, #00a24a);
}

.sp-clube-news__item-meta {
    font-size: 11px;
    color: var(--sp-ink-faint, #6b6963);
    font-weight: 600;
}

.sp-clube-news__all {
    align-self: flex-start;
    font-weight: 800;
    font-size: 13px;
    color: var(--sp-porto, #00a24a);
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.sp-clube-news__all:hover,
.sp-clube-news__all:focus-visible {
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-news__empty {
    padding: 24px 0;
}

.sp-clube-news__empty-title {
    margin: 0;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-news__empty-text {
    margin: 6px 0 0;
    font-size: 14px;
    color: var(--sp-ink-faint, #6b6963);
}

/* ------------------------------------------------------------------
 * Aside — widgets brancos (últimos jogos, plantel)
 * ------------------------------------------------------------------ */
.sp-clube-widget__title {
    margin: 0 0 12px;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-results,
.sp-clube-squad {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid var(--sp-border, #dbd9d2);
    display: flex;
    flex-direction: column;
}

.sp-clube-results__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-results__row + .sp-clube-results__row,
.sp-clube-squad__row + .sp-clube-squad__row {
    border-top: 1px solid #efeee8;
}

.sp-clube-results__link {
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

.sp-clube-results__link:hover .sp-clube-results__teams,
.sp-clube-results__link:focus-visible .sp-clube-results__teams {
    color: var(--sp-porto, #00a24a);
}

.sp-clube-results__score {
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    color: var(--sp-porto, #00a24a);
}

.sp-clube-results__round {
    flex: none;
    color: var(--sp-ink-faint, #6b6963);
    font-size: 11px;
}

.sp-clube-squad__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--sp-ink, #0d0d0c);
    text-decoration: none;
}

.sp-clube-squad__avatar {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 50%;
    overflow: hidden;
    background: var(--sp-surface-muted, #f4f3ef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-clube-squad__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-clube-squad__avatar-initial {
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--sp-porto, #00a24a);
}

.sp-clube-squad__id {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sp-clube-squad__name {
    font-weight: 800;
    font-size: 13px;
}

.sp-clube-squad__link:hover .sp-clube-squad__name,
.sp-clube-squad__link:focus-visible .sp-clube-squad__name {
    color: var(--sp-porto, #00a24a);
}

.sp-clube-squad__detail {
    font-size: 11px;
    color: var(--sp-ink-faint, #6b6963);
    font-weight: 600;
}

.sp-clube-squad__rating {
    margin-left: auto;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--sp-porto, #00a24a);
}

.sp-clube-squad__all {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-weight: 800;
    font-size: 13px;
    color: var(--sp-porto, #00a24a);
    min-height: 44px;
}

.sp-clube-squad__all.is-soon {
    color: var(--sp-ink-faint, #6b6963);
    cursor: default;
}

/* ------------------------------------------------------------------
 * Alertas do clube (card verde)
 * ------------------------------------------------------------------ */
.sp-clube-alerts {
    background: var(--sp-porto, #00a24a);
    color: #fff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-clube-alerts__title {
    margin: 0;
    font-family: var(--sp-font-display, 'Archivo Black', sans-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.sp-clube-alerts__dot {
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-alerts__text {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.sp-clube-alerts__cta {
    background: var(--sp-ink, #0d0d0c);
    color: #fff;
    border: 0;
    border-radius: 0;
    text-align: center;
    font-family: inherit;
    font-weight: 800;
    font-size: 13px;
    padding: 12px;
    min-height: 44px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.sp-clube-alerts__cta:hover:not(:disabled),
.sp-clube-alerts__cta:focus-visible:not(:disabled) {
    background: var(--sp-accent, #ffd400);
    color: var(--sp-ink, #0d0d0c);
}

.sp-clube-alerts__cta:disabled {
    cursor: default;
    opacity: 0.85;
}

.sp-clube-alerts__cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ------------------------------------------------------------------
 * ≥768px — tablet: aside completa, hero intermédio
 * ------------------------------------------------------------------ */
@media (min-width: 768px) {
    .sp-clube-widget--desktop {
        display: block;
    }

    .sp-clube-hero {
        padding: 44px 48px 0;
    }

    .sp-clube-hero__inner {
        gap: 24px;
    }

    .sp-clube-hero__top {
        gap: 28px;
    }

    .sp-clube-hero__badge {
        width: 96px;
        height: 96px;
    }

    .sp-clube-hero__badge-initial {
        font-size: 40px;
    }

    .sp-clube-hero__eyebrow {
        font-size: 13px;
    }

    .sp-clube-hero__identity {
        gap: 6px;
    }

    .sp-clube-hero__side {
        margin-left: auto;
        width: auto;
        gap: 28px;
    }

    .sp-clube-hero__stats {
        gap: 28px;
    }

    .sp-clube-hero__stat {
        flex-direction: column;
        align-items: center;
        gap: 0;
        text-align: center;
    }

    .sp-clube-hero__stat-value {
        font-size: 34px;
    }

    .sp-clube-hero__form {
        display: flex;
    }

    .sp-clube-hero__fav {
        margin-left: 0;
        font-size: 13px;
        padding: 12px 20px;
    }

    .sp-clube-hero__tabs {
        font-size: 14px;
    }

    .sp-clube-hero__tab {
        padding: 14px 22px;
    }

    .sp-clube-body {
        padding: 32px 48px 48px;
        gap: 32px;
    }

    .sp-clube-main {
        gap: 24px;
    }

    .sp-clube-next {
        padding: 24px;
        gap: 24px;
    }

    .sp-clube-next__teams {
        font-size: 26px;
    }

    .sp-clube-next__side {
        margin-left: auto;
        width: auto;
        flex-wrap: nowrap;
    }

    .sp-clube-next__odds {
        flex: none;
    }

    .sp-clube-next__bar {
        height: 12px;
    }

    .sp-clube-news__hero {
        height: 340px;
    }

    .sp-clube-news__hero-overlay {
        padding: 80px 24px 20px;
    }

    .sp-clube-news__hero-tag {
        font-size: 12px;
    }

    .sp-clube-news__hero-title {
        font-size: 30px;
        line-height: 1.02;
        letter-spacing: -1px;
        margin-top: 10px;
    }

    .sp-clube-news__item {
        grid-template-columns: 180px 1fr;
        gap: 18px;
        padding-bottom: 18px;
    }

    .sp-clube-news__thumb {
        height: 110px;
    }

    .sp-clube-news__item-tag {
        font-size: 12px;
    }

    .sp-clube-news__item-title {
        font-size: 21px;
        line-height: 1.1;
    }

    .sp-clube-news__item-meta {
        font-size: 13px;
    }

    .sp-clube-alerts {
        padding: 20px;
    }

    .sp-clube-alerts__title {
        font-size: 16px;
    }
}

/* ------------------------------------------------------------------
 * ≥1024px — grid 2fr/1fr e H1 60px
 * ------------------------------------------------------------------ */
@media (min-width: 1024px) {
    .sp-clube-hero__title {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .sp-clube-body {
        grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    }
}

/* ==========================================================================
   Clube — tab "Plantel" (plantel completo agrupado por posição)
   ========================================================================== */
.sp-clube-body--single { display: block; }
.sp-clube-plantel { width: 100%; max-width: none; }

.sp-clube-plantel__group { margin-bottom: 2rem; }

.sp-clube-plantel__grid {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (min-width: 640px)  { .sp-clube-plantel__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .sp-clube-plantel__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.sp-clube-plantel__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 20px 14px;
    background: #fff;
    border: 2px solid #0D0D0C;
    text-decoration: none;
    color: #0D0D0C;
    transition: transform .12s ease, box-shadow .12s ease;
}
.sp-clube-plantel__card:hover,
.sp-clube-plantel__card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 #00A24A;
}

.sp-clube-plantel__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: #EFEEE8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-clube-plantel__avatar img { width: 100%; height: 100%; object-fit: cover; }
.sp-clube-plantel__initial {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 28px;
    color: #8A887F;
}

.sp-clube-plantel__name {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -.5px;
}
.sp-clube-plantel__meta { font-size: 12px; font-weight: 600; color: #6B6963; }

.sp-clube-plantel__rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00A24A;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 2px 7px;
}

.sp-clube-plantel__empty { padding: 2.5rem 1.5rem; text-align: center; }
.sp-clube-plantel__empty-title {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 22px;
    margin: 0 0 6px;
}
.sp-clube-plantel__empty-text { color: #6B6963; font-weight: 600; margin: 0; }

/* Clube — tab "Jogos" (calendário: próximos + resultados) */
.sp-clube-fixtures__group { margin-bottom: 2rem; }
.sp-clube-fixtures__list { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; }
.sp-clube-fixtures__row { border-bottom: 1px solid #DBD9D2; }
.sp-clube-fixtures__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 4px;
    text-decoration: none;
    color: #0D0D0C;
}
.sp-clube-fixtures__link:hover { color: #00A24A; }
.sp-clube-fixtures__teams { font-family: 'Archivo Black', sans-serif; font-style: italic; font-size: 16px; letter-spacing: -.5px; }
.sp-clube-fixtures__vs { color: #8A887F; font-size: 13px; }
.sp-clube-fixtures__score { color: #00A24A; }
.sp-clube-fixtures__when { flex: none; font-size: 13px; font-weight: 700; color: #6B6963; }

/* Clube — tab "Estatísticas" (grelha de métricas da época) */
.sp-clube-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 1rem;
}
@media (min-width: 640px)  { .sp-clube-stats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .sp-clube-stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.sp-clube-stats__box {
    border: 2px solid #0D0D0C;
    background: #fff;
    padding: 18px 14px;
    text-align: center;
}
.sp-clube-stats__value {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 34px;
    line-height: 1;
    color: #00A24A;
}
.sp-clube-stats__label { font-size: 12px; font-weight: 700; margin-top: 8px; color: #3C3A35; }

/* ==========================================================================
   Troféus (palmarés) — tab do clube
   ========================================================================== */
.sp-clube-trofeus__total {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 700;
    color: #3C3A35;
}
.sp-clube-trofeus__total-num {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 34px;
    line-height: 1;
    color: #00A24A;
    margin-right: 8px;
    vertical-align: -2px;
}
.sp-clube-trofeus__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}
.sp-clube-trofeus__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--sp-border, #dbd9d2);
    border-left: 4px solid var(--sp-porto, #00a24a);
}
.sp-clube-trofeus__count {
    flex: 0 0 auto;
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 30px;
    line-height: 1;
    color: var(--sp-ink, #0d0d0c);
}
.sp-clube-trofeus__times {
    font-size: 16px;
    color: var(--sp-porto, #00a24a);
    margin-left: 1px;
}
.sp-clube-trofeus__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.sp-clube-trofeus__comp {
    font-size: 14px;
    font-weight: 800;
    color: var(--sp-ink, #0d0d0c);
    line-height: 1.2;
}
.sp-clube-trofeus__latest {
    font-size: 12px;
    color: #6B6963;
}

/* ==========================================================================
   Clássicos (H2H vs rivais) — tab do clube
   ========================================================================== */
.sp-clube-classicos__intro {
    margin: 0 0 20px;
    font-size: 14px;
    color: #3C3A35;
}
.sp-clube-classicos__match {
    margin-bottom: 20px;
}
.sp-clube-classicos__match:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Melhores do plantel (marcadores / assistências) — dentro de Estatísticas
   ========================================================================== */
.sp-clube-leaders__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.sp-clube-leaders__title {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--sp-ink, #0d0d0c);
    margin: 0 0 10px;
}
.sp-clube-leaders__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sp-clube-leaders__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--sp-border, #dbd9d2);
}
.sp-clube-leaders__row:last-child {
    border-bottom: 0;
}
.sp-clube-leaders__rank {
    flex: 0 0 auto;
    width: 22px;
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 14px;
    color: var(--sp-porto, #00a24a);
}
.sp-clube-leaders__name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--sp-ink, #0d0d0c);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
a.sp-clube-leaders__name:hover {
    color: var(--sp-porto, #00a24a);
}
.sp-clube-leaders__count {
    flex: 0 0 auto;
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 18px;
    color: var(--sp-ink, #0d0d0c);
}

/* ==========================================================================
   Noites Europeias — tab do clube
   ========================================================================== */
.sp-clube-euro__pos {
    margin: 0 0 16px;
    font-size: 14px;
    color: #3C3A35;
}
.sp-clube-euro__pos-rank {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 24px;
    color: var(--sp-porto, #00a24a);
    margin-right: 8px;
    vertical-align: -1px;
}
.sp-clube-euro__subtitle {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--sp-ink, #0d0d0c);
    margin: 18px 0 8px;
}
.sp-clube-euro__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sp-clube-euro__fx {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--sp-border, #dbd9d2);
}
.sp-clube-euro__fx:last-child {
    border-bottom: 0;
}
.sp-clube-euro__fx-when {
    flex: 0 0 auto;
    width: 108px;
    font-size: 12px;
    font-weight: 700;
    color: #6B6963;
    text-transform: capitalize;
}
.sp-clube-euro__fx-teams {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.sp-clube-euro__fx-team {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    font-size: 13px;
    color: var(--sp-ink, #0d0d0c);
}
.sp-clube-euro__fx-team:last-child {
    justify-content: flex-end;
    text-align: right;
}
.sp-clube-euro__fx-team span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-clube-euro__fx-team img {
    flex: 0 0 auto;
}
.sp-clube-euro__fx-mid {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 15px;
    color: var(--sp-ink, #0d0d0c);
}
.sp-clube-euro__fx-vs {
    font-size: 11px;
    color: #8A887F;
}
.sp-clube-euro__fx-live {
    font-family: Arial, sans-serif;
    font-style: normal;
    font-size: 9px;
    font-weight: 800;
    color: var(--sp-danger, #c0362c);
    letter-spacing: .04em;
}
.sp-clube-euro__fx-link {
    flex: 0 0 auto;
    color: var(--sp-porto, #00a24a);
    text-decoration: none;
    font-size: 16px;
}
@media (max-width: 640px) {
    .sp-clube-euro__fx-when { width: 84px; font-size: 11px; }
}

/* ==========================================================================
   O próximo adversário — scouting (tab Notícias, a seguir ao próximo jogo)
   ========================================================================== */
.sp-clube-scout {
    margin: 28px 0 0;
}
.sp-clube-scout__head {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px;
    background: var(--sp-surface, #f4f2ec);
    border: 1px solid var(--sp-border, #dbd9d2);
}
.sp-clube-scout__badge {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--sp-border, #dbd9d2);
    border-radius: 4px;
}
.sp-clube-scout__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sp-clube-scout__initial {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 24px;
    color: var(--sp-ink, #0d0d0c);
}
.sp-clube-scout__id {
    flex: 1 1 200px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sp-clube-scout__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--sp-porto, #00a24a);
}
.sp-clube-scout__name {
    margin: 0;
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.05;
    color: var(--sp-ink, #0d0d0c);
}
.sp-clube-scout__name a {
    color: inherit;
    text-decoration: none;
}
.sp-clube-scout__name a:hover,
.sp-clube-scout__name a:focus-visible {
    color: var(--sp-porto, #00a24a);
}
.sp-clube-scout__form {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    gap: 5px;
}
.sp-clube-scout__chip {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    border-radius: 3px;
}
.sp-clube-scout__chip--win {
    background: var(--sp-porto, #00a24a);
}
.sp-clube-scout__chip--draw {
    background: #8a887f;
}
.sp-clube-scout__chip--loss {
    background: var(--sp-danger, #c0362c);
}
.sp-clube-scout__pos {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 2px;
    margin-left: auto;
}
.sp-clube-scout__pos-rank {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    font-size: 24px;
    color: var(--sp-ink, #0d0d0c);
}
.sp-clube-scout__pos-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #8a887f;
}
.sp-clube-scout__h2h {
    margin-top: 16px;
}
.sp-clube-scout__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.sp-clube-scout__cta {
    background: var(--sp-porto, #00a24a);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 11px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.sp-clube-scout__cta:hover,
.sp-clube-scout__cta:focus-visible {
    background: var(--sp-accent, #ffd400);
    color: var(--sp-ink, #0d0d0c);
}
.sp-clube-scout__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--sp-ink, #0d0d0c);
    text-decoration: none;
    border-bottom: 2px solid var(--sp-porto, #00a24a);
    padding-bottom: 2px;
}
.sp-clube-scout__link:hover,
.sp-clube-scout__link:focus-visible {
    color: var(--sp-porto, #00a24a);
}
@media (max-width: 640px) {
    .sp-clube-scout__name { font-size: 19px; }
    .sp-clube-scout__pos { margin-left: 0; align-items: flex-start; text-align: left; }
}
