/* ===========================
   SISTEMA ATELIÊ
   Paleta:
   Azul: #005BAC
   Amarelo: #F9C80E
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family: "Segoe UI", Arial, sans-serif;
    background:#eef3f8;
    color:#333;

}

.container{

    width:95%;
    max-width:1000px;

    margin:30px auto;

    background:#FFF;

    border-radius:15px;

    padding:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

/* =========================== */

h1{

    background:#005BAC;
    color:#FFF;

    padding:18px;

    border-radius:10px;

    margin-bottom:25px;

    text-align:center;

}

h2{

    color:#005BAC;

    margin-top:25px;

    margin-bottom:15px;

}

h3{

    color:#005BAC;

    margin-bottom:15px;

}

/* =========================== */

label{

    display:block;

    margin-bottom:5px;

    font-weight:bold;

    color:#555;

}

/* =========================== */

input,
select,
textarea{

    width:100%;

    padding:12px;

    border:2px solid #d7dce2;

    border-radius:10px;

    margin-bottom:15px;

    transition:.3s;

    font-size:15px;

    outline:none;

}

input:focus,
select:focus,
textarea:focus{

    border-color:#005BAC;

    box-shadow:0 0 8px rgba(0,91,172,.20);

}

/* =========================== */

textarea{

    resize:vertical;

    min-height:80px;

}

/* =========================== */

.peca{

    background:#fafafa;

    border-left:6px solid #F9C80E;

    border-radius:12px;

    padding:20px;

    margin-bottom:20px;

    box-shadow:0 3px 8px rgba(0,0,0,.08);

}

/* =========================== */

button{

    background:#005BAC;

    color:#FFF;

    border:none;

    padding:12px 22px;

    border-radius:10px;

    cursor:pointer;

    font-size:15px;

    transition:.3s;

    margin-right:10px;

}

button:hover{

    background:#004887;

}

/* Botão amarelo */

.btn-amarelo{

    background:#F9C80E;

    color:#333;

    font-weight:bold;

}

.btn-amarelo:hover{

    background:#e7b800;

}

/* =========================== */

.total{

    background:#005BAC;

    color:#FFF;

    padding:18px;

    border-radius:12px;

    font-size:24px;

    font-weight:bold;

    text-align:right;

    margin-top:20px;

}

/* =========================== */

table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}

table th{

    background:#005BAC;

    color:#FFF;

    padding:12px;

}

table td{

    padding:10px;

    border-bottom:1px solid #DDD;

}

table tr:nth-child(even){

    background:#f7f7f7;

}

/* =========================== */

.menu{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:30px;

}

.menu a{

    text-decoration:none;

    background:#005BAC;

    color:white;

    padding:12px 18px;

    border-radius:10px;

    transition:.3s;

}

.menu a:hover{

    background:#004887;

}

/* =========================== */

@media(max-width:700px){

.container{

padding:15px;

}

button{

width:100%;

margin-bottom:10px;

}

}