    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }

    body {
        height: 100vh;
        background: radial-gradient(circle at bottom, #ffb347, #f28c00);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .container {
        max-width: 1200px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
        padding: 20px;
    }

    /* PERSONAGEM */
    .personagem img {
        max-height: 520px;
        width: auto;
    }

    /* ÁREA DIREITA */
    .conteudo {
        color: #fff;
        max-width: 420px;
    }

    .conteudo h2 {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }

    .busca {
        display: flex;
        align-items: center;
        background: rgba(255,255,255,0.15);
        border-radius: 40px;
        padding: 12px 12px;
        margin-bottom: 20px;
		box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
    }

    .busca input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        color: #fff;
        font-size: 15px;
    }

    .busca input::placeholder {
        color: rgba(255,255,255,0.8);
    }

    .botao {
        display: flex;
        justify-content: center;
    }

    .botao button {
        background: #111;
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 14px 30px;
        font-size: 14px;
        cursor: pointer;
        transition: 0.3s;
    }

    .botao button:hover {
        background: #000;
    }

    /* RESPONSIVO */
    @media (max-width: 900px) {
        .container {
            flex-direction: column;
            gap: 40px;
        }

        .personagem img {
            max-height: 300px;
        }

        .conteudo {
            text-align: center;
        }
    }
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: nowrap; /* garante que não quebre linha */
}

.logos img {
    max-height: 110px;
    width: auto;
}
@media (max-width: 600px) {
    .logos img {
        max-height: 80px; /* diminui no celular */
    }
}
    input {
        width: 100%;
        padding: 16px 22px;
        border-radius: 30px;
        border: none;
        outline: none;
        font-size: 15px;
    }

    /* POPUP */
    .popup {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .popup-conteudo {
        background: #fff;
        padding: 30px;
        border-radius: 18px;
        max-width: 420px;
        text-align: center;
        box-shadow: 0 25px 50px rgba(0,0,0,0.4);
		margin:0 15px;
    }

    .popup-conteudo button {
        margin-top: 20px;
        background: #f28c00;
        color: #fff;
        border: none;
        padding: 12px 30px;
        border-radius: 30px;
        cursor: pointer;
    }
/* ===== MELHORIA VISUAL DO CAMPO DE CIDADE ===== */

/* container do input */
.container input#cidadeInput {
    background: rgba(255,255,255,0.95);
    color: #333;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    transition: all 0.25s ease;
}

/* placeholder */
.container input#cidadeInput::placeholder {
    color: #666;
}

/* foco no campo */
.container input#cidadeInput:focus {
    box-shadow:
        0 0 0 3px rgba(255,193,7,0.9),
        0 18px 40px rgba(0,0,0,0.45);
}

/* cria “base amarela” atrás do campo */
.container:has(input#cidadeInput) {
    background: rgba(255,193,7,0.65);
    padding: 14px;
    border-radius: 45px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
	margin:10px;
}
.lista-cidades {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 193, 7, 0.95);
    border-radius: 18px;
    margin-top: 6px;
    display: none;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    overflow: auto; /* remove QUALQUER scroll */
	text-align:left;
}

.lista-cidades div {
    padding: 5px 18px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.lista-cidades div:hover {
    background: rgba(255,255,255,0.2);
}

/* scroll elegante */
.lista-cidades::-webkit-scrollbar {
    width: 6px;
}
.lista-cidades::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
}
.lista-cidades {
    max-height: 120px; /* 4 linhas */
    box-sizing: border-box;
    padding: 10px 0;
}
.busca {
    cursor: pointer;
}

.busca input {
    cursor: pointer;
}