*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-image: url("https://loremflickr.com/1600/900/nature,landscape");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;

    display: flex;
    align-items: center;
    justify-content: center;
}

.caixa-maior{
    background-color: rgba(0, 0, 0, 0.9);
    width: 500px;
    padding: 20px;
    border-radius: 20px;
}


.topo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.input-cidade {
    border:none;
    outline: none;
    border-radius: 20px;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    background-color: #7c7c7c2b;
    flex: 1; /* ocupa o espaço disponível */
    width: auto; /* remove o calc */
}

.botao {
    padding: 10px;
    border: none;
    background-color: #7c7c7c2b;
    border-radius: 50%;
    margin-left: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.4s;
}

.botao:hover {
    transform: scale(1.2);
}

.img-botao {
    width: 18px;
    height: 18px;
    position: relative;
    top: -2px;
}


.cidade {
    font-size: 28px;
    color: #fff;
}

.temp{
    font-size: 30px;
    color: #fff;
    margin-top: 10px;
    font-weight: bold;
}

.umidade{
    color: #fff;

}
.botao-ia:active{
    transform: scale(0.98);
    opacity: 0.8;
}

.botao-ia{
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    color: #fff;
    background-color: rgba(14, 121, 252, 0.8);
    border: none;
    cursor: pointer;
}

.resposta-ia{
    color: #fff;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.caixa-media{
    margin-top: 30px;
}