/* ==========================================================================
   JOGADORES NA ESPERA - DESIGN CINEMATOGRÁFICO & ESPORTIVO PRO (EA SPORTS / FIFA)
   Cores Principais: #0B0B0B, #151515, #202020, #FFC107, #FFFFFF
   ========================================================================== */

:root {
    --bg-black: #0B0B0B;
    --bg-dark: #151515;
    --bg-card: #202020;
    --bg-card-hover: #292929;
    --gold: #FFC107;
    --gold-light: #FFD54F;
    --gold-dark: #C69500;
    --gold-glow: rgba(255, 193, 7, 0.45);
    --gold-glow-intense: rgba(255, 193, 7, 0.8);
    --white: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(255, 193, 7, 0.5);
    --glass-bg: rgba(32, 32, 32, 0.75);
    --glass-border: rgba(255, 193, 7, 0.3);
    --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-black);
    color: var(--white);
    font-family: var(--font-body);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ==========================================================================
   EFEITOS CINEMATOGRÁFICOS DE FUNDO (ESTÁDIO NOTURNO)
   ========================================================================== */
.stadium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, #1a1a1a 0%, #0b0b0b 70%);
}

.light-beam {
    position: absolute;
    top: -150px;
    width: 35vw;
    height: 120vh;
    background: linear-gradient(180deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.03) 50%, transparent 100%);
    filter: blur(60px);
    transform-origin: top center;
    opacity: 0.85;
    animation: pulseBeam 8s infinite alternate ease-in-out;
}

.beam-left {
    left: 10%;
    transform: rotate(25deg);
}

.beam-right {
    right: 10%;
    transform: rotate(-25deg);
    animation-delay: -4s;
}

@keyframes pulseBeam {
    0% { opacity: 0.6; transform: rotate(23deg) scale(0.95); }
    100% { opacity: 0.95; transform: rotate(27deg) scale(1.05); }
}

.smoke-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(32, 32, 32, 0.6) 0%, transparent 70%);
    filter: blur(80px);
    animation: driftSmoke 20s infinite linear alternate;
}

@keyframes driftSmoke {
    0% { transform: translateX(0) scaleY(1); }
    100% { transform: translateX(-20%) scaleY(1.15); }
}

.gold-glow {
    position: absolute;
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.18) 0%, transparent 70%);
    filter: blur(90px);
}

.glow-top {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.glow-bottom {
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
}

.dots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.7;
}

/* ==========================================================================
   HEADER CINEMATOGRÁFICO
   ========================================================================== */
.main-header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 10;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.8rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 25px var(--gold-glow), 0 0 50px rgba(255, 193, 7, 0.2);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    background: linear-gradient(90deg, rgba(21, 21, 21, 0) 0%, rgba(255, 193, 7, 0.15) 50%, rgba(21, 21, 21, 0) 100%);
    padding: 8px 0;
    margin-bottom: 16px;
    display: inline-block;
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

.gold-bullet {
    color: var(--gold);
    font-weight: 800;
    margin: 0 8px;
}

.hero-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ==========================================================================
   CONTAINER E ESTATÍSTICAS
   ========================================================================== */
.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px 60px;
    position: relative;
    z-index: 10;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 35px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.15);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    border: 1px solid rgba(255, 193, 7, 0.2);
    flex-shrink: 0;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.9) 0%, rgba(255, 193, 7, 0.12) 100%);
    border-color: rgba(255, 193, 7, 0.4);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ==========================================================================
   BARRA DE PESQUISA E FILTROS PREMIUM
   ========================================================================== */
.filter-section {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.search-bar {
    position: relative;
    margin-bottom: 20px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    pointer-events: none;
}

#search-input {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 48px 16px 52px;
    color: var(--white);
    font-size: 1.05rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

#search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    background: #1a1a1a;
}

#search-input::placeholder {
    color: var(--text-muted);
}

.btn-clear {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-clear:hover {
    color: var(--gold);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group label i {
    margin-right: 4px;
}

.filter-group select {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 12px;
}

.results-counter {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.results-counter strong {
    color: var(--gold);
    font-size: 1.1rem;
}

.btn-reset {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-reset:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================================================================
   GRADE DE JOGADORES (RESPONSIVA: 5 NO DESKTOP, 3 TABLET, 1 CELULAR)
   ========================================================================== */
.players-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (min-width: 1650px) {
    .players-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .players-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CARDS DE JOGADOR - ESTILO EA SPORTS FC / FIFA ULTIMATE TEAM
   ========================================================================== */
.player-card {
    background: var(--bg-card);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeSlideUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Efeito Hover Glow Exigido: aumentar levemente, brilho amarelo, sombra, elevação e borda iluminada */
.player-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.35), 0 0 20px rgba(255, 193, 7, 0.6);
    background: var(--bg-card-hover);
    z-index: 5;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.player-card:hover::before {
    opacity: 1;
}

.card-header-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(11, 11, 11, 0.85);
    border: 1px solid var(--gold);
    padding: 6px 10px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.fut-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 0.9;
}

.fut-position {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-status-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

/* Área da Foto e Silhueta */
.card-photo-box {
    position: relative;
    width: 100%;
    height: 165px;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.15) 0%, rgba(18, 18, 18, 0.95) 80%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 193, 7, 0.15);
}

.card-photo-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
    z-index: 2;
}

.player-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.player-card:hover .player-photo {
    transform: scale(1.08);
}

.player-silhouette {
    font-size: 4.8rem;
    color: rgba(255, 193, 7, 0.22);
    margin-bottom: -5px;
    filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.25));
    z-index: 1;
    transition: all 0.4s ease;
}

.player-card:hover .player-silhouette {
    color: rgba(255, 193, 7, 0.4);
    transform: scale(1.06) translateY(-4px);
}

/* Informações do Atleta no Card */
.card-body {
    padding: 14px 16px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 3;
}

.player-name {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-meta-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.meta-dot {
    color: rgba(255, 255, 255, 0.2);
}

.player-city-clean {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
}

.player-city-clean i {
    color: var(--gold);
    font-size: 0.8rem;
}

.player-rating-clean {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 14px;
}

.rating-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-val {
    font-weight: 800;
    color: var(--white);
    font-size: 0.95rem;
}

.rating-max {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.status-clean-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #2ecc71;
}

.status-dot-green {
    width: 6px;
    height: 6px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 6px #2ecc71;
}

/* Botões do Card */
.card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-profile, .btn-contact {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

.btn-profile {
    flex: 1;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black);
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.25);
}

.btn-profile:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.45);
    transform: translateY(-2px);
}

.btn-contact {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 9px 14px;
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   ANIMAÇÕES E SKELETON LOADER
   ========================================================================== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skeleton-card {
    background: var(--bg-card);
    border-radius: 16px;
    height: 440px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-dark);
    margin-top: 20px;
}

.no-results-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.6;
}

.no-results h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.no-results p {
    color: var(--text-muted);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-black);
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ==========================================================================
   MODAIS COM GLASSMORPHISM & DESIGN PREMIUM
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.glass-card {
    background: rgba(21, 21, 21, 0.95);
    border: 1.5px solid var(--border-gold);
    border-radius: 24px;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 193, 7, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .glass-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--bg-black);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    padding: 36px;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

/* Card FUT no lado esquerdo do Modal */
.modal-fut-card {
    display: flex;
    justify-content: center;
}

.fut-card-inner {
    width: 280px;
    height: 410px;
    background: linear-gradient(145deg, #2a2202 0%, #111111 40%, #1e1803 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.3);
}

.fut-top {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.fut-rating {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 0.85;
}

.fut-pos {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 4px;
}

.fut-photo-container {
    width: 210px;
    height: 240px;
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

#modal-fut-photo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
}

.silhueta-container {
    font-size: 9rem;
    color: rgba(255, 193, 7, 0.3);
    margin-bottom: 10px;
}

.fut-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    margin-top: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.fut-stats-bar {
    margin-top: auto;
    width: 100%;
    background: rgba(255, 193, 7, 0.15);
    border-top: 1px solid var(--border-gold);
    padding: 6px;
    text-align: center;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1.5px;
}

/* Detalhes de Perfil na direita */
.modal-details {
    display: flex;
    flex-direction: column;
}

.modal-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.badge-posicao {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-destaque {
    background: rgba(255, 193, 7, 0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.modal-city {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-city i {
    color: var(--gold);
}

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 500px) {
    .attributes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.attr-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.attr-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.attr-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

.modal-rating-section {
    background: rgba(255, 193, 7, 0.06);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.stars-display {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.rating-note {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.modal-bio {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 28px;
    border-left: 4px solid var(--gold);
}

.modal-bio h4 {
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-bio p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.btn-gold-action {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black);
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-gold-action:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.7);
    transform: translateY(-3px);
}

/* Modal de Contato */
.contact-card {
    max-width: 520px;
    padding: 36px;
}

.contact-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 193, 7, 0.15);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    border: 1px solid var(--border-gold);
}

.contact-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.w-100 {
    width: 100%;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    position: relative;
    z-index: 10;
    padding: 40px 24px;
    background: rgba(11, 11, 11, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.footer-content {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}
