/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
}

.container{
    padding:20px;
    padding-bottom:100px;
    position: center;
}

/* ==========================
   TÍTULOS
========================== */

hr{
    border:none;
    border-top:1px solid #333;
    margin:30px 0;
}

h2{
    color:#FFD600;
    margin-bottom:20px;
}

/* ===========================
   HEADER
=========================== */

header{
    margin-bottom:25px;
}

header h2{
    font-size:28px;
    color:#FFD600;
    font-weight:700;
}

header p{
    color:#cfcfcf;
    margin-top:5px;
    font-size:16px;
}

/* ===========================
   CARDS
=========================== */

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.card{
    background:#1d1d1d;
    border-radius:18px;
    padding:20px;
    text-align:center;
    border:2px solid #FFD60020;
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
    border-color:#FFD600;
}

.card i{
    font-size:30px;
    color:#FFD600;
    margin-bottom:15px;
}

.card h3{
    font-size:16px;
    color:#ddd;
    margin-bottom:10px;
}

.card span{
    font-size:28px;
    font-weight:700;
    color:#FFD600;
}

/* ===========================
   BOTÃO NOVA ORDEM
=========================== */

.novaOrdem{
    width:100%;
    margin:25px 0;
    padding:18px;
    border:none;
    border-radius:15px;
    background:#FFD600;
    color:#000;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.novaOrdem:hover{
    background:#c5ad0f;
    transform:scale(1.02);
}

.novaOrdem i{
    margin-right:10px;
}

/* ===========================
   MENU INFERIOR
=========================== */

.bottom{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    height:70px;
    background:#1a1a1a;
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-top:2px solid #FFD600;

}

.bottom a{
    color:#888;
    text-decoration:none;
    font-size:22px;
    transition:.3s;
}

.bottom a.active{
    color:#FFD600;
}

.bottom a:hover{
    color:#FFD600;
}

/* ==========================
   FORMULÁRIO NOVA LAVAGEM
========================== */

form{
    background:#1d1d1d;
    padding:20px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.campo{
    margin-bottom:20px;
}

label{
    display:block;
    margin-bottom:8px;
    color:#FFD600;
    font-weight:600;
}

input{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:#2a2a2a;
    color:#fff;
    font-size:16px;
    outline:none;
    transition:.3s;
}

input:focus{
    border:2px solid #FFD600;
}

.card{
    background:#1f1f1f;
    padding:20px;
    border-radius:16px;
    margin-bottom:20px;
}

.card input,
.card select{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    background:#2a2a2a;
    color:white;
    border:none;
    border-radius:12px;
    font-size:16px;
}

.btnPrincipal{
    width:100%;
    background:#FFD600;
    color:#000;
    padding:18px;
    border:none;
    border-radius:14px;
    font-size:18px;
    font-weight:bold;
    margin-top:20px;
}

.resumo{
    color:#c5ad0f;
    border-radius:15px;
    padding:20px;
    justify-content:space-between;
}

/* ==========================
   PESQUISA DE HISTÓRICO
========================== */

.pesquisa{
    margin:20px 0;
}

.pesquisa input{
    width:100%;
}

.historico{
    margin-bottom:15px;
}

.topo{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.topo span{
    background:#FFD600;
    color:#000;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.acoes{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.acoes button{
    flex:1;
}

/* ===========================
   FINANCEIRO
=========================== */

.cards-financeiro{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:25px;
}

.cards-financeiro .card{
    text-align:center;
}

.cards-financeiro span{
    display:block;
    margin-top:10px;
    font-size:22px;
    font-weight:bold;
    color:#FFD600;
}

/* ===========================
   CONFIGURAÇÕES
=========================== */

.servico{
    background:#1f1f1f;
    border-left:5px solid #FFD600;
    border-radius:15px;
    padding:18px;
    margin-bottom:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.servico h3{
    color:#FFD600;
    margin-bottom:8px;
}

.servico p{
    color:#ddd;
    margin:3px 0;
}

.acoes{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.acoes button{
    flex:1;
}

#listaServicos .card{
    margin-top:15px;
}
/* ===========================
   RESPONSIVO
=========================== */

@media(min-width:768px){
    .container{
        max-width:500px;
        margin:auto;
    }

}

@media(max-width:480px){
    header h1{
        font-size:26px;
    }

    button{
        font-size:17px;
    }

}