/* === CARDÁPIO DIGITAL === */
.delivery-cardapio-section {
    padding: 80px 0;
    background: white;
}

.cardapio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cardapio-header {
    text-align: center;
    margin-bottom: 60px;
}

.cardapio-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.cardapio-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* === GRID DE FUNCIONALIDADES === */
.cardapio-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.cardapio-feature {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cardapio-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.cardapio-feature h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.cardapio-feature p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* === DEMOS DAS FUNCIONALIDADES === */
.feature-demo {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.demo-link {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.media-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.media-item {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category {
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.adicional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.price {
    font-weight: 600;
    color: #10b981;
}

.promo-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}

.taxa-info {
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* === DEMO DO CARDÁPIO === */
.cardapio-demo {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.cardapio-demo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.demo-interface {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.demo-header {
    background: #f8fafc;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.demo-logo {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.demo-info {
    text-align: left;
}

.demo-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.demo-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.demo-menu {
    padding: 20px;
}

.demo-category h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: left;
}

.demo-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-product {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
}

.product-image {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex: 1;
    text-align: left;
}

.product-info h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
    .cardapio-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cardapio-title {
        font-size: 2rem;
    }
    
    .cardapio-subtitle {
        font-size: 1rem;
    }
    
    .cardapio-demo {
        padding: 20px;
    }
    
    .demo-interface {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .delivery-cardapio-section {
        padding: 60px 0;
    }
    
    .cardapio-container {
        padding: 0 15px;
    }
    
    .cardapio-feature {
        padding: 20px;
    }
    
    .demo-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .demo-info {
        text-align: center;
    }
}
