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


}
body{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #333;
    
}
.header{
    background-color: #FFE600;
    padding: 10px 0;
    

}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.logo{
    height: 84px;
    margin-bottom: 10px;
}
.search-container{
    display: flex;
    align-items: center;
    gap: 5px;

}
.search-input{
    flex: 1;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    justify-content: left;
    height: 34px;
    text-align: center;

}
.search-btn{
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 20px;
    height: 34px;
}
.search-btn:hover{
    background-color: aliceblue;
}
.section{
    padding: 30 0;
}
.main{
    padding: 30px 0;
}
.section-titlle{
    font-size: 24px;
    margin-bottom: 20px;
}
.products-grid{
    display: grid;
}
.hero{
    background-image:url(./img/D_NQ_867839-MLA98852840433_112025-OO.webp);
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: #f0f0f0;
    text-align: center;
    padding-bottom: 50px;
}
.hero h1{
    font-size: 48px;
    margin-bottom: 10px;
    color: #f0f0f0;
}
.hero p{
    font-size: 24px;
}

.footer-pro {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 20px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b5b5b5;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #b5b5b5;
}

.footer-col ul li a {
    text-decoration: none;
    color: #b5b5b5;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

/* Linha final */
.copyright {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        min-width: 100%;
    }
}



.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    color: #333; /* Garante que o texto dentro do card seja preto */
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    height: 80px; /* Altura fixa para evitar desalinhamento */
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.product-discount {
    font-size: 14px;
    color: #00a650;
    font-weight: bold;
}

