body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #2d0b5a 0%, #6a4c93 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    position: relative;
}

/* Efeito de Estrelas Simples */
.stars {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 400px;
    z-index: 1;
    text-align: center;
}

input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
}

button {
    width: 95%;
    padding: 12px;
    background-color: #9d50bb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background-color: #6e48aa;
    transform: scale(1.02);
}

#resultado {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
    font-size: 0.9rem;
}

.item-cep {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
}

/* Adicione isso ao seu style.css anterior */
.row {
    display: flex;
    gap: 10px;
    justify-content: center;