.bg-marinho { background-color: #1a2a4a; }
.btn-marinho { background-color: #1a2a4a; color: #fff; }
.btn-marinho:hover { background-color: #2a4a7a; color: #fff; }
.btn-outline-marinho { color: #1a2a4a; border-color: #1a2a4a; }
.btn-outline-marinho:hover { background-color: #1a2a4a; color: #fff; }
.section-title { color: #1a2a4a; border-left: 4px solid #1a2a4a; padding-left: 15px; }
.noticia-card { transition: transform 0.2s; }
.noticia-card:hover { transform: scale(1.02); }
.modalidade-card { transition: all 0.2s; cursor: pointer; }
.modalidade-card:hover { background-color: #f0f4f8; }
/* Página de notícia */
/* Faixa de anúncios – sem animação CSS, agora controlada por JS */
.anuncios-wrapper {
    overflow: hidden;
    position: relative;
}
.anuncios-track {
    display: flex;
    gap: 1rem;
    will-change: transform; /* otimização */
    white-space: nowrap;
}
.anuncio-item {
    transition: transform 0.2s;
    flex-shrink: 0;
}
.anuncio-item:hover {
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .anuncio-item img {
        height: 80px !important;
    }
}

/* Faixa de clubes */
.clube-item {
    transition: transform 0.2s;
}
.clube-item:hover {
    transform: translateY(-5px);
}
.noticia-completa {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.noticia-completa .conteudo-noticia {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #212529;
}
.noticia-completa .conteudo-noticia p {
    margin-bottom: 1.5rem;
}
.noticia-completa .conteudo-noticia img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}
.share-buttons .btn {
    border-radius: 2rem;
    padding: 0.25rem 1rem;
}
/* Sidebar */
.list-group-item {
    border-left: none;
    border-right: none;
}
.list-group-item:first-child {
    border-top: none;
}
.card-header {
    border-radius: 1rem 1rem 0 0 !important;
}
.card {
    overflow: hidden;
}
/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}
.breadcrumb-item a {
    color: #1a2a4a;
}
.breadcrumb-item.active {
    color: #6c757d;
}
/* Comentários */
#comentario {
    resize: vertical;
}
/* Estrutura comum para os carrosséis */
.carrossel-container {
    overflow: hidden;
    position: relative;
}
.carrossel-track {
    display: flex;
    will-change: transform;
    white-space: nowrap;
}
.carrossel-item {
    transition: transform 0.2s;
    flex-shrink: 0;
}
.carrossel-item:hover {
    transform: scale(1.05);
}

/* Ajustes específicos para os anúncios */
.anuncios-wrapper .carrossel-item img {
    height: 120px;
    width: auto;
    object-fit: cover;
}
@media (max-width: 768px) {
    .anuncios-wrapper .carrossel-item img {
        height: 80px !important;
    }
}

/* Ajustes para os clubes */
.clubes-wrapper .carrossel-item {
    width: 90px;
    text-align: center;
}
.clubes-wrapper .carrossel-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.clubes-wrapper .carrossel-item small {
    display: block;
    margin-top: 4px;
    font-size: 0.7rem;
    color: #6c757d;
}
/* ========== CLASSIFICAÇÕES ========== */
.classificacao-table {
    font-size: 0.9rem;
    border-collapse: collapse;
}
.classificacao-table thead th {
    background-color: #1a2a4a !important;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}
.classificacao-table tbody td {
    vertical-align: middle;
    padding: 0.5rem 0.3rem;
}
.classificacao-table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}
.classificacao-table tbody tr:hover {
    background-color: #e9ecef;
}
.classificacao-table .table-dark th {
    background-color: #0d1b2a !important;
}
.nav-tabs .nav-link.active {
    background-color: #1a2a4a;
    color: #fff !important;
    border-color: #1a2a4a;
}
.nav-tabs .nav-link {
    color: #1a2a4a;
    font-weight: 600;
}