* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    background: #e1e1e1;
    color: #5f5f5f;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    color: #777BD6;
    font-size: 35px;
}

header {
    background: #ebebeb;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
}

header img {
    width: 100%;
    max-width: 350px;
    margin: 20px 0;
}

.situacao-pedido {
    margin-top: 80px;
    text-align: center;
}

.container {
    padding: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.card h2, .card h3 {
    text-align: center;
}

.card h2 {
    margin-top: 0;
    margin-bottom: 8px;
}

.card h3 {
    margin: 0 0 25px 0;
    font-weight: 500;
}

#previsao {
    text-align: center;
    font-size: 20px;
    color: #5f5f5f;
    margin-bottom: 30px;
}

.status-step {
    flex: 1;
    text-align: center;
    position: relative;
    color: #999;
}

.status-step.ativo {
    color: #4668DC;
}

.status-step img {
    width: 50px;
    margin-bottom: 8px;
    padding: 6px;
    background: #fff;
    position: relative;
    z-index: 3;
}

.status-step.ativo img {
    filter: none;
}

.status-step.inativo img {
    filter: grayscale(100%);
}

.status-local,
.status-data,
.status-hora {
    color: inherit;
}

.status-step.inativo .status-local,
.status-step.inativo .status-data {
    visibility: hidden;
}

.status-timeline {
    display: flex;
    align-items: flex-start;
}

.status-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: -25%;
    width: 50%;
    height: 4px;
    background: #b5b5b5;
    border-radius: 50px;
    z-index: 1;
}

.status-step.ativo:not(:last-child)::after {
    background: #777BD6;
}

.status-titulo {
    margin-top: -10px;
    text-align: center;
    font-weight: 500;
}

.btn-voltar {
    display: block;
    width: 250px;
    margin: 30px auto;
    padding: 20px 0;
    background: #4668DC;
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.1s ease;
}

.btn-voltar:hover {
    background: #3b57a1;
}

.btn-voltar:active {
    transform: scale(0.98);
}

.btn-logout {
    display: block;
    width: 250px;
    margin: 15px auto 40px auto;
    padding: 20px 0;
    background: #777BD6;
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.1s ease;
}

.btn-logout:hover {
    background: #6367b8;
}

.btn-logout:active {
    transform: scale(0.98);
}

footer {
    background: #777BD6;
    padding: 30px;
    text-align: center;
    color: #fff;
    margin-top: auto;
}

.container-1 {
    flex: 1;
    padding-bottom: 40px;
}

.container-1 h1 {
    margin-top: 80px;
    text-align: center;
}

.container-1 p {
    text-align: center;
    margin: 10px 15px;
    color: #5f5f5f;
    font-size: 23px;
    font-weight: 400;
}

/* FORM */
.form-consulta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.form-consulta input {
    padding: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.form-consulta input:focus {
    border-color: #4668DC;
    outline: none;
}

.form-consulta label {
    font-size: 20px;
    color: #5f5f5f;
    font-weight: 500;
}

.form-consulta button {
    display: block;
    width: 250px;
    margin: 30px auto;
    padding: 20px 0;
    background: #4668DC;
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.1s ease;
}

.form-consulta button:active {
    transform: scale(0.98);
}

.form-consulta button:hover {
    background: #3b57a1;
}

/* ERRO */
.erro-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 20px 20px;
    text-align: center;
}

.erro-page h1 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.erro-subtitulo {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #5f5f5f;
    max-width: 360px;
    font-weight: 500;
}

.erro-descricao {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 20px;
    color: #5f5f5f;
    max-width: 380px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 120px;
    text-decoration: none;
    color: #5f5f5f;
}

.whatsapp-link img {
    width: 90px;
}

.whatsapp-link span {
    font-size: 22px;
    font-weight: 500;
    margin-left: -10px;
    text-align: start;
}

/* UPLOAD */
.upload-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
    margin: 30px auto 30px auto;
}

.drop-area {
    width: 100%;
    min-height: 220px;
    border: 2px dashed #777BD6;
    border-radius: 12px;
    background: #f7f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    padding: 25px;
}

.drop-area:hover,
.drop-area:focus {
    background: #eef1ff;
    border-color: #4668DC;
    outline: none;
}

.drop-area.dragover {
    background: #e7edff;
    border-color: #4668DC;
    transform: scale(1.01);
}

.drop-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drop-title {
    font-size: 24px;
    font-weight: 500;
    color: #5f5f5f;
}

.drop-subtitle {
    font-size: 18px;
    color: #777BD6;
    font-weight: 500;
}

.drop-file-name {
    font-size: 16px;
    color: #5f5f5f;
    word-break: break-word;
}

#btn-enviar {
    display: block;
    width: 250px;
    margin: 25px auto 0 auto;
    padding: 20px 0;
    background: #4668DC;
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    outline: none;
    cursor: pointer;
}

#btn-enviar:hover {
    background: #3b57a1;
}

/* RESPONSIVO - SÓ O ESSENCIAL */
@media (max-width: 768px) {
    #btn-enviar,
    .btn-voltar,
    .btn-logout {
        width: 100%;
        max-width: 300px;
    }

    .whatsapp-link {
        margin-top: 80px;
    }
}