/* CSS Personalizado para Categoria Esporte */

/* Seção Principal de Futebol */
.football-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Grid de Escudos dos Times */
.teams-grid {
    margin-bottom: 30px;
}

.teams-grid h3 {
    color: #c41e3a;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #c41e3a;
}

.teams-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    padding: 10px 0;
}

.team-shield {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 80px;
    min-width: 60px;
    flex-shrink: 0;
    justify-content: center;
}

.team-shield:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #c41e3a;
}

.team-shield.selected {
    border-color: #c41e3a;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.2);
}

.team-shield img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 4px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.team-shield span {
    font-size: 0.75rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1;
}

.team-shield.selected span {
    color: #c41e3a;
}

/* Carrossel de Jogos */
.games-carousel-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c41e3a;
}

.carousel-header h3 {
    color: #c41e3a;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
    background: linear-gradient(135deg, #a91e2c 0%, #c0392b 100%);
}

.carousel-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.games-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 350px;
    position: relative;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #c41e3a;
    transform: scale(1.2);
}

.indicator:hover {
    background: #adb5bd;
}

/* Live Game Indicator */
.live-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #dc3545 0%, #ff4757 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-right: 4px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Game Status Indicators */
.game-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.game-status.previous {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.game-status.upcoming {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.game-status.today {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%);
    color: #212529;
}

/* Informações do Time Selecionado */
.selected-team-info {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-team-info h3 {
    color: #c41e3a;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

/* Cards da Seção de Futebol */
.games-card,
.classification-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.games-card h3,
.classification-card h3 {
    color: #c41e3a;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41e3a;
}

/* Lista de Jogos */
.games-list {
    max-height: 300px;
    overflow-y: auto;
}

/* Estilos profissionais para cards de jogos */
.game-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c41e3a 0%, #e74c3c 100%);
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #c41e3a;
}

.game-card.upcoming-game::before {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.game-card.previous-game::before {
    background: linear-gradient(90deg, #6c757d 0%, #495057 100%);
}

.game-card.live-game::before {
    background: linear-gradient(90deg, #dc3545 0%, #ff4757 100%);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.championship {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c41e3a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.round {
    font-size: 0.8rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.game-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.game-teams .team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.team-shield {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.team-shield:hover {
    border-color: #c41e3a;
    transform: scale(1.05);
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    line-height: 1.2;
}

.vs {
    font-size: 1.4rem;
    font-weight: 800;
    color: #c41e3a;
    margin: 0 15px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score {
    font-size: 1.6rem;
    font-weight: 900;
    color: #c41e3a;
    margin: 0 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 12px;
    min-width: 70px;
    text-align: center;
    border: 2px solid #ffc107;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.game-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.date {
    font-size: 0.9rem;
    font-weight: 700;
    color: #495057;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.time {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

.status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid;
}

.status.finalizado {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #c3e6cb;
}

.status.agendado {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border-color: #ffeaa7;
}

.status.ao-vivo {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-color: #f5c6cb;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
}

.game-venue {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.stadium {
    font-size: 0.85rem;
    font-weight: 700;
    color: #495057;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.location {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

.game-actions {
    text-align: center;
    margin-top: auto;
}

.btn-acompanhe, .btn-detalhes {
    background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(196, 30, 58, 0.3);
}

.btn-acompanhe:hover, .btn-detalhes:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.4);
    background: linear-gradient(135deg, #a91e2c 0%, #c0392b 100%);
}

.btn-detalhes {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 2px 4px rgba(108, 117, 125, 0.3);
}

.btn-detalhes:hover {
    background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.4);
}

.no-games {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
    font-size: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

/* Responsividade para carrossel */
@media (max-width: 1200px) {
    .carousel-slide {
        width: 320px;
    }
}

@media (max-width: 992px) {
    .carousel-slide {
        width: 300px;
    }
    
    .carousel-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .games-carousel-container {
        padding: 20px;
    }
    
    .carousel-slide {
        width: 280px;
    }
    
    .game-card {
        padding: 16px;
        height: 260px;
    }
    
    .carousel-header h3 {
        font-size: 1.4rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-slide {
        width: 260px;
    }
    
    .game-card {
        padding: 12px;
        height: 240px;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .vs, .score {
        font-size: 1rem;
        min-width: 35px;
        height: 35px;
    }
    
    .carousel-track {
        gap: 15px;
    }
}

/* Informações do Time Selecionado */
.selected-team-info {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-team-info h3 {
    color: #c41e3a;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

/* Cards da Seção de Futebol */
.games-card,
.classification-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.games-card h3,
.classification-card h3 {
    color: #c41e3a;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41e3a;
}

/* Lista de Jogos */
.games-list {
    max-height: 300px;
    overflow-y: auto;
}

/* Estilos profissionais para cards de jogos */
.game-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c41e3a 0%, #e74c3c 100%);
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #c41e3a;
}

.game-card.upcoming-game::before {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.game-card.previous-game::before {
    background: linear-gradient(90deg, #6c757d 0%, #495057 100%);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.championship {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c41e3a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.round {
    font-size: 0.8rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.game-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    text-align: center;
}

.game-teams .team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}

.vs {
    font-size: 1.2rem;
    font-weight: bold;
    color: #6c757d;
    margin: 0 20px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 50%;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score {
    font-size: 1.4rem;
    font-weight: 800;
    color: #c41e3a;
    margin: 0 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
    border: 2px solid #ffc107;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.game-date {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 2px;
}

.time {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.finalizado {
    background: #d4edda;
    color: #155724;
}

.status.agendado {
    background: #fff3cd;
    color: #856404;
}

.game-venue {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stadium {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 2px;
}

.location {
    font-size: 0.75rem;
    color: #6c757d;
}

.game-actions {
    text-align: center;
}

.btn-acompanhe, .btn-detalhes {
    background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(196, 30, 58, 0.3);
}

.btn-acompanhe:hover, .btn-detalhes:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.4);
    background: linear-gradient(135deg, #a91e2c 0%, #c0392b 100%);
}

.btn-detalhes {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 2px 4px rgba(108, 117, 125, 0.3);
}

.btn-detalhes:hover {
    background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.4);
}

.no-games {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
    font-size: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

/* Responsividade para cards de jogos */
@media (max-width: 768px) {
    .game-card {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .game-teams {
        flex-direction: column;
        gap: 12px;
    }
    
    .vs, .score {
        margin: 8px 0;
    }
    
    .game-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .btn-acompanhe, .btn-detalhes {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .game-card {
        padding: 12px;
    }
    
    .championship {
        font-size: 0.75rem;
    }
    
    .team-name {
        font-size: 0.9rem;
    }
    
    .vs, .score {
        font-size: 1rem;
        min-width: 35px;
        height: 35px;
    }
}

.game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.game-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.game-info {
    flex: 1;
}

.game-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.game-teams {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.game-score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #c41e3a;
    min-width: 60px;
    text-align: center;
}

/* Tabela de Classificação */
.classification-table {
    max-height: 400px;
    overflow-y: auto;
}

.classification-header {
    display: grid;
    grid-template-columns: 50px 1fr 80px 80px 80px;
    gap: 10px;
    padding: 15px;
    background: #c41e3a;
    color: white;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.classification-item {
    display: grid;
    grid-template-columns: 50px 1fr 80px 80px 80px;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #eee;
    background: white;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    align-items: center;
}

.classification-item:hover {
    background: #f8f9fa;
    transform: translateX(3px);
}

/* Zonas da tabela */
.classification-item:nth-child(-n+4) {
    background: linear-gradient(90deg, #e8f5e8 0%, #f8fff8 100%);
    border-left: 4px solid #28a745;
}

.classification-item:nth-child(-n+4):hover {
    background: linear-gradient(90deg, #d4edda 0%, #e8f5e8 100%);
}

.classification-item:nth-child(n+5):nth-child(-n+6) {
    background: linear-gradient(90deg, #e3f2fd 0%, #f8fcff 100%);
    border-left: 4px solid #007bff;
}

.classification-item:nth-child(n+5):nth-child(-n+6):hover {
    background: linear-gradient(90deg, #bbdefb 0%, #e3f2fd 100%);
}

.classification-item:nth-child(n+17) {
    background: linear-gradient(90deg, #ffebee 0%, #fff8f8 100%);
    border-left: 4px solid #dc3545;
}

.classification-item:nth-child(n+17):hover {
    background: linear-gradient(90deg, #ffcdd2 0%, #ffebee 100%);
}

.pos {
    font-weight: bold;
    color: #c41e3a;
    text-align: center;
}

.team {
    text-align: left;
    font-weight: 500;
}

.pts, .jogos, .vitorias {
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
}

/* Seção de Posts */
.section-title {
    color: #c41e3a;
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 3px solid #c41e3a;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Responsividade */
@media (max-width: 992px) {
    .teams-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .team-shield {
        min-height: 100px;
        padding: 12px;
    }
    
    .team-shield img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .football-section {
        padding: 20px;
    }
    
    .teams-container {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 12px;
    }
    
    .team-shield {
        min-height: 85px;
        padding: 10px;
    }
    
    .team-shield img {
        width: 25px;
        height: 25px;
    }
    
    .team-shield span {
        font-size: 0.8rem;
    }
    
    .games-card,
    .classification-card,
    .selected-team-info {
        margin-bottom: 20px;
        min-height: auto;
    }
    
    .classification-header,
    .classification-item {
        font-size: 0.8rem;
        padding: 10px;
        grid-template-columns: 40px 1fr 60px 60px 60px;
        gap: 8px;
    }
    
    .game-item {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .game-score {
        margin-top: 8px;
        align-self: flex-end;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .football-section {
        padding: 15px;
    }
    
    .teams-container {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 10px;
    }
    
    .team-shield {
        min-height: 75px;
        padding: 8px;
    }
    
    .team-shield img {
        width: 30px;
        height: 30px;
    }
    
    .team-shield span {
        font-size: 0.7rem;
    }
    
    .games-card h3,
    .classification-card h3,
    .selected-team-info h3 {
        font-size: 1.2rem;
    }
    
    .classification-header,
    .classification-item {
        font-size: 0.7rem;
        padding: 8px;
        grid-template-columns: 35px 1fr 50px 50px 50px;
        gap: 5px;
    }
}

/* Animações */
.teams-grid,
.games-card,
.classification-card,
.selected-team-info {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Estados especiais para times */
.team-games,
.team-position {
    padding: 20px;
    text-align: center;
    color: #c41e3a;
    font-weight: bold;
    background: #f8f9fa;
    border-radius: 6px;
}