/* ARQUIVO: public/css/style_Inscricoes.css */
/* Página de Inscrições - CAAC Arena Cataratas */

/* ============================================ */
/* FUNDO DINÂMICO */
/* ============================================ */

.inscricoes-body {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)), 
                url('/public/img/fundo.jpg');
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

body.inscricoes-body.bg-street-focus {
    background-position: 15% center !important;
}

body.inscricoes-body.bg-offroad-focus {
    background-position: 85% center !important;
}

/* ============================================ */
/* CONTAINER E UTILITÁRIOS */
/* ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 69, 0, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color, #ff4500);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-tag.muted {
    background: rgba(255,255,255,0.05);
    color: #666;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.section-header h2 span {
    color: var(--primary-color, #ff4500);
}

.section-header p {
    color: #aaa;
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */

.inscricoes-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}

.inscricoes-hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid var(--primary-color, #ff4500);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color, #ff4500);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--primary-color, #ff4500), #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* ============================================ */
/* CAMPEONATOS GRID */
/* ============================================ */

.campeonatos-section {
    padding: 60px 0;
}

.campeonatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.campeonato-card {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.campeonato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.campeonato-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.campeonato-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.campeonato-card:hover .campeonato-image img {
    transform: scale(1.05);
}

.campeonato-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.campeonato-status.aberto {
    background: #28a745;
    color: #fff;
}

.campeonato-status.em-breve {
    background: #ffc107;
    color: #000;
}

.campeonato-content {
    padding: 25px;
}

.campeonato-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.campeonato-content p {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.campeonato-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.campeonato-info span {
    font-size: 0.7rem;
    color: #888;
}

.campeonato-info i {
    margin-right: 5px;
    color: var(--primary-color, #ff4500);
}

.campeonato-preco {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.campeonato-preco span {
    font-size: 0.8rem;
    color: #888;
}

.campeonato-preco strong {
    font-size: 1.4rem;
    color: #fff;
}

.btn-inscrever {
    width: 100%;
    padding: 12px;
    background: var(--primary-color, #ff4500);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-inscrever:hover {
    background: #e03e00;
}

.btn-inscrever.disabled {
    background: #444;
    cursor: not-allowed;
}

/* ============================================ */
/* MEUS CAMPEONATOS */
/* ============================================ */

.meus-campeonatos {
    padding: 60px 0;
    background: rgba(0,0,0,0.3);
}

.empty-inscricoes {
    text-align: center;
    padding: 60px 20px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
}

.empty-inscricoes i {
    font-size: 4rem;
    color: #444;
    margin-bottom: 20px;
}

.empty-inscricoes h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.empty-inscricoes p {
    color: #888;
    margin-bottom: 25px;
}

.btn-explorar {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color, #ff4500);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

/* ============================================ */
/* COMO FUNCIONA (STEPS) */
/* ============================================ */

.como-funciona {
    padding: 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color, #ff4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color, #ff4500);
    margin-bottom: 15px;
}

.step-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-item p {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.5;
}

/* ============================================ */
/* REGULAMENTO GERAL */
/* ============================================ */

.regulamento-geral {
    padding: 60px 0 80px;
}

.regulamento-card {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-radius: 24px;
    border: 1px solid rgba(255,69,0,0.3);
}

.regulamento-icon i {
    font-size: 3rem;
    color: var(--primary-color, #ff4500);
    margin-bottom: 20px;
}

.regulamento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.regulamento-card p {
    color: #aaa;
    margin-bottom: 25px;
}

.btn-regulamento {
    background: transparent;
    border: 1px solid var(--primary-color, #ff4500);
    padding: 12px 30px;
    border-radius: 40px;
    color: var(--primary-color, #ff4500);
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-regulamento:hover {
    background: var(--primary-color, #ff4500);
    color: #fff;
}

/* ============================================ */
/* RESPONSIVO */
/* ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .campeonatos-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .campeonato-info {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .campeonato-content {
        padding: 18px;
    }
    
    .campeonato-content h3 {
        font-size: 1.1rem;
    }
}