  /* Estilos da barra de rolagem */
        body::-webkit-scrollbar {
            background-color: rgba(0, 0, 0, 0.075);
        }
        
        /* Firefox */
        body {
            scrollbar-color: rgba(207, 207, 207, 0.101) transparent;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body, html {
            height: 100%;
            width: 100%;
            font-family: 'Roboto', sans-serif;
            background: #f5f5f54b;
        }
        
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        main {
            flex: 1 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        h5 {
            color: rgb(127, 255, 212);
        }
        
        #index-banner {
            width: 100%;
            max-width: 100%;
            margin: 0;
            margin-top: 0;
            margin-left: 0;
            margin-right: 0;
            background-color: rgba(15, 35, 32, 0.646);
            padding: 100px;
        }
        

        /* Chrome, Safari e Opera */
        ::-webkit-scrollbar {
            width: 8px;
            background-color: rgba(0, 0, 0, 0.063);
        }

        /* Firefox */
        ::-moz-scrollbar {
            background-color: rgba(0, 0, 0, 0.2);
        }
        
        #iframe::-webkit-scrollbar {
            width: 1px;
            background-color: rgba(0, 0, 0, 0.063);
        }

        #iframe::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0);
        }
        
        #iframe {
            border: none; 
            width: 100%; 
            height: 660px;
            scroll-behavior: auto;
        }




        #copy {
            color: rgba(81, 192, 159, 0.515);
        }
        
        /* Estilos da seção de consulta */
        #consulta {
            width: 100%;
            max-width: 800px;            
            padding: 2.5rem;
            background: rgba(39, 38, 38, 0.596);
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .header {
            margin-bottom: 2rem;
        }
        
        #cep-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.8rem;
            width: 100%;
        }
        
        .input-field {
            width: 100%;
            max-width: 450px;
            margin-top: 1.5rem;
        }
        
        .input-field label {
            left: 0;
            text-align: center;
            width: 100%;
            font-size: 1.1rem;
            color: #26a69a;
        }
        
        .input-field input {
            text-align: center;
            font-size: 1.3rem;
            padding: 12px;
            height: auto;
            border-bottom: 2px solid #26a69a;
        }
         /* Estilos para a barra de carregamento centralizada */
        .loader-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 60vh;
            text-align: center;
        }
        
        .loader-container {
            width: 100%;
            max-width: 400px;
            background: rgba(33, 33, 33, 0.9);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        
        .loader-logo {
            max-width: 180px;
            margin-bottom: 25px;
        }
        
        .progress-container {
            width: 100%;
            height: 12px;
            background: #37474f;
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }
        
        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #4caf50, #2e7d32, #4caf50);
            background-size: 200% 100%;
            animation: progress 2s linear infinite, fill 2s ease-in forwards;
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.7);
            border-radius: 10px;
        }
        
        @keyframes progress {
            0% { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }
        
        @keyframes fill {
            0% { width: 0%; }
            100% { width: 100%; }
        }
        
        .loader-message {
            color: white;
            font-size: 1.3rem;
            margin-top: 15px;
            font-weight: 500;
        }
        
        .loader-submessage {
            color: #bdbdbd;
            font-size: 1rem;
            margin-top: 10px;
        }
        
        .loader-countdown {
            color: #4caf50;
            font-size: 1.1rem;
            margin-top: 15px;
            font-weight: bold;
        }
        
        /* Ajustes para dispositivos móveis */
        @media (max-width: 600px) {
            .loader-container {
                width: 90%;
                padding: 20px;
            }
            
            .loader-logo {
                max-width: 140px;
            }
            
            .loader-message {
                font-size: 1.1rem;
            }
        }
        
        #res {
            margin: 2rem 0;
            text-align: center;
            line-height: 1.6;
        }
        
        /* Ajustes para mobile - OCUPANDO MÁXIMO DA TELA */
        @media only screen and (max-width: 600px) {
            main {
                padding: 0;
                align-items: stretch;
            }
            
            #consulta {
                width: 100%;
                max-width: none;
                padding: 2.5rem 1.5rem;
                margin: 0;
                border-radius: 0;
                box-shadow: none;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
                background: rgba(95, 89, 89, 0.267);
            }
            
            .input-field {
                max-width: 100%;
            }
            
            .btn-large {
                width: 100%;
                padding: 0 2rem;
                height: 54px;
                line-height: 54px;
                font-size: 1.2rem;
                margin-top: 1rem;
            }
            
            h2.header {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            #res h5 {
                font-size: 1.2rem;
                color: #26a69a;
            }
            
            #index-banner {
                padding: 60px 20px;
            }
        }