/**
LANDING PAGE SPORT 
DEV: lUCIANO ZANNET
SITE: DESIGNMP.NET 
DATA: 24/04/2026
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--fundo);
    color: var(--texto);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 230, 118, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
}

/* Botão hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsivo */
@media (max-width: 1200px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed !important;
        top: 64px !important;
        left: -100% !important;
        right: auto !important;
        bottom: auto !important;
        width: 280px !important;
        height: calc(100vh - 64px) !important;
        background: #0a0a0f !important;
        flex-direction: column !important;
        padding: 2rem !important;
        transition: 0.3s ease-in-out !important;
        z-index: 9999 !important;
        display: flex !important;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem;
    }
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--cor-h1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primeira);
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--segunda);
    animation: pulse 1.2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--texto);
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--primeira);
}

.btn-nav {
    background: var(--botao);
    color: #000 !important;
    padding: 0.45rem 1.2rem;
    border-radius: 4px;
    font-weight: 700 !important;
}

.btn-nav:hover {
    background: #00ff88;
    color: #000 !important;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 61, 0, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0f 0%, #0d0d1a 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(0, 230, 118, .6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 118, .6) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--primeira);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--segunda);
    animation: pulse 1s infinite;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    color: var(--cor-h1);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: var(--primeira);
    font-style: normal;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(232, 232, 232, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: var(--botao);
    color: #000;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform .2s, box-shadow .2s;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.35);
}

.btn-secondary-cta {
    background: transparent;
    color: var(--texto);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.btn-secondary-cta:hover {
    border-color: var(--primeira);
    color: var(--primeira);
}

/* ── LIVE CARD (hero right) ── */
.hero-live-card {
    background-image: url('/assets/images/placar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFF !important;
}

.hero-live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primeira), var(--segunda));
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.game-live-badge {
    background: var(--segunda);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    text-transform: uppercase;
    animation: liveFlash 2s infinite;
}

@keyframes liveFlash {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .6
    }
}

.game-time {
    font-size: 0.8rem;
    color: rgba(241, 241, 241, 1);
    font-weight: 300;
}

.scoreboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.team {
    text-align: center;
    flex: 1;
}

.team-flag {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 0.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.team-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.score-box {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--cor-h1);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.score-sep {
    color: #FFF;
    font-size: 2rem;
}

.progress-bar-wrap {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #FFF;
    margin-bottom: 0.4rem;
}

.bar-outer {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.bar-inner {
    height: 100%;
    background: linear-gradient(90deg, var(--primeira), #00bfff);
    border-radius: 999px;
    animation: progressAnim 3s ease-in-out infinite;
}

@keyframes progressAnim {
    0% {
        width: 38%
    }

    50% {
        width: 42%
    }

    100% {
        width: 38%
    }
}

.cotas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.cota-slot {
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .3s;
}

.cota-taken {
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: #FFF;
}

.cota-free {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(232, 232, 232, 1);
}

.cotas-label {
    font-size: 0.72rem;
    color: rgba(232, 232, 232, 1);
    text-align: center;
}

.cotas-label strong {
    color: #FFF;
}

/* ── STATS ROW ── */
.stats-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.stat-item {
    background: var(--box);
    padding: 1.5rem 1rem;
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--primeira);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 232, 232, 0.5);
    margin-top: 0.3rem;
}

/* ── COMO FUNCIONA ── */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primeira);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cor-h1);
    line-height: 1;
    margin-bottom: 1rem;
}

.section-sub {
    color: rgba(232, 232, 232, 0.6);
    font-weight: 300;
    font-size: 1.05rem;
    max-width: 500px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.step-card {
    background: var(--box);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
}

.step-card:hover {
    border-color: rgba(0, 230, 118, 0.3);
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(0, 230, 118, 0.08);
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(0, 230, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cor-h1);
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.9rem;
    color: rgba(232, 232, 232, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

/* ── JOGOS AO VIVO ── */
.games-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.games-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.game-card {
    background: var(--box);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.game-card-top {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.league-name {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 232, 232, 0.4);
}

.game-card-score {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gc-team {
    text-align: center;
}

.gc-flag {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.4rem;
}

.gc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.gc-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--cor-h1);
}

.gc-sep {
    color: rgba(255, 255, 255, 0.2);
    padding: 0 0.3rem;
}

.game-card-bottom {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cotas-mini {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.cota-mini {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    font-size: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cota-mini.taken {
    background: rgba(0, 230, 118, 0.2);
    border: 1px solid rgba(0, 230, 118, 0.4);
    color: var(--primeira);
}

.cota-mini.free {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(232, 232, 232, 0.2);
}

.game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cotas-info {
    font-size: 0.72rem;
    color: rgba(232, 232, 232, 0.5);
}

.cotas-info strong {
    color: var(--primeira);
}

.btn-comprar {
    background: var(--botao);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-comprar:hover {
    opacity: 0.85;
}

/* ── TRANSMISSÃO ── */
.broadcast-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.broadcast-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.broadcast-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #050508;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.broadcast-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a10, #0f1520);
}

.field-svg {
    width: 80%;
    max-width: 320px;
    opacity: 0.8;
}

.broadcast-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1.5rem 1.2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bo-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
}

.bo-meta {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.audio-bar {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 24px;
}

.audio-bar span {
    width: 3px;
    background: var(--primeira);
    border-radius: 2px;
    animation: audioWave 0.6s ease-in-out infinite alternate;
}

.audio-bar span:nth-child(2) {
    animation-delay: .1s;
}

.audio-bar span:nth-child(3) {
    animation-delay: .2s;
}

.audio-bar span:nth-child(4) {
    animation-delay: .15s;
}

.audio-bar span:nth-child(5) {
    animation-delay: .05s;
}

@keyframes audioWave {
    from {
        height: 4px;
    }

    to {
        height: 20px;
    }
}

.broadcast-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--cor-h1);
    line-height: 1;
    margin-bottom: 1rem;
}

.broadcast-features {
    list-style: none;
    margin: 1.5rem 0;
}

.broadcast-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: rgba(232, 232, 232, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bf-icon {
    color: var(--primeira);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── REGRAS ── */
.rules-section {
    background: rgba(255, 61, 0, 0.04);
    border-top: 1px solid rgba(255, 61, 0, 0.1);
}

.rules-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.rule-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    background: var(--box);
}

.rule-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--segunda);
    margin-bottom: 0.5rem;
}

.rule-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cor-h1);
    margin-bottom: 0.5rem;
}

.rule-card p {
    font-size: 0.88rem;
    color: rgba(232, 232, 232, 0.6);
    line-height: 1.6;
}

/* ── CTA FINAL ── */
.cta-section {
    text-align: center;
    padding: 7rem 2rem;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 230, 118, 0.08) 0%, transparent 70%),
        var(--fundo);
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--cor-h1);
    line-height: 1;
    margin-bottom: 1rem;
}

.cta-section h2 em {
    color: var(--primeira);
    font-style: normal;
}

.cta-section p {
    color: rgba(232, 232, 232, 0.6);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
footer {
    background: var(--menu);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(232, 232, 232, 0.3);
    letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .hero {
        margin-top: 50px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .broadcast-wrap {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}