* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

header {
    background: #1B1F62;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

input[type="text"] {
    padding: 5px;
    margin-left: 20px;
}

main {
    padding: 20px;
}

.banner {
    background: #FF9800;
    color: white;
    padding: 20px;
    text-align: center;
}

.produtos-destaque {
    margin-top: 20px;
}

.grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.produto {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}
#img{
    width: 263px;
    height: 263;
}
#img1{
    height: 258px;
}

footer {
    background: #1B1F62;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsividade */
@media (max-width: 550px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 5px 0;
    }
}

@media (min-width: 550px) and (max-width: 1100px) {
    .grid-produtos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .grid-produtos {
        grid-template-columns: repeat(3, 1fr);
    }
}
