* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url('https://cdnb.artstation.com/p/assets/images/images/078/793/495/original/karina-formanova-plain.gif?1723094208');
    background-size: cover;
    background-position: center;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: #FFF;
    margin: 20px 0;
    font-size: 32px;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.busca {
    display: flex;
    width: 320px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.busca #searchInput {
    flex: 1;
    padding: 12px;
    outline: none;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.busca #searchInput::placeholder {
    color: rgba(255,255,255,0.7);
}

.busca button {
    padding: 12px 16px;
    font-size: 15px;
    border: none;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #FFF;
    border-radius: 8px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.busca button:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    transform: scale(1.05);
}

.resultado {
    width: 320px;
    display: none;
    margin-top: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.titulo {
    width: 100%;
    color: #FFF;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.info {
    display: flex;
    width: 100%;
    padding: 15px;
}

.info .temp, 
.info .vento {
    flex: 1;
    text-align: center;
}

.tempTitulo,
.ventoTitulo {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 5px;
}

.tempInfo,
.ventoInfo {
    color: #FFF;
    font-size: 32px;
    font-weight: bold;
    
}

.tempInfo sup {
    font-size: 15px;
    font-weight: normal;
}

.ventoInfo span {
    font-size: 15px;
    font-weight: normal;
}

.ventoArea {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    margin: 15px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ventoPonto {
    width: 20px;
    height: 2px;
    background-color: #00f0ff;
    transform-origin: left;
    box-shadow: 0 0 5px #00f0ff;
}

.aviso {
    color: #FFF;
    padding-top: 20px;
    font-style: italic;
}

footer {
    margin-top: 20px;
    color: #FFF;
    font-size: 13px;
    opacity: 0.8;
}
