/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ==========================================================
   BODY
========================================================== */

body{

    font-family:'Montserrat',sans-serif;

    background:#06160a;

    color:#fff;

}

/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:95%;

    max-width:1400px;

    margin:auto;

    padding:40px 0;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    min-height:500px;

    border-radius:25px;

    overflow:hidden;

    margin-bottom:40px;

    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.80)
        ),
        url("../img/background.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.hero-overlay{

    min-height:500px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:60px;

}

.hero-content{

    max-width:900px;

}

.trofeu{

    font-size:70px;

    margin-bottom:20px;

}

.hero h1{

    font-size:60px;

    font-weight:900;

    text-transform:uppercase;

    line-height:1.1;

    margin-bottom:20px;

    text-shadow:
        0 4px 10px rgba(0,0,0,.5),
        0 0 25px rgba(255,215,0,.20);

}

.subtitulo{

    font-size:20px;

    color:#ddd;

    margin-bottom:35px;

}

.confronto{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    margin-bottom:35px;

}

.time{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:34px;

    font-weight:700;

}

.bandeira{

    font-size:48px;

}

.versus{

    font-size:48px;

}

.data-jogo{

    font-size:22px;

    color:#FFD54F;

    font-weight:600;

}

/* ==========================================================
   ESTATÍSTICAS
========================================================== */

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:40px;

}

.box{

    background:#0b2d17;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:30px;

    text-align:center;

    transition:.3s;

}

.box:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.30);

}

.box h2{

    font-size:40px;

    color:#FFD54F;

    margin-bottom:10px;

}

/* ==========================================================
   TÍTULOS
========================================================== */

h2{

    margin:30px 0 20px;

    font-size:32px;

}

/* ==========================================================
   FORMULÁRIO
========================================================== */

form{

    background:#082311;

    padding:30px;

    border-radius:20px;

    margin-bottom:40px;

}

input{

    width:100%;

    padding:15px;

    border:none;

    border-radius:10px;

    font-size:18px;

    margin-top:10px;

    margin-bottom:20px;

}

.placares{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    margin:30px 0;

}

.placares div{

    flex:1;

}

button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:#FFD54F;

    color:#222;

    font-size:22px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#ffca28;

    transform:scale(1.02);

}

/* ==========================================================
   PALPITES
========================================================== */

.card{

    background:#0b2d17;

    border-radius:18px;

    padding:20px;

    margin-bottom:15px;

    border-left:6px solid #FFD54F;

    transition:.3s;

}

.card:hover{

    transform:translateX(5px);

}

.status{

    margin-top:15px;

    font-weight:bold;

}

/* ==========================================================
   LINHAS
========================================================== */

hr{

    border:none;

    height:1px;

    background:rgba(255,255,255,.10);

    margin:40px 0;

}

/* ==========================================================
   RESPONSIVO
========================================================== */

@media(max-width:900px){

    .stats{

        grid-template-columns:repeat(2,1fr);

    }

    .hero h1{

        font-size:42px;

    }

    .confronto{

        flex-direction:column;

        gap:15px;

    }

    .placares{

        flex-direction:column;

    }

}

@media(max-width:600px){

    .stats{

        grid-template-columns:1fr;

    }

    .hero{

        min-height:auto;

    }

    .hero-overlay{

        padding:40px 20px;

    }

    .hero h1{

        font-size:34px;

    }

    .subtitulo{

        font-size:16px;

    }

    .time{

        font-size:26px;

    }

    .bandeira{

        font-size:36px;

    }

}

.icone{

    font-size:48px;

    margin-bottom:15px;

}

.box span{

    display:block;

    margin-top:10px;

    color:#cfcfcf;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

}

.box{

    background:linear-gradient(
        180deg,
        rgba(18,72,38,.95),
        rgba(8,35,17,.95)
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px;

    transition:.3s;

}

.box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 40px rgba(0,0,0,.35);

}

/* ==========================================================
   CONTADOR
========================================================== */

.contador{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.tempo{

    width:120px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    padding:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.tempo span{

    display:block;

    font-size:48px;

    font-weight:900;

    color:#FFD54F;

    line-height:1;

}

.tempo small{

    display:block;

    margin-top:10px;

    text-transform:uppercase;

    letter-spacing:2px;

    color:#ddd;

    font-size:14px;

}

.qrpix{

    width:220px;

    max-width:100%;

    margin:25px auto;

    display:block;

    background:white;

    padding:12px;

    border-radius:15px;

}

.texto-pix{

    color:#ddd;

    margin:15px 0;

    line-height:1.5;

}

.copiarPix{

    margin-top:15px;

    margin-bottom:20px;

    background:#1565C0;

    color:white;

}

.copiarPix:hover{

    background:#0D47A1;

}

.equipe{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.bandeira-real{
    width:110px;
    height:110px;
    object-fit:contain;
    filter:drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

.taca{
    width:90px;
    margin-bottom:15px;
    filter:drop-shadow(0 10px 20px rgba(255,215,0,.30));
}

.centro{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.vs{
    font-size:30px;
    font-weight:800;
    color:#FFD54F;
    letter-spacing:4px;
}