/* ==========================================================================
   Página Regulamento - Template Específico
   ========================================================================== */

/* Estilos adicionais para o accordion */
.regulamento-accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.regulamento-accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.regulamento-accordion-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.regulamento-accordion-header:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.regulamento-accordion-header .badge {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: normal;
}

.regulamento-accordion-header .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.regulamento-accordion-header.active .arrow {
    transform: rotate(180deg);
}

.regulamento-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #fff;
}

.regulamento-accordion-content.show {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.accordion-inner {
    padding: 2rem;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .regulamento-accordion-header {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-inner {
        padding: 1rem;
    }
}