body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px 0;
}

main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

h1, h2 {
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.product-card p {
    margin-top: 10px;
    font-weight: 600;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 15px;
    background: #4CAF50;
    color: white;
    margin-top: 40px;
}

.custom-header {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/lucasenathalia.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.custom-header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.0rem;
    transform: translateY(30px);
}