:root{

    --azul:#1E335A;
    --vermelho:#8B1730;
    --dourado:#D5AC5C;
    --cinza:#F5F6FA;
    --branco:#FFFFFF;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:Poppins,sans-serif;

    background:linear-gradient(135deg,#f4f4f4,#ececec);

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.container{

    width:550px;

    background:white;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    text-align:center;

}

.logo{

    width:320px;

    margin-bottom:25px;

}

h1{

    color:var(--azul);

    font-size:30px;

    margin-bottom:15px;

}

.descricao{

    color:#666;

    margin-bottom:35px;

    line-height:1.6;

}

.arquivo{

    display:block;

    border:3px dashed var(--dourado);

    padding:35px;

    border-radius:15px;

    cursor:pointer;

    transition:.3s;

    color:var(--azul);

    font-weight:600;

}

.arquivo:hover{

    background:#faf7f0;

}

input[type=file]{

    display:none;

}

button{

    margin-top:30px;

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:linear-gradient(90deg,var(--vermelho),var(--azul));

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}


.modelo{

    margin-top:35px;

    padding:25px;

    border-radius:15px;

    background:#F8F8F8;

    border-left:6px solid var(--dourado);

}

.modelo h3{

    color:var(--azul);

    margin-bottom:10px;

}

.modelo p{

    color:#666;

    line-height:1.6;

    margin-bottom:20px;

}

.btn-download{

    display:inline-block;

    text-decoration:none;

    background:var(--azul);

    color:white;

    padding:12px 25px;

    border-radius:10px;

    transition:.3s;

}

.btn-download:hover{

    background:var(--vermelho);

}


.arquivo.selecionado{

    background:#eef7ee;

    border-color:#28a745;

    color:#1E335A;

}

.arquivo.selecionado span{

    color:#28a745;

    font-weight:600;

}

.upload-area {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid #ddd;
}

.upload-area h3 {
    color: #1E335A;
}

.ajuda {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9em;
    color: #555;
}
.btn-ver-equipes {
    display: inline-block;
    background: #1E335A;
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: 0.2s;
}
.btn-ver-equipes:hover {
    background: #0f1f38;
    transform: scale(1.02);
}