* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.header {
    background-color: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 50px;
    /* Ajuste a altura conforme necessário */
}

.rastreio-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    margin-bottom: 30px;
}

.rastreio-section h1 {
    font-size: 22px;
    color: #004ab5;
    margin-bottom: 10px;
}

.rastreio-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.rastreio-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.rastreio-form input[type="text"] {
    padding: 15px;
    width: 80%;
    max-width: 350px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.rastreio-form button {
    width: 80%;
    max-width: 350px;
    padding: 15px;
    font-size: 16px;
    background-color: #0679cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.rastreio-form button:hover {
    background-color: #e88a00;
}

.info-section {
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
}

.info-box {
    margin-bottom: 30px;
}

.info-box h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.info-box img {
    max-width: 100%;
    height: auto;
}

.footer {
    background-color: #0679cc;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin: 5px 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}



