        .transp-banner {
            position: relative;
            overflow: hidden;
            padding: 170px 0 70px;
            text-align: center;
            background-image: url('../img/fundo_sdt.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .transp-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(270deg, var(--e-global-color-soft-blue) 0%, var(--e-global-color-accent) 60%);
            opacity: 10%;
            z-index: 1;
        }

        .transp-banner .container {
            position: relative;
            z-index: 2;
        }

        .transp-banner h1 {
            font-size: 42px;
            font-weight: 800;
            color: #091845;
            margin-bottom: 15px;
        }

        .transp-banner h1 span {
            color: #14a99f;
        }

        .transp-banner p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            color: #404252;
            line-height: 1.6;
        }

        .transp-section {
            padding: 80px 0;
            background: #f9fafb;
        }

        .transp-intro {
            max-width: 900px;
            margin: 0 auto 60px auto;
            text-align: center;
        }

        .transp-intro h2 {
            font-size: 32px;
            font-weight: 800;
            color: #091845;
            margin-bottom: 20px;
        }

        .transp-intro p {
            font-size: 17px;
            color: #404252;
            line-height: 1.7;
        }

        .transp-intro .transp-line {
            width: 58px;
            height: 4px;
            border-radius: 20px;
            background: #14a99f;
            margin: 0 auto 25px auto;
        }

        .transp-aviso {
            max-width: 860px;
            margin: 0 auto 60px auto;
            padding: 28px 35px;
            border-radius: 14px;
            background: linear-gradient(90deg, rgba(20, 169, 159, 0.12), rgba(20, 169, 159, 0.04));
            border-left: 5px solid #14a99f;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .transp-aviso-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 50%;
            border: 3px solid #14a99f;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #14a99f;
            font-size: 22px;
        }

        .transp-aviso h4 {
            margin: 0 0 6px;
            color: #14a99f;
            font-size: 17px;
            font-weight: 800;
        }

        .transp-aviso p {
            margin: 0;
            color: #404252;
            font-size: 15px;
            line-height: 1.5;
        }

        .transp-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .transp-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(7, 17, 31, 0.08);
            border: 1px solid rgba(9, 24, 69, 0.04);
            transition: all 0.3s ease;
        }

        .transp-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 42px rgba(7, 17, 31, 0.14);
        }

        .transp-card-icon {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            margin: 0 auto 18px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .transp-card-icon.green {
            background: rgba(20, 169, 159, 0.12);
            color: #14a99f;
        }

        .transp-card-icon.orange {
            background: rgba(255, 122, 0, 0.12);
            color: #ff7a00;
        }

        .transp-card-icon.blue {
            background: rgba(0, 111, 201, 0.12);
            color: #006fc9;
        }

        .transp-card h3 {
            font-size: 15px;
            font-weight: 700;
            color: #091845;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .transp-card .transp-valor {
            font-size: 36px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 6px;
        }

        .transp-card .transp-valor.green { color: #14a99f; }
        .transp-card .transp-valor.orange { color: #ff7a00; }
        .transp-card .transp-valor.blue { color: #006fc9; }

        .transp-card .transp-periodo {
            font-size: 12px;
            color: #999;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .transp-aguardando {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 80px;
        }

        .transp-aguardando i {
            font-size: 28px;
            color: #ccc;
            margin-bottom: 10px;
        }

        .transp-aguardando span {
            font-size: 14px;
            color: #999;
            font-weight: 600;
        }

        .transp-tabela-section {
            margin-bottom: 60px;
        }

        .transp-tabela-section h2 {
            font-size: 28px;
            font-weight: 800;
            color: #091845;
            margin-bottom: 8px;
        }

        .transp-tabela-section > p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .transp-table-wrap {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(7, 17, 31, 0.08);
        }

        .transp-table {
            width: 100%;
            border-collapse: collapse;
        }

        .transp-table thead th {
            background: #091845;
            color: #fff;
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 700;
            text-align: left;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .transp-table tbody td {
            padding: 16px 20px;
            font-size: 15px;
            color: #404252;
            border-bottom: 1px solid #f0f0f0;
        }

        .transp-table tbody tr:last-child td {
            border-bottom: none;
        }

        .transp-table tbody tr:hover {
            background: #f8fffe;
        }

        .transp-table .status-em-apuracao {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 20px;
            background: #fff3e0;
            color: #ff7a00;
            font-size: 13px;
            font-weight: 700;
        }

        .transp-table .status-fechado {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 20px;
            background:rgb(174, 216, 187);
            color:rgb(4, 46, 16);
            font-size: 13px;
            font-weight: 700;
        }

        .transp-perfil-section {
            margin-bottom: 60px;
        }

        .transp-perfil-section h2 {
            font-size: 28px;
            font-weight: 800;
            color: #091845;
            margin-bottom: 8px;
        }

        .transp-perfil-section > p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .transp-perfil-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .transp-perfil-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(7, 17, 31, 0.08);
            border: 1px solid rgba(9, 24, 69, 0.04);
        }

        .transp-perfil-card h4 {
            font-size: 17px;
            font-weight: 800;
            color: #091845;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .transp-perfil-card h4 i {
            color: #14a99f;
        }

        .transp-perfil-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .transp-perfil-item:last-child {
            border-bottom: none;
        }

        .transp-perfil-item span {
            font-size: 14px;
            color: #666;
        }

        .transp-perfil-item strong {
            font-size: 14px;
            color: #091845;
        }

        .transp-lei {
            max-width: 860px;
            margin: 0 auto;
            padding: 30px 35px;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(7, 17, 31, 0.08);
            text-align: center;
        }

        .transp-lei h4 {
            font-size: 18px;
            font-weight: 800;
            color: #091845;
            margin-bottom: 10px;
        }

        .transp-lei p {
            font-size: 15px;
            color: #666;
            margin-bottom: 18px;
            line-height: 1.6;
        }

        .transp-lei a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            background: #14a99f;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .transp-lei a:hover {
            background: #ff7a00;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .transp-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .transp-perfil-grid {
                grid-template-columns: 1fr;
            }

            .transp-banner h1 {
                font-size: 34px;
            }
        }

        @media (max-width: 767px) {
            .transp-banner {
                padding: 140px 0 50px;
            }

            .transp-banner h1 {
                font-size: 28px;
            }

            .transp-banner p {
                font-size: 16px;
            }

            .transp-section {
                padding: 50px 0;
            }

            .transp-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .transp-aviso {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 22px 20px;
            }

            .transp-table-wrap {
                overflow-x: auto;
            }

            .transp-table {
                min-width: 600px;
            }

            .transp-intro h2 {
                font-size: 26px;
            }
        }

        @media (max-width: 480px) {
            .transp-grid {
                grid-template-columns: 1fr;
            }
        }
