@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;700&display=swap');

body {
    font-family: 'Chakra Petch', sans-serif;
    background: linear-gradient(135deg, #0e0b2c, #302b63, #24243e);
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    padding: 20px 0;
    background: rgba(31, 31, 31, 0.9);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffcc00;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-box input {
    width: 60%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: #e0e0e0;
}

.search-box button {
    background-color: #ffcc00;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: #121212;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background-color: #e6b800;
}

main {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.resultados-pesquisa {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.item-resultado {
    background: rgba(31, 31, 31, 0.85);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: center;
}

.item-resultado img {
    width: 100%;
    border-radius: 5px;
}

.item-resultado h2 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.item-resultado a {
    text-decoration: none;
    color: #ffcc00;
    font-weight: bold;
}

.item-resultado a:hover {
    text-decoration: underline;
}

footer {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: rgba(3, 1, 26, 0.904);
    position: fixed;
    bottom: 0;
    left: 0;
    color: #e0e0e0;
}
