﻿@charset "UTF-8";

/* =====================================================
   FUTEBOL
===================================================== */
.futebol-lista {
    max-width: 800px;
    margin: auto;
}

.futebol-lista ul {
    list-style: none;
    padding: 0;
}

.futebol-lista li {
    background: #111;
    border-left: 4px solid var(--green-primary);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-light);
}

.participacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.participacao-card {
    background: #111;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border-top: 4px solid var(--green-primary);
    transition: var(--transition-normal);
}

.participacao-card:hover {
    transform: translateY(-6px);
    background: #151515;
}

.participacao-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.participacao-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.participacao-card p {
    font-size: 14px;
    opacity: 0.85;
    color: var(--text-gray);
}

.participacao-lista {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    font-size: 14px;
}

.participacao-lista li {
    margin-bottom: 6px;
    opacity: 0.9;
    color: var(--text-gray);
}

.timeline {
    margin-top: 40px;
    border-left: 3px solid var(--green-primary);
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -41px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--green-primary);
    border-radius: 50%;
}

.timeline-year {
    font-weight: bold;
    color: var(--green-primary);
    font-size: 16px;
}

.timeline-item p {
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.9;
    color: var(--text-gray);
}

.hino {
    text-align: center;
}

.hino-audio {
    margin: 25px 0 35px;
}

.hino-audio audio {
    width: 100%;
    max-width: 420px;
}

.hino-letra {
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.95;
    color: var(--text-light);
}

.hino-letra p {
    margin-bottom: 22px;
}

/* =====================================================
   TABELA DE JOGOS â€“ CAROUSEL
===================================================== */

.tabela-carousel {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.tabela-track {
    display: flex;
    transition: transform 0.5s ease;
}

.jogo-card {
    background: linear-gradient(to bottom, #0b0b0b, #111);
    border-radius: 18px;
    padding: 26px 24px 28px;
    margin: 0 15px;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-top: 3px solid var(--green-primary);
}

.jogo-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.jogo-card p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    color: var(--text-gray);
}

.jogo-card .data {
    color: var(--green-primary);
    font-weight: 600;
}

.tabela-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: var(--transition-normal);
}

.tabela-arrow:hover {
    background: var(--green-primary);
    transform: translateY(-50%) scale(1.1);
}

.tabela-arrow.prev {
    left: 10px;
}

.tabela-arrow.next {
    right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .participacoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .participacao-card img {
        height: 200px;
    }

    .tabela-carousel {
        padding: 0 20px;
    }

    .jogo-card {
        min-width: 250px;
        margin: 0 10px;
        padding: 20px;
    }

    .tabela-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
