@font-face {
    font-family: 'fonteCamisa';
    src: url(../assets/fonts/fla2026.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* vermelhos */
    --vermelho: #E8001C;
    --vermelho-suave: rgba(232, 0, 27, 0.233);
    --vermelho-borda: rgba(232, 0, 28, 0.35);

    /* fundos */
    --fundo-pagina: #0A0A0A;
    --fundo-card: #111111;
    --fundo-navbar: #000000;

    /* textos */
    --texto-principal: #FFFFFF;
    --texto-secundario: #ffffff66;
    --texto-navbar: #000000;

    /* brilhos */
    --neon-m: 0 0 10px rgba(232, 0, 28, 0.50);
    --neon-g: 0 0 14px rgba(232, 0, 28, 0.70);
    --neon-linha: 0 0 8px #E8001C, 0 0 20px rgba(232, 0, 28, 0.40);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--fundo-pagina);
}

.badge {
    margin-bottom: 24px;
}

.badge span {
    display: inline-block;
    background-color: var(--vermelho-suave);
    color: var(--vermelho);
    border: 1px solid var(--vermelho-borda);
    box-shadow: var(--neon-m);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
}

.titulo {
    color: var(--texto-principal);
    font-size: 40px;
    margin: 0;
    padding-bottom: 5px;
    text-align: center;
    width: 100%;
}

.destaque {
    display: inline;
    color: var(--vermelho);
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
}

.subTitulo {
    color: var(--texto-secundario);
    font-size: 22px;
    margin-top: 5px;
    font-weight: bold;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s ease;
    background-color: var(--fundo-card);
    color: var(--vermelho);
    border: 1px solid var(--vermelho-borda);
}

.btn:hover {
    transform: scale(1.05);
    background-color: var(--vermelho);
    color: var(--texto-navbar);
    border-color: var(--vermelho);
    box-shadow: var(--neon-g);
}

/* hero */
.hero {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 40px;
    margin-top: 0;
    width: 100%;
}

#escudoCRF {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 14px rgba(232, 0, 28, 0.70));
    animation: batida 3s ease-out infinite;
}

.containerBtn {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}


/* historia */
.containerHistoria {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 64px;
}

.texto {
    padding-right: 50px;
    border-right: none;
    position: relative;
}

.texto::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--vermelho);
}

.tituloPrincipal {
    text-align: left;
    color: var(--texto-principal);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.textoPrincipal {
    text-align: left;
    color: var(--texto-secundario);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    margin-top: 0;
}

.textoPrincipal:last-child {
    margin-bottom: 0;
}

.cardsHistoria {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 400px;
}

.item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #141414;
}

.item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.itemIcon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: var(--vermelho-suave);
    border: 1px solid var(--vermelho-borda);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.itemIcon img {
    width: 45px;
    height: 45px;
}

.itemNome {
    font-size: 22px;
    font-weight: bold;
    color: var(--texto-principal);
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.itemDesc {
    font-size: 14px;
    color: var(--texto-secundario);
    line-height: 1.7;
    margin-top: 4px;
}


/* elenco*/
.containerElenco {
    padding: 48px 40px;
    text-align: center;
}

.filtroElenco {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.filtroElencoBtn {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: var(--texto-secundario);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filtroElencoBtn:hover {
    border-color: var(--vermelho-borda);
    color: var(--texto-principal);
}

.filtroElencoAtivo {
    background: #3a0a0a;
    border-color: var(--vermelho-borda);
    color: var(--vermelho);
    filter: drop-shadow(0 0 8px rgba(232, 0, 28, 0.40));
}

.filtroSeparador {
    width: 1px;
    background: #2a2a2a;
    margin: 0 4px;
}

.elenco {
    display: grid;
    grid-template-columns: repeat(5, 200px);
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.cardJogador {
    width: 200px;
    height: auto;
    border: 1px solid var(--vermelho-borda);
    text-align: center;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    background-color: var(--fundo-card);
    transition: transform 0.3s ease, box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cardJogador:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 16px rgba(232, 0, 28, 0.35);
}

.cardJogador:hover .numeroFoto {
    color: var(--vermelho);
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
}

.numeroFoto {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 60px;
    color: rgba(232, 0, 28, 0.25);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: 'fonteCamisa';
    transition: all 0.7s ease;
}

.imgJogador {
    height: 220px;
    padding-top: 5px;
    margin-bottom: -4px;
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
}

.posicaoJogador {
    display: block;
    background-color: var(--vermelho);
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    padding: 6px 0;
    font-weight: bold;
}

.infoJogador {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-bottom: 5px;
}

.subInfos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 14px;
}

.nomeJogador {
    color: var(--texto-principal);
    font-weight: bold;
    padding-top: 3px;
}

.nacionalidade img {
    width: 28px;
    height: 18px;
    border-radius: 3px;
}

.numeroJogador {
    color: var(--vermelho);
    font-weight: bold;
}

/* idolos */
.containerIdolos {
    padding: 64px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 48px;
    gap: 0;
    height: 380px;
}

.conteudoIdolo {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 48px;
    border-right: 1px solid #1e1e1e;
    position: relative;
    text-align: left;
    align-items: flex-start;
    height: 100%;
    overflow: hidden;
}

.headerIdolo {
    margin-bottom: 20px;
}

.tituloIdolo {
    font-size: 32px;
    font-weight: 700;
    color: var(--texto-principal);
    margin: 0 0 6px 0;
}

.posicaoIdolo {
    display: inline-block;
    color: var(--texto-secundario);
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--vermelho);
}

.bioIdolo {
    color: var(--texto-secundario);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
}

.bioIdolo::-webkit-scrollbar {
    width: 3px;
}

.bioIdolo::-webkit-scrollbar-track {
    background: transparent;
}

.bioIdolo::-webkit-scrollbar-thumb {
    background: rgba(232, 0, 28, 0.3);
    border-radius: 2px;
}

.rodapeIdolo {
    display: flex;
    align-items: center;
    gap: 40px;
}

.infoIdolo {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tituloInfoIdolo {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.subtituloIdolo {
    color: var(--texto-principal);
    font-weight: 700;
    font-size: 15px;
}

.carrosselIdolo {
    padding-left: 48px;
    flex-shrink: 0;
    height: 100%;
    position: relative;
}

.carrosselIdolo img {
    width: 500px;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    display: block;
    border: 1px solid #1e1e1e;
}

.fotoOverlay {
    position: absolute;
    bottom: 0;
    left: 48px;
    right: 0;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.carrosselIdolo:hover .fotoOverlay {
    opacity: 1;
}

.fotoDescricao {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
}

.navIdolos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    position: relative;
}

.dotsIdolos {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navDot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2a2a2a;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.navDot.ativo {
    background: var(--vermelho);
    box-shadow: 0 0 8px rgba(232, 0, 28, 0.7);
    width: 20px;
    border-radius: 3px;
}

.btnLateralIdolo {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 60px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0 8px;
}

.btnLateralIdolo:hover {
    color: var(--vermelho);
}


/* titulos */
.containerTitulos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px;
}

.headerTitulos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: 12px;
}

.contagemTitulos {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--vermelho);
    gap: 20px;
    padding-bottom: 10px;
    width: 100%;
}

.totalTitulos {
    font-size: 100px;
    color: var(--vermelho);
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
    margin: 0;
    line-height: 1;
}

.tituloTitulos {
    font-size: 24px;
    font-weight: bold;
    color: var(--texto-secundario);
    margin-bottom: 0;
}

.fraseTitulos {
    color: var(--texto-secundario);
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    width: 100%;
    margin: 0;
}

.carrosselTacas {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tacasWrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.cardTitulo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    cursor: pointer;
    opacity: 0;
}

.cardTitulo.ativo {
    opacity: 1;
}

.cardTitulo.lateral {
    opacity: 0.5;
}

.cardTitulo.longe {
    opacity: 0.3;
}

.nomeTitulo {
    color: var(--texto-principal);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-align: center;
}

.imgTaca {
    width: 160px;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
}

#tacaCopaDoBrasil {
    width: 200px;
}

.qtdTitulos {
    color: var(--vermelho);
    font-weight: bold;
    font-size: 40px;
    margin: 0;
    padding-top: 15px;
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
}

.anosTitulos {
    color: var(--texto-secundario);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    max-width: 200px;
    line-height: 1.6;
}

.btnLateral {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 80px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
    padding: 0 16px;
}

.btnLateral:hover {
    color: var(--vermelho);
}

.btnEsquerda {
    left: 0;
}

.btnDireita {
    right: 0;
}


/* homenagem*/

.containerHomenagem {
    padding: 64px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#badgeHomenagem {
    text-align: center;
    margin: 0;
}

.caixaCeu {
    position: relative;
    background-color: #000000;
    width: 100%;
    min-height: 650px;
    border-radius: 20px;
    margin: 32px auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.estrelasGarotos {
    position: relative;
    width: 100%;
    height: 420px;
}

.estrela {
    position: absolute;
    width: 160px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.60));
    transition: transform 0.3s ease, filter 0.3s ease;
    z-index: 1;
}

.estrela:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(232, 0, 28, 0.90));
}

/* posicoes estrelas */
#e1 {
    top: 20px;
    left: 3%;
}

#e2 {
    top: 60px;
    left: 20%;
}

#e3 {
    top: 10px;
    left: 38%;
}

#e4 {
    top: 55px;
    left: 56%;
}

#e5 {
    top: 15px;
    left: 74%;
}

#e6 {
    top: 220px;
    left: 10%;
}

#e7 {
    top: 250px;
    left: 28%;
}

#e8 {
    top: 215px;
    left: 46%;
}

#e9 {
    top: 245px;
    left: 64%;
}

#e10 {
    top: 210px;
    left: 82%;
}

.rodapeCeu {
    border-top: 1px solid var(--vermelho);
    padding: 20px 40px 28px;
    text-align: center;
}

#badgeRodapeHomenagem {
    animation: batida 15s ease-out infinite;
}

.pontinho {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    animation: piscar ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}


/* galeria */
.containerGaleria {
    padding: 64px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.filtroGaleria {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.itemFiltro {
    background-color: var(--fundo-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 1.5px solid #1e1e1e;
    cursor: pointer;
}

.itemFiltro:hover {
    border: 1.5px solid var(--vermelho-borda);
    filter: drop-shadow(0 0 4px rgba(232, 0, 28, 0.60));
}

.iconeFiltro {
    width: 36px;
    height: 36px;
    background-color: #2a2a2a;
    border-radius: 5px;
    padding: 6px;
}

.tituloFiltro {
    color: var(--texto-principal);
    font-size: 13px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.subFiltro {
    color: var(--texto-secundario);
    font-size: 12px;
    display: block;
    text-align: center;
}

.filtroAtivo {
    background-color: #3a0a0a;
    border: 1px solid var(--vermelho-borda);
    filter: drop-shadow(0 0 4px rgba(232, 0, 28, 0.60));
}

.filtroAtivo .iconeFiltro {
    background-color: #3a0000;
}

.filtroAtivo .tituloFiltro,
.filtroAtivo .subFiltro {
    color: var(--vermelho);
}

.gridGaleria {
    display: grid;
    grid-template-columns: repeat(2, 480px);
    gap: 10px;
    padding-top: 50px;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #1e1e1e;
}

.itemGaleria {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.imgGaleria {
    width: 100%;
    height: 270px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.5s ease;
}

.overlayGaleria {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    padding: 16px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.itemGaleria:hover {
    transform: scale(1.02);
    border: 1px solid var(--vermelho);
    filter: drop-shadow(0 0 14px rgba(232, 0, 28, 0.70));
}

.itemGaleria:hover .overlayGaleria {
    opacity: 1;
}

.badgeGaleria span {
    display: inline-block;
    background-color: var(--vermelho-suave);
    color: var(--vermelho);
    border: 1px solid var(--vermelho-borda);
    box-shadow: var(--neon-m);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
}

.tituloGaleria {
    color: var(--texto-principal);
    font-weight: bold;
    font-size: 17px;
}

.subGaleria {
    color: var(--texto-secundario);
    font-size: 15px;
    text-align: left;
}

.rodapeGaleria {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--texto-principal);
    font-weight: bold;
    margin-top: 10px;
}

.btnGaleria {
    width: 200px;
    height: 45px;
    background-color: transparent;
    border: 1px solid var(--texto-principal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--texto-principal);
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.btnGaleria:hover {
    background-color: var(--texto-principal);
    color: var(--fundo-pagina);
    transform: scale(1.05);
}


/* modal jogador */
.overlayModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modalJogador {
    border: 1px solid #1e1e1e;
    border-left: 3px solid var(--vermelho);
    box-shadow: -4px 0 16px rgba(232, 0, 28, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: stretch;
    color: var(--texto-principal);
    background: #111;
    overflow: hidden;
    width: 860px;
    max-height: 85vh;
}

.modalEsquerda {
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    width: 280px;
    flex-shrink: 0;
}

.modalEsquerda img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: top;
    display: block;
    padding-top: 5px;
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
}

.statsJogador {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(232, 0, 28, 0.3);
}

.statItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    border-right: 1px solid rgba(232, 0, 28, 0.2);
}

.statItem:last-child {
    border-right: none;
}

.statNum {
    font-size: 20px;
    font-weight: 700;
    color: var(--vermelho);
    text-shadow: 0 0 10px rgba(232, 0, 28, 0.5);
    line-height: 1;
    margin-bottom: 3px;
}

.statLabel {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--texto-secundario);
    text-transform: uppercase;
}

.modalHeader {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--texto-secundario);
    margin-bottom: 10px;
}

.modalDireita {
    background-color: var(--fundo-card);
    padding: 24px 24px 20px;
    flex: 1;
    overflow-y: auto;
}

.numeroModal {
    font-size: 100px;
    color: var(--vermelho);
    line-height: 1;
    flex-shrink: 0;
    font-family: 'fonteCamisa';
    padding-right: 5px;
    padding-left: 10px;
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
}

.modalApelido {
    font-size: 24px;
    font-weight: 700;
    color: var(--texto-principal);
    margin: 0 0 4px 0;
    letter-spacing: 0.05em;
}

.modalSub {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modalNomeCompleto {
    font-size: 15px;
    color: var(--texto-secundario);
}

.modalBandeira {
    width: 28px;
    height: 18px;
    border-radius: 3px;
}

.dados {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--texto-secundario);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.linhaModal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding: 8px 0;
}

.linhaModal:last-child {
    border-bottom: none;
}

.conteudoJogador {
    display: flex;
    flex-direction: column;
}

.tituloConteudo {
    color: var(--texto-secundario);
    font-weight: 500;
}

.subtituloConteudo {
    color: var(--texto-principal);
    font-weight: bold;
}

.modalSobre {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 2px solid var(--texto-secundario);
    margin-bottom: 10px;
}

.tituloModal {
    color: var(--vermelho);
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
    font-weight: bold;
    text-align: left;
}

.bioJogador {
    padding-top: 0;
    margin-top: 0;
    text-align: justify;
    font-size: 14px;
}

.modalTitulos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    border-top: 1px solid #1a1a1a;
    padding-top: 10px;
}

.modalTitulosHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.totalTitulosJogador {
    font-size: 22px;
    font-weight: 800;
    color: var(--vermelho);
    filter: drop-shadow(0 0 8px rgba(232, 0, 28, 0.50));
}

.titulosGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}

.tituloItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(232, 0, 28, 0.05);
    border: 1px solid rgba(232, 0, 28, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
}

.tituloNome {
    font-size: 12px;
    color: var(--texto-secundario);
}

.tituloQtd {
    font-size: 16px;
    font-weight: 700;
    color: var(--vermelho);
    text-shadow: 0 0 8px rgba(232, 0, 28, 0.5);
}

.semTitulos {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* modal galeria*/
.modalGaleria {
    border: 1px solid #1e1e1e;
    border-left: 3px solid var(--vermelho);
    box-shadow: -4px 0 16px rgba(232, 0, 28, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: stretch;
    color: var(--texto-principal);
    background: #111;
    overflow: hidden;
    width: 1000px;
    max-height: 85vh;
}

.modalGaleriaEsquerda {
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    width: 580px;
    flex-shrink: 0;
    min-height: 500px;
    position: relative;
}

.modalGaleriaEsquerda img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: center;
    display: block;
}

.modalGaleriaFoto.carregando {
    opacity: 0.3;
}

.loadingGif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top-color: var(--vermelho);
    border-radius: 50%;
    animation: girar 1s linear infinite;
    display: none;
    z-index: 10;
}

.carregando~.loadingGif {
    display: block;
}

.btnGif {
    background: var(--vermelho);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.btnGif:hover {
    background: #c0001a;
}

.btnGif.rodando {
    background: #333;
    color: var(--vermelho);
    border-top: 1px solid var(--vermelho);
}

.modalGaleriaNav {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(232, 0, 28, 0.3);
    padding: 10px 16px;
}

.navBtnFlutuante {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 100px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0 8px;
    flex-shrink: 0;
}

.navBtnFlutuante:hover {
    color: var(--vermelho);
}

.navContador {
    font-size: 12px;
    color: var(--texto-secundario);
}

.modalGaleriaDireita {
    background-color: var(--fundo-card);
    padding: 24px 24px 20px;
    flex: 1;
    overflow-y: auto;
}

.badgeCategoria {
    display: inline-block;
    background: var(--vermelho);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.modalThumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    border-top: 1px solid #1a1a1a;
    padding-top: 10px;
}

.thumbsGrid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.thumbItem {
    width: 72px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    opacity: 0.6;
}

.thumbItem:hover {
    opacity: 1;
}

.thumbItem.ativo {
    border-color: var(--vermelho);
    opacity: 1;
}

/* footer */
.rodape {
    width: 100%;
    max-width: 1200px;
    border-top: 1px solid #1e1e1e;
}

.divisoria {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--vermelho), transparent);
    margin-bottom: 48px;
}

/* coluna esquerda */
.footerEsquerda {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conteudoFooter {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    justify-content: center;
    gap: 48px;
    padding: 0 40px;
    margin-bottom: 48px;
}

.labelFooter {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--texto-principal);
}

.nomeFooter {
    font-size: 25px;
    font-weight: 900;
    color: var(--vermelho);
    line-height: 1.2;
}

.subFooter {
    font-size: 15px;
    color: var(--texto-secundario);
    line-height: 1.6;
}

.redesFooter {
    display: flex;
    gap: 15px;
    margin-top: 4px;
}

.btnRede {
    background-color: var(--fundo-card);
    border: 1px solid #1e1e1e;
    color: var(--texto-secundario);
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 10px;
    width: 130px;
    height: 45px;
    gap: 6px;
    transition: all 0.3s ease-out;
}

.iconRede {
    width: 30px;
    height: 30px;
}

.btnRede:hover {
    border: 1px solid var(--vermelho);
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(232, 0, 28, 0.50));
}

.btnCurriculo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--vermelho);
    color: var(--vermelho);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease-out;
}

.btnCurriculo:hover {
    background-color: var(--vermelho);
    filter: drop-shadow(0 0 12px rgba(232, 0, 28, 0.50));
    color: var(--texto-principal);
    transform: scale(1.05);
}

.iconCurriculo {
    width: 25px;
    height: 25px;
}

.iconHover {
    display: none;
}

.btnCurriculo:hover .iconNormal {
    display: none;
}

.btnCurriculo:hover .iconHover {
    display: inline;
}

/* coluna central*/
.footerCentro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: stretch;
}

.escudoFooter {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(232, 0, 28, 0.50));
}

.clubeFooter {
    font-weight: bold;
    color: var(--texto-secundario);
    text-align: center;
}

/* coluna direita */
.footerDireita {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
}

.footerDireita a {
    text-decoration: none;
}

.labelFontes {
    font-size: 15px;
    font-weight: 700;
    color: var(--texto-principal);
    text-transform: uppercase;
}

.itemFontes {
    font-size: 15px;
    color: var(--texto-secundario);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.atualizacaoFooter {
    margin-top: 4px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.dotAtualizacao {
    width: 9px;
    height: 9px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulsar 2s ease-in-out infinite;
}

.footerBottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyFooter {
    font-size: 15px;
    color: var(--texto-secundario);
}

.conteudoBottom {
    font-size: 14px;
    color: var(--texto-secundario);
    text-align: right;
    max-width: 400px;
    line-height: 1.5;
}

/* animações*/
@keyframes batida {

    0%,
    40%,
    70%,
    100% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.05);
    }

    50%,
    80% {
        transform: scale(1.05);
    }
}

@keyframes piscar {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes pulsar {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

@keyframes girar {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* responsividade*/
@media (max-width: 768px) {
    .hero {
        padding-right: 0px;
    }
}