:root {
    --primary-color: #c41e3a;
    --secondary-color: #006847;
    --gold-color: #ffd700;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), #a01729);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold-color) !important;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1506368249639-73a05d6f6488?w=1600') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-top: 20px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), #a01729);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-weight: bold;
    color: var(--primary-color);
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.product-card img {
    height: 250px;
    object-fit: cover;
}

.recipe-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.recipe-card:hover {
    transform: scale(1.02);
}

.recipe-card img {
    height: 300px;
    object-fit: cover;
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px 0 20px;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #a01729;
    transform: scale(1.05);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Estilos para página de produtos */
.list-group-item-action {
    cursor: pointer;
    transition: all 0.3s;
}

.list-group-item-action:hover {
    background-color: #f8f9fa;
    padding-left: 1.5rem;
}

.list-group-item-action.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#search-input {
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}