:root {
    --campeonato-bg: #0b1220;
    --campeonato-accent: #ff6600;
}

body {
    background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    color: #f8fafc;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.content {
    background: transparent;
}

.main {
    background: #000;
}

body.home {
    background: #000;
    color: #fff;
}

.campeonato-hero {
    position: relative;
    height: calc(100vh - 56px);
    min-height: 640px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.82) 100%),
        url("../img/photos/campeonaton.png");
    background-size: cover;
    background-position: center;
}

.campeonato-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    animation: campeonato-fade-in-up 1.5s ease;
}

.campeonato-hero-brand {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--campeonato-accent);
    display: inline-block;
    color: #fff;
    margin: 0 auto;
    width: fit-content;
}

.campeonato-hero-kicker {
    font-size: 1.05rem;
    color: var(--campeonato-accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 700;
}

.campeonato-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.92;
    margin-bottom: 18px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.campeonato-hero-title span {
    color: var(--campeonato-accent);
}

.campeonato-date-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 700;
    margin-bottom: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.campeonato-hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #ddd;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.campeonato-cta {
    display: inline-block;
    background: var(--campeonato-accent);
    color: #fff;
    text-decoration: none;
    padding: 18px 46px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.campeonato-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6);
    background: #ff7722;
    color: #fff;
}

.campeonato-hero-footer {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    color: #aaa;
    letter-spacing: 1px;
}

@keyframes campeonato-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .campeonato-hero {
        min-height: 640px;
        height: auto;
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .campeonato-cta {
        width: 100%;
        padding: 15px 20px;
    }
}

.campeonato-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    color: #f8fafc;
}

body.home .campeonato-home-followup {
    padding-top: 0;
}

body.home .campeonato-home-panel {
    background: #000;
    border: 0;
    border-radius: 0;
}

body.home .campeonato-home-panel-body {
    padding: 0;
}

.campeonato-inscricao {
    padding: 0;
}

.campeonato-inscricao-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 26px 18px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.campeonato-page-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #fff;
}

.campeonato-page-subtitle {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.campeonato-form-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
}

.campeonato-input {
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.campeonato-input:focus {
    background: rgba(17, 24, 39, 0.95);
    border-color: rgba(255, 102, 0, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.2);
    color: #fff;
}

.campeonato-form-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
}

.campeonato-footer {
    margin: 0;
    padding: 16px 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.campeonato-footer-inner {
    width: 100%;
    padding: 0 20px;
}

.campeonato-footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.campeonato-alert {
    border-radius: 10px;
}

.campeonato-status-pendente {
    color: #facc15;
    font-weight: 700;
}

.campeonato-status-aprovado {
    color: #93c5fd;
    font-weight: 700;
}

.campeonato-status-pago {
    color: #86efac;
    font-weight: 700;
}

.campeonato-status-cancelado {
    color: #fca5a5;
    font-weight: 700;
}
