body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

nav {
    background-color: #d17a22;
    text-align: center;
    padding: 12px;
}

nav a {
    color: white;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #8b5a2b;
    color: white;
    text-align: center;
    padding: 50px 0;
    background-image: url('https://images.unsplash.com/photo-1608198093002-debb3b6fbb2d'); /* imagen de trigo */
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
}

section {
    padding: 60px 12%;
}

section h2 {
    color: #8b5a2b;
    margin-bottom: 20px;
    text-align: center;
}

.light {
    background-color: #f9f9f9;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background-color: white;
    padding: 25px;
    border-left: 5px solid #d17a22;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.product-list {
    list-style: square;
    font-size: 18px;
    padding-left: 20px;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

footer {
    background-color: #8b5a2b;
    color: white;
    text-align: center;
    padding: 20px;
}
