* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
    border-bottom: 3px solid #ff6600;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    font-weight: bold;
    font-size: 1.5rem;
    white-space: nowrap;
}

.galo-icon {
    font-size: 2rem;
    color: transparent;
    -webkit-text-stroke: 2px #ff6600;
    text-stroke: 2px #ff6600;
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
    transition: all 0.3s ease;
}

.galo-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.8));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-toggle:hover {
    color: #ff6600;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid #ff6600;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid transparent;
}

.nav-menu a:hover {
    color: #000;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    border-color: #ff8533;
}

@media (min-width: 768px) {
    .nav-menu a {
        border-radius: 25px;
        padding: 0.5rem 1rem;
    }
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

@media (min-width: 768px) {
    main {
        padding: 2rem;
    }
}

/* Logo */
.logo {
    height: 50px;
    margin-right: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
    background: transparent;
    border-radius: 50%;
    padding: 5px;
}

/* Banners */
.banners {
    margin-bottom: 2rem;
}

.banners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.banner-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.banner-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.banner-item:hover img {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.banner-item:hover .banner-overlay {
    transform: translateY(0);
}

.banner-overlay h3 {
    margin: 0 0 0.5rem 0;
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.banner-overlay p {
    margin: 0;
    font-size: 0.9rem;
}

.banner-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.2), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.banner-item:hover::after {
    opacity: 1;
}

/* Banner principal */
.banner-principal {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 50%, #cc4d00 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-principal::before {
    content: '⚽';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

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

.banner-principal h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 900;
    letter-spacing: 2px;
}

.banner-principal p {
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

/* Cards */
.cards-navegacao {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .cards-navegacao {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .cards-navegacao {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

.card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.2), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #ff6600;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.card h3 {
    color: #ff6600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.card a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

/* Classificação melhorada */
.classificacao {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.classificacao h2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ff6600;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 2rem 0 1rem 0;
    cursor: pointer;
    user-select: none;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
    border: 2px solid #ff6600;
    transition: all 0.3s;
    font-size: 1.3rem;
}

.classificacao h2:hover {
    background: linear-gradient(135deg, #ff6600, #e55a00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.tabela-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    overflow-y: auto;
}

.tabela-classificacao {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    overflow: hidden;
    font-size: 0.9rem;
}

.tabela-classificacao th {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0.5rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.tabela-classificacao td {
    padding: 0.5rem;
    text-align: center;
    border-bottom: 1px solid #444;
    color: #fff;
    font-size: 0.85rem;
}

.tabela-classificacao tr:hover {
    background: rgba(255, 102, 0, 0.1);
}

.tabela-classificacao tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.pos-green {
    background: linear-gradient(45deg, #27ae60, #2ecc71) !important;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.3);
    border-radius: 5px;
}

.pos-yellow {
    background: linear-gradient(45deg, #f39c12, #f1c40f) !important;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
    border-radius: 5px;
}

.pos-artilheiro {
    background: linear-gradient(45deg, #e74c3c, #c0392b) !important;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
    border-radius: 5px;
}

.legenda {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px solid #ff6600;
}

.legenda h3 {
    color: #ff6600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.legenda ul {
    color: #ccc;
    margin-left: 1.5rem;
}

.legenda li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.top-players {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.player-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #ff6600;
    text-align: center;
    transition: all 0.3s;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.2);
}

.player-card h4 {
    color: #ff6600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.player-card .stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.player-card .stat {
    text-align: center;
}

.player-card .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6600;
}

.player-card .stat-label {
    font-size: 0.8rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .tabela-classificacao {
        font-size: 0.7rem;
        min-width: 100%;
    }
    
    .tabela-classificacao th,
    .tabela-classificacao td {
        padding: 0.3rem 0.1rem;
        font-size: 0.7rem;
    }
    
    .tabela-classificacao th {
        font-size: 0.65rem;
    }
    
    .classificacao h2 {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .tabela-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-height: 400px;
    }
    
    .classificacao {
        padding: 1rem;
    }
    
    .top-players {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .player-card {
        padding: 1rem;
    }
    
    .player-card .stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .player-card .stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem;
        background: rgba(255,255,255,0.1);
        border-radius: 5px;
    }
    
    .player-card .stat-value {
        font-size: 1.2rem;
    }
}

h2 {
    cursor: pointer;
    user-select: none;
    margin: 2rem 0 1rem 0;
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

h2:hover {
    color: #ff8533;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

/* Torneios melhorados */
.torneios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 50%, #cc4d00 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '🏆';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.page-header h1 {
    margin-bottom: 0.5rem;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.torneios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.torneio-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.torneio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.5s;
}

.torneio-card:hover::before {
    left: 100%;
}

.torneio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.torneio-card.laranja:hover {
    border-color: #ff6600;
}

.torneio-card.verde:hover {
    border-color: #27ae60;
}

.torneio-card.azul:hover {
    border-color: #3498db;
}

.torneio-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
}

.torneio-content h3 {
    color: #ff6600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
    text-align: center;
}

.torneio-info {
    margin-bottom: 2rem;
}

.torneio-info p {
    margin-bottom: 0.75rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.torneio-info .label {
    font-weight: bold;
    min-width: 80px;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.em-andamento {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.3);
}

.status.inscrições-abertas {
    background: linear-gradient(45deg, #f39c12, #f1c40f);
    color: white;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

.status.planejado {
    background: linear-gradient(45deg, #3498db, #5dade2);
    color: white;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.torneio-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
    min-width: 100px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6600, #ff8533);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

.btn-secondary {
    background: linear-gradient(45deg, #6c757d, #868e96);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.5);
}

/* Galeria melhorada */
.galeria {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.album-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.album-card:hover {
    transform: translateY(-10px);
    border-color: #ff6600;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.album-capa {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.album-capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.album-card:hover .album-capa img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(255, 102, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.fotos-count {
    text-align: center;
    color: white;
}

.fotos-count .numero {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fotos-count .label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    color: #ff6600;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.album-info .periodo {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn-album {
    background: linear-gradient(45deg, #ff6600, #ff8533);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-album:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

/* Regras melhoradas */
.regras {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.regras-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.regra-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.regra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.5s;
}

.regra-card:hover::before {
    left: 100%;
}

.regra-card:hover {
    transform: translateY(-10px);
    border-color: #ff6600;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.regra-card.destaque {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 50%, #cc4d00 100%);
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
}

.regra-card h3 {
    color: #ff6600;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
    text-align: center;
}

.regra-card.destaque h3 {
    color: white;
}

.pontos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.ponto-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s;
}

.ponto-item.positivo {
    border-color: #27ae60 !important;
    background: #27ae60 !important;
    color: white !important;
}

.ponto-item.negativo {
    border-color: #e74c3c !important;
    background: #e74c3c !important;
    color: white !important;
}

.ponto-item.positivo .valor {
    color: white !important;
}

.ponto-item.negativo .valor {
    color: white !important;
}

.ponto-item.positivo .descricao {
    color: white !important;
}

.ponto-item.negativo .descricao {
    color: white !important;
}

.ponto-item .descricao {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.2;
}

.criterio {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ff6600;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    color: white;
}

.criterio .numero {
    background: white;
    color: #ff6600;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.criterio .texto {
    color: white;
    flex: 1;
    font-weight: 500;
}

.regulamento-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.regra-item {
    background: #444;
    border-radius: 10px;
    padding: 1rem;
    border-left: 4px solid #ff6600;
    margin-bottom: 0.5rem;
}

.regra-titulo {
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.regra-texto {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.zonas-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zona {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
}

.zona.verde {
    background: #27ae60;
    color: white;
    font-weight: bold;
}

.zona.amarela {
    background: #f39c12;
    color: white;
    font-weight: bold;
}

.zona.azul {
    background: #3498db;
    color: white;
    font-weight: bold;
}

.zona-posicao {
    font-size: 1.1rem;
}

.zona-nome {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .regras-container {
        grid-template-columns: 1fr;
    }
    
    .pontos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zona {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .torneios-grid {
        grid-template-columns: 1fr;
    }
    
    .torneios {
        padding: 1rem;
    }
    
    .page-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .torneio-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .torneio-icon {
        font-size: 3rem;
    }
    
    .torneio-content h3 {
        font-size: 1.3rem;
    }
    
    .torneio-info p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .torneio-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .status {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .torneios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Formulário */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ff6600;
    text-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #444;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn:hover {
    background: linear-gradient(45deg, #e55a00, #cc4d00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid;
}

.alert.success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.1));
    color: #27ae60;
    border-left-color: #27ae60;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    border-top: 3px solid #ff6600;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright {
    margin: 0;
    font-weight: bold;
    color: white;
}

.footer-dev {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.dev-link {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.dev-link:hover {
    color: #ff8533;
    text-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 5px;
}

.footer-links a:hover {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Diretoria */
.diretores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.diretor-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.diretor-card:hover {
    border-color: #ff6600;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
}

.diretor-foto img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6600;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.diretor-info h3 {
    margin: 0 0 0.5rem 0;
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.diretor-info h4 {
    margin: 0;
    color: #ccc;
    font-weight: normal;
}

.whatsapp-link {
    display: inline-block;
    margin: 0.5rem 0 0 0;
    color: #25d366;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-link:hover {
    color: #128c7e;
    background: rgba(37, 211, 102, 0.2);
    transform: scale(1.05);
}

.contato-rapido {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 50%, #cc4d00 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contato-rapido::before {
    content: '📞';
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.contato-rapido h3 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.presidente-contato {
    display: flex;
    justify-content: center;
}

.presidente-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.presidente-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.presidente-info h4 {
    margin: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.presidente-info p {
    margin: 0.25rem 0;
    opacity: 0.9;
}

.btn-telefone {
    display: inline-block;
    background: white;
    color: #ff6600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-telefone:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .diretor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .diretores-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .cards-navegacao {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .diretores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tá na Rede - Instagram Feed */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 50%, #cc4d00 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '📱';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.page-header h1 {
    margin-bottom: 0.5rem;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.instagram-feed {
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #ff6600;
}

.instagram-header h2 {
    color: #ff6600;
    margin: 0;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.btn-instagram:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.5);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.post-card:hover::before {
    left: 100%;
}

.post-card:hover {
    transform: translateY(-10px);
    border-color: #ff6600;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.post-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.post-date {
    color: #999;
}

.post-link {
    color: #ff6600;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: color 0.3s;
}

.post-link:hover {
    color: #ff8533;
}

.instagram-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #ff6600;
}

.instagram-info h3 {
    color: #ff6600;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.redes-sociais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.rede-social {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rede-social:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.rede-social.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 15px 35px rgba(228, 64, 95, 0.3);
}

.rede-social.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.3);
}

.rede-social.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 15px 35px rgba(29, 161, 242, 0.3);
}

.rede-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.rede-nome {
    color: #ff6600;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

.rede-handle {
    color: #ccc;
    font-size: 0.9rem;
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #ff6600;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Patrocinadores */
.patrocinadores-destaque {
    margin-bottom: 3rem;
}

.patrocinadores-destaque h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff6600;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.patrocinadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.patrocinador {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    height: 120px;
}

.patrocinador:hover {
    transform: translateY(-10px);
    border-color: #ff6600;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.patrocinador img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: all 0.3s;
}

.patrocinador:hover img {
    transform: scale(1.05);
}

/* Patrocinadores página específica */
.patrocinadores {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.patrocinadores h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6600;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.patrocinadores-principais,
.patrocinadores-apoiadores {
    margin-bottom: 3rem;
}

.patrocinadores h3 {
    color: #ff6600;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.patrocinadores-grid.principais {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.patrocinadores-grid.apoiadores {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .patrocinadores-grid.principais {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .patrocinadores-grid.apoiadores {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .patrocinadores-grid.principais {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .patrocinadores-grid.apoiadores {
        grid-template-columns: repeat(3, 1fr);
    }
}

.patrocinador-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.patrocinador-card:hover {
    transform: translateY(-10px);
    border-color: #ff6600;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.patrocinador-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.patrocinador-card:hover img {
    filter: brightness(1) drop-shadow(0 0 15px rgba(255, 102, 0, 0.3));
    transform: scale(1.1);
}

.patrocinador-card h4,
.patrocinador-card h5 {
    color: #ff6600;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

.seja-patrocinador {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 50%, #cc4d00 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.3);
}

.seja-patrocinador h3 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.seja-patrocinador p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: white;
    color: #ff6600;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
/* Banner Slider */
.banner-slider {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ff6600;
}

@media (max-width: 768px) {
    .slider-container {
        height: 250px;
    }
    
    .slider-nav button {
        padding: 0.5rem;
        font-size: 1rem;
    }
}
.fotos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.foto-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.foto-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.foto-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.foto-item:hover img {
    transform: scale(1.1);
}

.foto-titulo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-content {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.modal-info h3 {
    color: #ff6600;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .fotos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .foto-item img {
        height: 150px;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
    }
}

/* Instagram Home */
.instagram-home {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 1rem;
}

.instagram-home .instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #ff6600;
}

.instagram-home .instagram-header h2 {
    color: #ff6600;
    margin: 0;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.posts-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.post-card-home {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.post-card-home:hover {
    transform: translateY(-5px);
    border-color: #ff6600;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.2);
}

.post-card-home img,
.post-card-home video {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.post-content-home {
    padding: 0.75rem;
}

.post-content-home p {
    color: #ccc;
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 0.85rem;
}

.post-content-home small {
    color: #999;
    font-size: 0.8rem;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    border: 2px solid #444;
}

@media (max-width: 768px) {
    .posts-grid-home {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-home .instagram-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .instagram-feed {
        padding: 0 1rem;
    }
    
    .page-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .instagram-header {
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .instagram-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-instagram {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .post-card {
        margin-bottom: 1rem;
    }
    
    .post-image img {
        height: 200px;
    }
    
    .post-content {
        padding: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .instagram-info {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
    
    .redes-sociais {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rede-social {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-home .instagram-header h2 {
        font-size: 1.5rem;
    }
}