* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: 'Montserrat', sans-serif;
        background-color: #0f204d;
        color: #ffffff;
        overflow-x: hidden;
    }
    /* Textura de gramado sutil */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 20% 40%, rgba(212, 175, 55, 0.05) 2%, transparent 2.5%);
        background-size: 45px 45px;
        pointer-events: none;
        z-index: -1;
    }
    .navbar-custom {
        background: rgb(8 18 45);
        padding: 0px;
        transition: 0.3s;
    }
    .navbar-brand {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 1.9rem;
        background: linear-gradient(135deg, #fff, #d4af37, #ffdd88);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    .nav-link {
        color: #f0f2f5 !important;
        font-weight: 600;
        margin: 0 0.5rem;
        transition: 0.3s;
        font-family: 'Montserrat', sans-serif;
    }
    .nav-link:hover, .nav-link.active { color: #d4af37 !important; }
    .nav-link i { margin-right: 6px; color: #d4af37; }
    .btn-gold {
        background: #d4af37;
        color: #0f204d;
        font-weight: 700;
        padding: 13px 32px;
        border-radius: 60px;
        transition: 0.3s;
        border: none;
        font-family: 'Montserrat', sans-serif;
    }
    .btn-gold:hover { background: #c2a12e; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
    .btn-outline-gold {
        border: 2px solid #d4af37;
        background: transparent;
        color: #d4af37;
        border-radius: 60px;
        padding: 13px 28px;
        font-weight: 600;
        transition: 0.3s;
        font-family: 'Montserrat', sans-serif;
    }
    .btn-outline-gold:hover { background: #d4af37; color: #0f204d; }
    
    /* Hero com imagem de fundo de jogador em movimento - SEM BORDA */
    .hero-section {
        background: linear-gradient(115deg, rgba(8,18,45,0.85) 0%, rgba(15,32,77,0.7) 100%), url('https://images.unsplash.com/photo-1517927033932-b3d18e61fb3a?q=80&w=2070&auto=format');
        background-size: cover;
        background-position: center 35%;
        min-height: 85vh;
        display: flex;
        align-items: center;
        position: relative;
        border-radius: 0 0 60px 60px;
        margin-bottom: 60px;
    }
    .hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to top, #0f204d, transparent);
        border-radius: 0 0 60px 60px;
    }
    .hero-title {
        font-size: 4rem;
        font-weight: 800;
        font-family: 'Montserrat', sans-serif;
        line-height: 1.1;
    }
    .hero-title span { color: #d4af37;}
    
    /* Cards modernos */
    .card-futbol {
        background: rgba(10, 26, 64, 0.8);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 28px;
        transition: all 0.3s ease;
        overflow: hidden;
        height: 100%;
    }
    .card-futbol:hover { transform: translateY(-10px); border-color: #d4af37; box-shadow: 0 25px 35px rgba(0,0,0,0.4); }
    .card-img-top-custom { height: 220px; object-fit: cover; transition: 0.5s; width: 100%; }
    .card-futbol:hover .card-img-top-custom { transform: scale(1.03); }
    
    .section-title {
        font-size: 33px;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        border-left: 6px solid #d4af37;
        padding-left: 20px;
        margin-bottom: 30px;
    }
    .section-title i { color: #d4af37; margin-right: 12px; }
    
    /* Espaçamento entre seções */
    section {
        margin: 80px 0;
    }
    .stats-section {
        margin: 30px 0 70px 0;
    }
    
    .stat-card {
        background: rgba(212, 175, 55, 0.1);
        border-radius: 30px;
        padding: 25px;
        text-align: center;
        border: 1px solid rgba(212, 175, 55, 0.3);
        transition: 0.3s;
    }
    .stat-card:hover { background: rgba(212, 175, 55, 0.2); transform: scale(1.02); }
    .stat-number { font-size: 3rem; font-weight: 800; color: #d4af37; font-family: 'Montserrat', sans-serif; }
    
    .blog-card {
        background: #0a1a40;
        border-radius: 24px;
        overflow: hidden;
        transition: 0.3s;
        height: 100%;
    }
    .blog-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
    .contact-box {
        background: linear-gradient(135deg, #0a1a40, #071433);
        border-radius: 40px;
        padding: 40px;
        border: 1px solid rgba(212, 175, 55, 0.4);
    }
    /* Galeria grid */
    .gallery-img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 20px;
        transition: 0.3s;
        cursor: pointer;
        border: 2px solid rgba(212, 175, 55, 0.3);
    }
    .gallery-img:hover { transform: scale(1.02); border-color: #d4af37; opacity: 0.9; }
    
    footer { background: #071433; padding: 40px 0; margin-top: 70px; border-top: 1px solid #d4af37; font-family: 'Montserrat', sans-serif; }
    
    @media (max-width: 768px) {
        .hero-title { font-size: 2.5rem; }
        .section-title { font-size: 1.8rem; }
        section { margin: 50px 0; }
    }
    
    /* Formulário estilizado */
    .form-control-custom {
        background: #11224f;
        border: 1px solid #2a4480;
        color: white;
        border-radius: 50px;
        padding: 12px 20px;
        width: 100%;
        margin-bottom: 18px;
        font-family: 'Montserrat', sans-serif;
    }
    .form-control-custom:focus {
        border-color: #d4af37;
        outline: none;
        background: #0f204d;
    }
    textarea.form-control-custom {
        border-radius: 30px;
    }

    .card-futbol img {
        width: 100%;
    }

/* Wrapper único para esta página */
    .pagina-noticia-modal {
        /* Reset de estilos específicos */
        --gold-primary: #ffd700;
        --gold-secondary: #ffed4e;
        --gold-dark: #ccaa00;
        --dark-bg: rgba(0, 0, 0, 0.3);
        --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Cores personalizadas */
    .pagina-noticia-modal .text-gold {
        color: var(--gold-primary) !important;
    }
    
    .pagina-noticia-modal .text-gold-hover:hover {
        color: var(--gold-primary) !important;
    }
    
    /* Botão Gold */
    .pagina-noticia-modal .btn-gold {
        background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
        color: #1a1a1a;
        font-weight: 600;
        border: none;
        transition: var(--transition-default);
        padding: 0.75rem 2rem;
        border-radius: 50px;
    }
    
    .pagina-noticia-modal .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        color: #1a1a1a;
    }
    
    /* Botão Outline Gold */
    .pagina-noticia-modal .btn-outline-gold {
        border: 2px solid var(--gold-primary);
        color: var(--gold-primary);
        background: transparent;
        transition: var(--transition-default);
        border-radius: 50px;
        padding: 0.5rem 1.5rem;
    }
    
    .pagina-noticia-modal .btn-outline-gold:hover {
        background: var(--gold-primary);
        color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    }
    
    /* Badge Gold Soft */
    .pagina-noticia-modal .bg-gold-soft {
        background: rgba(255, 215, 0, 0.15);
        color: var(--gold-primary);
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        font-size: 0.85rem;
    }
    
    /* Card com hover */
    .pagina-noticia-modal .hover-card {
        transition: var(--transition-default);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.4) !important;
    }
    
    .pagina-noticia-modal .hover-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        border-color: var(--gold-primary);
    }
    
    /* Título da seção */
    .pagina-noticia-modal .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--gold-primary);
        position: relative;
        display: inline-block;
    }
    
    /* Divisor decorativo */
    .pagina-noticia-modal .divider-gold {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
        border-radius: 3px;
        margin: 1rem auto;
    }
    
    /* Conteúdo da notícia */
    .pagina-noticia-modal .conteudo-noticia {
        line-height: 1.8;
        font-size: 1.1rem;
        background: rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(5px);
    }
    
    .pagina-noticia-modal .conteudo-noticia img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 2rem 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }
    
    .pagina-noticia-modal .conteudo-noticia h2,
    .pagina-noticia-modal .conteudo-noticia h3 {
        color: var(--gold-primary);
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .pagina-noticia-modal .conteudo-noticia h4,
    .pagina-noticia-modal .conteudo-noticia h5 {
        color: var(--gold-secondary);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .pagina-noticia-modal .conteudo-noticia p {
        margin-bottom: 1.2rem;
    }
    
    .pagina-noticia-modal .conteudo-noticia ul,
    .pagina-noticia-modal .conteudo-noticia ol {
        margin: 1rem 0 1rem 2rem;
    }
    
    .pagina-noticia-modal .conteudo-noticia blockquote {
        border-left: 4px solid var(--gold-primary);
        padding-left: 1.5rem;
        margin: 1.5rem 0;
        font-style: italic;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Breadcrumb */
    .pagina-noticia-modal .breadcrumb-item a {
        color: var(--gold-primary);
        text-decoration: none;
        transition: var(--transition-default);
    }
    
    .pagina-noticia-modal .breadcrumb-item a:hover {
        color: var(--gold-secondary);
    }
    
    .pagina-noticia-modal .breadcrumb-item.active {
        color: rgba(255, 255, 255, 0.5);
    }
    
    /* Meta informações */
    .pagina-noticia-modal .meta-info {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50px;
        padding: 0.5rem 1.5rem;
        display: inline-flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Card de resumo */
    .pagina-noticia-modal .card-resumo {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.05) 100%);
        border-left: 4px solid var(--gold-primary);
    }
    
    /* Botões de compartilhamento */
    .pagina-noticia-modal .btn-share {
        width: 38px;
        height: 38px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    /* Animação de entrada */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .pagina-noticia-modal .animate-fade-in {
        animation: fadeInUp 0.6s ease-out;
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
        .pagina-noticia-modal .page-section {
            padding: 1.5rem 0;
            margin: 1rem 0;
        }
        
        .pagina-noticia-modal .section-title {
            font-size: 1.8rem;
        }
        
        .pagina-noticia-modal .conteudo-noticia {
            font-size: 1rem;
            padding: 1rem !important;
        }
        
        .pagina-noticia-modal .meta-info {
            flex-direction: column;
            gap: 0.5rem;
            background: none;
            padding: 0;
        }
    }
    
    /* Scroll suave */
    .pagina-noticia-modal html {
        scroll-behavior: smooth;
    }
    
    /* Estilo para imagens responsivas */
    .pagina-noticia-modal .img-cover {
        width: 100%;
        object-fit: cover;
    }

    .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    color: #fff;
}

/* Classe principal model-jogador */
.model-jogador {
    --gold: #ffd700;
    --gold-light: #ffed4e;
    --dark: #0a0a0a;
    --gray: #1a1a1a;
}

/* Seção sem fundo */
.model-jogador .jogadores-section {
    background: transparent;
}

/* Cabeçalho */
.model-jogador .jogadores-header {
    margin-bottom: 60px;
}

.model-jogador .jogadores-titulo {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.model-jogador .jogadores-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 0 auto 20px;
}

.model-jogador .jogadores-subtitulo {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin: 0;
}

/* Cards modernos sem fundo */
.model-jogador .jogador-card {
    background: transparent;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Fotos quadradas e maiores */
.model-jogador .jogador-foto {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.model-jogador .jogador-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

/* Efeito hover nas fotos */
.model-jogador .jogador-card:hover .jogador-foto {
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.model-jogador .jogador-card:hover .jogador-foto img {
    transform: scale(1.08);
}

/* Informações do jogador */
.model-jogador .jogador-info {
    padding: 10px 0;
}

.model-jogador .jogador-nome {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.model-jogador .jogador-posicao {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.model-jogador .jogador-camisa {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

/* Container do carousel */
.model-jogador .jogadores-carousel {
    position: relative;
    padding: 0 40px;
}

/* Botões de navegação modernos */
.model-jogador .jogadores-carousel .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.model-jogador .jogadores-carousel .owl-nav button {
    pointer-events: auto;
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
    color: var(--gold) !important;
    font-size: 32px !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
}

.model-jogador .jogadores-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -20px;
}

.model-jogador .jogadores-carousel .owl-nav .owl-next {
    position: absolute;
    right: -20px;
}

.model-jogador .jogadores-carousel .owl-nav button:hover {
    background: var(--gold) !important;
    color: #000 !important;
    transform: scale(1.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.model-jogador .jogadores-carousel .owl-nav button:active {
    transform: scale(0.95);
}

.model-jogador .jogadores-carousel .owl-nav button span {
    font-size: 40px;
    line-height: 1;
    margin-top: -4px;
}

/* Dots minimalistas */
.model-jogador .jogadores-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.model-jogador .jogadores-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.model-jogador .jogadores-carousel .owl-dot.active span {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.model-jogador .jogadores-carousel .owl-dot:hover span {
    background: var(--gold-light);
}

/* Responsivo */
@media (max-width: 992px) {
    .model-jogador .jogadores-carousel {
        padding: 0 20px;
    }
    
    .model-jogador .jogadores-carousel .owl-nav .owl-prev {
        left: -10px;
    }
    
    .model-jogador .jogadores-carousel .owl-nav .owl-next {
        right: -10px;
    }
    
    .model-jogador .jogadores-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 28px !important;
    }
    
    .model-jogador .jogadores-titulo {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .model-jogador .jogadores-section {
        padding: 50px 0;
    }
    
    .model-jogador .jogadores-carousel {
        padding: 0 15px;
    }
    
    .model-jogador .jogadores-carousel .owl-nav {
        display: none;
    }
    
    .model-jogador .jogadores-titulo {
        font-size: 2rem;
    }
    
    .model-jogador .jogador-nome {
        font-size: 1.1rem;
    }
    
    .model-jogador .jogador-foto {
        border-radius: 15px;
    }

    .navbar-collapse {
        margin-bottom: 30px;
    }   
}

@media (max-width: 576px) {
    .model-jogador .jogadores-titulo {
        font-size: 1.8rem;
    }
    
    .model-jogador .jogadores-subtitulo {
        font-size: 0.9rem;
    }
}

/* Classe principal */
.model-sobre {
    --gold: #ffd700;
    --gold-light: #ffed4e;
    --gold-dark: #ccaa00;
}

/* HERO */
.model-sobre .sobre-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    position: relative;
    overflow: hidden;
}

.model-sobre .hero-titulo {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.model-sobre .hero-subtitulo {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* SOBRE */
.model-sobre .sobre-clube {
    background: transparent;
}

/* IMAGENS */
.model-sobre .sobre-imagem-principal {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.model-sobre .sobre-imagem-principal img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Efeito hover */
.model-sobre .sobre-imagem-principal:hover img {
    transform: scale(1.05);
}

/* Espaçamento entre imagem1 e imagem2 */
.model-sobre .sobre-imagem-principal + .sobre-imagem-principal {
    margin-top: 20px;
}

/* Legenda */
.model-sobre .imagem-legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

/* TEXTO */
.model-sobre .sobre-conteudo {
    padding: 10px;
}

.model-sobre .sobre-texto {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.model-sobre .animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.model-sobre .animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .model-sobre .hero-titulo {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .model-sobre .hero-titulo {
        font-size: 2rem;
    }

    .model-sobre .hero-subtitulo {
        font-size: 1rem;
    }

    .model-sobre .sobre-clube .row {
        flex-direction: column;
    }

    .model-sobre .sobre-imagem-principal {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .model-sobre .hero-titulo {
        font-size: 1.6rem;
    }

    .model-sobre .hero-subtitulo {
        font-size: 0.9rem;
    }

}