*{
    margin:0;
    padding:0;
    
    font-family: Arial, sans-Serif;;
}

body{
    background-color: #a68db4;
}

/* ===== TOPO ===== */
header{
    background: #613774;;
    border-bottom: 1px solid #ddd;
}

.topo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;

}

.logo{
    font-size: 24px;
    font-weight: bold;
}

.img-logo{
    border-radius: 50%;
}


.busca{
    flex:1;
    text-align: center;
}

.busca input{
    width: 60%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.icones{
    display:flex;
    gap: 20px;
    font-size:20px;
    background: #fff;
    border-radius: 5px; ;
    padding: 8px 12px;
}

.icones a{
    color: #333;
    text-decoration: none;  
}

/* ===== MENU ===== */

nav{
    background: #222;
}


nav ul{
    list-style: none;
    display: flex;
    justify-content: center;

}

nav ul li a {
    color:#fff;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
}

nav ul li a:hover{
    background: #444;
}


/* ===== BANNER ===== */
.banner{
    background: #ccc;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #333;
    margin: 20px;
}

/* ===== PRODUTOS ===== */
.produtos{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}


.produto{
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.produto img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 10px;
}

.produto h3{
    font-size: 16px;
    margin-bottom: 5px;
}

.produto p{
    font-size: 18px;
    font-weight: bold;
    color: #2a7d2e;
    margin-bottom: 10px;
}

.produto button{
    padding: 10px 15px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    
}

.produto button:hover{
    background: #444;
}

/* ====== BOTÃO MAIS PRODUTOS ====== */
.mais-produtos{
    text-align: center;
    margin: 30px 0;
}

.mais-produtos button{
    padding: 15px 30px;
    font-size: 16px;
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.mais-produtos button:hover{
    background: #444;
}


/*=====FOOTER=====*/

footer{
    background:#111;
    color:#fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}


/* ===== RESPONSIVO ===== */
@media (max-width: 900px){
    .produtos{
        grid-template-columns: repeat(2, 1fr);
    }

    .busca input{
        width: 90%;
    }

}


@media (max-width: 500px){

    .topo{
        flex-direction: column;
        gap: 10px;
    }

    .produtos{
        grid-template-columns: 1fr;
    }


}

