* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Wix Madefor Display', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* HEADER RASTREAMENTO */
        .header-rastreamento nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background-color: #1a202c;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 45px;
        }

        .logo span {
            font-size: 24px;
            font-weight: bold;
            color: #000;
            font-family: 'Raleway', sans-serif;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav ul li a {
            color: #fff;
            font-weight: 500;
            padding: 8px 15px;
        }

        .btn-primary {
            background-color: #2c5282;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
        }

        /* SECTION RASTREAMENTO */
        .secao-rastreamento {
            background-color: #f4f7fb;
            padding: 40px 50px 80px;
            min-height: 60vh;
        }

        .titulo-rastreamento {
            font-size: 32px;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
            margin-bottom: 5px;
        }

        .descricao-rastreamento {
            font-size: 14px;
            margin-bottom: 25px;
        }

        /* FORM */
        .formulario-rastreamento {
            max-width: 400px;
        }

        .campo-rastreamento {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .label-rastreamento {
            width: 140px;
            font-size: 14px;
            color: #000;
        }

        .textarea-rastreamento {
            width: 220px;
            height: 60px;
            resize: none;
            border: 1px solid #777;
            padding: 5px;
        }

        .input-rastreamento {
            width: 220px;
            height: 22px;
            border: 1px solid #777;
            padding: 3px 5px;
        }

        .acoes-rastreamento {
            margin-left: 140px;
            margin-top: 5px;
        }

        .botao-rastreamento,
        .botao-limpar-rastreamento {
            background: none;
            border: none;
            color: #0000ee;
            cursor: pointer;
            font-size: 13px;
            padding: 0;
            margin-right: 10px;
        }

        .botao-rastreamento:hover,
        .botao-limpar-rastreamento:hover {
            text-decoration: underline;
        }

        /* FOOTER */
        footer {
            background-color: #1a202c;
            color: white;
            padding: 60px 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-logo img {
            height: 50px;
            margin-bottom: 10px;
        }

        .footer-logo h2 {
            font-family: 'Raleway', sans-serif;
        }

        .footer-address p,
        .footer-contact p {
            margin: 6px 0;
            color: #cbd5e0;
        }

        .footer-contact a {
            color: #63b3ed;
        }

        .btn-footer {
            background-color: #2c5282;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            display: inline-block;
            font-weight: bold;
        }

        /* RESPONSIVO */
        @media (max-width: 768px) {
            .campo-rastreamento {
                flex-direction: column;
                align-items: flex-start;
            }

            .label-rastreamento {
                width: auto;
                margin-bottom: 5px;
            }

            .acoes-rastreamento {
                margin-left: 0;
            }

            nav {
                flex-direction: column;
                gap: 15px;
            }
        }