/* =========================================================
   VARIÁVEIS
========================================================= */

:root {
    --metro-red: #e02020;
    --metro-card: #ffffff;
    --metro-text: #111111;
    --metro-muted: #777777;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   CARD ESQUERDO (PROFILE CARD)
========================================================= */

.profile-card {
    background: var(--metro-card);
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    padding: 32px;
    display: flex;
    flex-direction: column;
}


/* =========================================================
   TOPO: LOGO + SELOS
========================================================= */

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.logo-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   SELOS
========================================================= */

.badges {
    display: flex;
    align-items: center;
    gap: 14px;
}

.badges img {
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.badge-fpf {
    height: 38px;
}

.badge-cbf {
    height: 47px;
}

.badge-formador {
    height: 40px;
}


/* =========================================================
   TEXTO DO CLUBE
========================================================= */

.club-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--metro-text);
}

.club-description {
    list-style: none;
    margin-bottom: 12px;
    padding: 0;
}

.club-description li {
    margin: 6px 0;
    color: var(--metro-muted);
    font-size: 15px;
}


/* =========================================================
   TAGS / PILLS
========================================================= */

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.tag {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(224, 32, 32, 0.28);
    background: rgba(224, 32, 32, 0.06);
    color: #555555;
    white-space: nowrap;
}


/* =========================================================
   PRÓXIMOS JOGOS
========================================================= */

.next-matches-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 28px;
    text-align: center;
}

.next-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--metro-red);
}

.next-match {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eeeeee;
}

.next-match:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.match-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--metro-red);
    margin-bottom: 6px;
}

.match-date {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
}

.match-info {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.match-location {
    font-size: 13px;
    color: var(--metro-muted);
}


/* =========================================================
   MODAL FEMININO
========================================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn .4s;
}

.modal-box {
    background: white;
    padding: 30px;
    border-radius: 14px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp .4s;
}

.modal-box h2 {
    color: #d40000;
    margin-bottom: 10px;
}

.modal-box p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.modal-box button {
    background: #d40000;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.modal-box button:hover {
    background: #b30000;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 850px) {
    .top-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .badges {
        justify-content: flex-start;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

.btn-metro-jogar {
    background: #d40000;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}


}
.btn-metro-jogar:hover {
    background: #b80000;
}

}