/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    color: #333;
    padding: 30px;
    animation: fadeIn 1.2s ease;
}

/* Título */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Formulário de busca */
.search-form {
    margin-bottom: 30px;
}

.search-form input {
    padding: 10px;
    width: 250px;
    border: 2px solid #2980b9;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px #3498db;
}

.search-form button {
    padding: 10px 20px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background-color: #1f6391;
}

/* Produtos */
.produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.produto {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: popIn 0.5s ease forwards;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.produto h2 {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.produto p {
    font-weight: bold;
    color: #27ae60;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
